:root {
  --tp-blue: #0878b9;
  --tp-navy: #082f49;
  --tp-orange: #f15a24;
  --tp-ink: #152a36;
  --tp-muted: #6b7d86;
  --tp-paper: #f4f8fa;
  --tp-line: #dfe9ed;
  --tp-white: #fff;
  --tp-soft: #eaf6fb;
}
.tp-home,
.tp-home * {
  box-sizing: border-box;
}
.tp-home {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  color: var(--tp-ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}
.tp-home h1,
.tp-home h2,
.tp-home h3,
.tp-home h4,
.tp-home p {
  margin-top: 0;
}
.tp-home a {
  text-decoration: none;
}
.tp-home svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tp-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.tp-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--tp-blue);
  margin-bottom: 14px;
}
.tp-section {
  padding: 100px 0;
}
.tp-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 42px;
}
.tp-heading h2,
.tp-centered h2 {
  font:
    600 clamp(36px, 4.3vw, 58px)/1.02 "Newsreader",
    Georgia,
    serif;
  letter-spacing: -0.035em;
  margin: 0;
}
.tp-heading > p {
  max-width: 430px;
  color: var(--tp-muted);
  line-height: 1.65;
}
.tp-centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.tp-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 5px;
  font-weight: 750;
  transition: 0.2s;
}
.tp-btn-dark {
  background: var(--tp-navy);
  color: #fff;
}
.tp-btn-orange {
  background: var(--tp-orange);
  color: #fff;
}
.tp-btn:hover {
  transform: translateY(-2px);
}
.tp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tp-blue);
  font-weight: 750;
}
.tp-announcement {
  background: var(--tp-navy);
  color: #fff;
}
.tp-announcement .tp-container {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.tp-announcement span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tp-orange);
  box-shadow: 0 0 0 5px rgba(241, 90, 36, 0.18);
}
.tp-announcement a {
  color: #fff;
  font-weight: 700;
}
.tp-announcement svg {
  margin-left: auto;
}
.tp-hero {
  background: linear-gradient(135deg, #f5fbfd 0%, #fff 58%, #fff4ed 100%);
  padding: 80px 0 96px;
}
.tp-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 58px;
}
.tp-hero h1 {
  font:
    650 clamp(46px, 5.7vw, 76px)/0.98 "Newsreader",
    Georgia,
    serif;
  letter-spacing: -0.045em;
  margin-bottom: 25px;
}
.tp-hero-copy > p:not(.tp-kicker) {
  max-width: 670px;
  color: var(--tp-muted);
  font-size: 18px;
  line-height: 1.7;
}
.tp-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}
.tp-hero-visual {
  height: 480px;
  border-radius: 4px;
  position: relative;
  background:
    radial-gradient(circle at 25% 30%, #fff 0 7%, transparent 8%),
    radial-gradient(circle at 70% 68%, #fff 0 9%, transparent 10%),
    linear-gradient(145deg, #d8f1fb, #8ccbe8 54%, #fff0e8);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.tp-hero-visual:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 150px;
  border: 26px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transform: rotate(-24deg);
  left: -42px;
  top: 155px;
}
.tp-hero-visual i {
  position: absolute;
  border-radius: 50%;
  background: var(--tp-orange);
  box-shadow: 0 10px 25px rgba(8, 47, 73, 0.15);
}
.tp-hero-visual i:nth-child(1) {
  width: 44px;
  height: 44px;
  top: 84px;
  left: 90px;
}
.tp-hero-visual i:nth-child(2) {
  width: 24px;
  height: 24px;
  top: 120px;
  right: 95px;
}
.tp-hero-visual i:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 72px;
  left: 44%;
}
.tp-hero-visual > div {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px 22px;
  display: grid;
  box-shadow: 0 15px 40px rgba(8, 47, 73, 0.12);
}
.tp-hero-visual strong {
  font-size: 25px;
  color: var(--tp-blue);
}
.tp-hero-visual span {
  font-size: 12px;
  color: var(--tp-muted);
}
.tp-hero-visual.has-image:before,
.tp-hero-visual.has-image > i {
  display: none;
}
.tp-shortcuts {
  padding-top: 90px;
}
.tp-shortcut-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.tp-shortcut-grid > a {
  position: relative;
  min-height: 185px;
  background: var(--tp-paper);
  padding: 25px;
  color: var(--tp-ink);
  transition: 0.2s;
}
.tp-shortcut-grid > a:hover {
  background: var(--tp-blue);
  color: #fff;
  transform: translateY(-3px);
}
.tp-shortcut-grid > a > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--tp-blue);
}
.tp-shortcut-grid h3 {
  font-size: 19px;
  margin: 40px 0 0;
}
.tp-shortcut-grid > a > svg {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--tp-orange);
}
.tp-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--tp-line);
  margin-top: 50px;
  padding-top: 28px;
}
.tp-numbers span {
  font-size: 24px;
  font-weight: 800;
  color: var(--tp-blue);
  display: grid;
}
.tp-numbers small {
  font-size: 12px;
  font-weight: 500;
  color: var(--tp-muted);
}
.tp-welcome {
  background: var(--tp-paper);
}
.tp-welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.tp-photo-panel {
  height: 650px;
  background: linear-gradient(145deg, #b5e0f2, #e9f7fc);
  position: relative;
  overflow: hidden;
}
.tp-photo-panel small {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 10px 14px;
  color: var(--tp-blue);
  font-weight: 800;
}
.tp-medical-art {
  position: absolute;
  inset: 0;
}
.tp-medical-art:before,
.tp-medical-art:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 32px solid rgba(255, 255, 255, 0.65);
  width: 520px;
  height: 180px;
  transform: rotate(-35deg);
  left: -85px;
  top: 230px;
}
.tp-medical-art:after {
  transform: rotate(38deg);
  top: 160px;
  left: 50px;
}
.tp-medical-art span {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--tp-orange);
}
.tp-medical-art span:nth-child(1) {
  top: 85px;
  right: 80px;
}
.tp-medical-art span:nth-child(2) {
  bottom: 120px;
  left: 60px;
  width: 38px;
  height: 38px;
}
.tp-medical-art span:nth-child(3) {
  bottom: 65px;
  right: 100px;
  width: 52px;
  height: 52px;
  background: var(--tp-blue);
}
.tp-welcome h2 {
  font:
    600 clamp(34px, 4vw, 52px)/1.06 "Newsreader",
    Georgia,
    serif;
  letter-spacing: -0.03em;
}
.tp-welcome p:not(.tp-kicker):not(.tp-sign) {
  color: var(--tp-muted);
  line-height: 1.7;
}
.tp-sign {
  display: grid;
  margin-top: 25px;
}
.tp-sign span {
  font-size: 13px;
  color: var(--tp-muted);
}
.tp-mission {
  background: #fff;
}
.tp-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.tp-mission-grid article {
  background: var(--tp-paper);
  min-height: 320px;
  padding: 32px;
  border-top: 4px solid var(--tp-blue);
}
.tp-mission-grid article:nth-child(2) {
  border-color: #68b9a1;
}
.tp-mission-grid article:nth-child(3) {
  border-color: var(--tp-orange);
}
.tp-mission-grid b {
  color: var(--tp-blue);
}
.tp-mission-grid h3 {
  font:
    600 28px/1.08 "Newsreader",
    Georgia,
    serif;
  margin: 55px 0 18px;
}
.tp-mission-grid p {
  margin-top: 55px;
  color: var(--tp-muted);
  line-height: 1.65;
}
.tp-organization {
  background: var(--tp-paper);
}
.tp-org-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--tp-line);
}
.tp-org-grid a {
  position: relative;
  min-height: 135px;
  padding: 28px;
  background: #fff;
  color: var(--tp-ink);
  border-right: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
  transition: 0.2s;
}
.tp-org-grid a:nth-child(2n) {
  border-right: 0;
}
.tp-org-grid a:hover {
  background: var(--tp-blue);
  color: #fff;
}
.tp-org-grid b {
  font-size: 12px;
  color: var(--tp-orange);
}
.tp-org-grid h3 {
  font:
    600 25px/1.15 "Newsreader",
    Georgia,
    serif;
  margin: 30px 35px 0 0;
}
.tp-org-grid svg {
  position: absolute;
  right: 25px;
  top: 25px;
}
.tp-leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tp-leader-grid article {
  background: var(--tp-paper);
  padding: 25px;
  min-height: 260px;
}
.tp-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--tp-soft);
  color: var(--tp-blue);
  margin-bottom: 28px;
}
.tp-avatar svg {
  width: 32px;
  height: 32px;
}
.tp-leader-grid h3 {
  font:
    600 24px/1.1 "Newsreader",
    Georgia,
    serif;
  margin-bottom: 8px;
}
.tp-leader-grid p {
  min-height: 38px;
  color: var(--tp-muted);
  font-size: 12px;
}
.tp-leader-grid a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--tp-blue);
  font-weight: 750;
}
.tp-director {
  background: var(--tp-navy);
  color: #fff;
}
.tp-director .tp-kicker {
  color: #7bc9ee;
}
.tp-director-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: center;
}
.tp-director h2 {
  font:
    600 clamp(38px, 4.5vw, 58px)/1.03 "Newsreader",
    Georgia,
    serif;
}
.tp-director p {
  color: #cde0e9;
  line-height: 1.7;
}
.tp-hours {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px;
}
.tp-hours p {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 15px 0;
  margin: 0;
}
.tp-hours .tp-btn {
  margin-top: 22px;
}
.tp-news {
  background: #fff;
}
.tp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tp-news-grid > article {
  background: var(--tp-paper);
  overflow: hidden;
}
.tp-news-img {
  height: 220px;
  background: linear-gradient(145deg, var(--tp-blue), #72c1e5);
  display: grid;
  place-items: center;
  color: #fff;
  font: 700 40px Georgia;
}
.tp-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tp-news-body {
  padding: 25px;
}
.tp-news-body > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: var(--tp-muted);
}
.tp-news-body > div span {
  color: var(--tp-blue);
  font-weight: 800;
  text-transform: uppercase;
}
.tp-news-body h3 {
  font:
    600 25px/1.1 "Newsreader",
    Georgia,
    serif;
  margin: 18px 0 10px;
}
.tp-news-body h3 a {
  color: var(--tp-ink);
}
.tp-news-body p {
  color: var(--tp-muted);
  line-height: 1.55;
}
.tp-empty {
  background: var(--tp-paper);
  padding: 40px;
}
.tp-donate {
  background: #fff4ed;
}
.tp-donate-head {
  max-width: 820px;
  margin-bottom: 45px;
}
.tp-donate-head h2 {
  font:
    600 clamp(40px, 5vw, 64px)/1 "Newsreader",
    Georgia,
    serif;
}
.tp-donate-head > p:last-child {
  font-size: 18px;
  line-height: 1.7;
  color: var(--tp-muted);
}
.tp-donate-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}
.tp-donate-grid article {
  padding: 36px;
  background: #fff;
}
.tp-donate-grid h3 {
  font:
    600 30px "Newsreader",
    Georgia,
    serif;
}
.tp-donate-grid h4 {
  font-size: 19px;
}
.tp-donate-grid p,
.tp-donate-grid li {
  color: var(--tp-muted);
  line-height: 1.65;
}
.tp-donate-grid li::marker {
  color: var(--tp-orange);
}
.tp-account {
  background: var(--tp-navy) !important;
  color: #fff;
}
.tp-account p {
  color: #cde0e9;
}
.tp-account > strong {
  display: block;
  font-size: 28px;
  margin: 24px 0;
  color: #fff;
}
.tp-contact {
  background: var(--tp-paper);
}
.tp-contact .tp-centered .tp-btn {
  margin-top: 25px;
}
.tp-contact-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.tp-contact-grid article {
  padding: 28px;
  background: #fff;
}
.tp-contact-grid h3 {
  font:
    600 25px "Newsreader",
    Georgia,
    serif;
}
.tp-contact-grid p {
  color: var(--tp-muted);
  line-height: 1.7;
}
.tp-contact-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tp-blue);
  font-weight: 750;
}
@media (max-width: 960px) {
  .tp-hero-grid,
  .tp-welcome-grid,
  .tp-director-grid,
  .tp-donate-grid {
    grid-template-columns: 1fr;
  }
  .tp-hero-visual {
    height: 400px;
  }
  .tp-shortcut-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-shortcut-grid > a:last-child {
    grid-column: 1/-1;
  }
  .tp-mission-grid {
    grid-template-columns: 1fr;
  }
  .tp-leader-grid,
  .tp-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-director-grid {
    gap: 35px;
  }
  .tp-photo-panel {
    height: 500px;
  }
}
@media (max-width: 640px) {
  .tp-container {
    width: min(100% - 28px, 1180px);
  }
  .tp-section {
    padding: 70px 0;
  }
  .tp-announcement .tp-container {
    padding: 10px 0;
    font-size: 12px;
  }
  .tp-hero {
    padding: 58px 0 68px;
  }
  .tp-hero h1 {
    font-size: 43px;
  }
  .tp-hero-copy > p:not(.tp-kicker) {
    font-size: 16px;
  }
  .tp-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .tp-actions .tp-btn {
    width: 100%;
  }
  .tp-hero-visual {
    height: 330px;
  }
  .tp-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
  }
  .tp-heading h2,
  .tp-centered h2 {
    font-size: 38px;
  }
  .tp-shortcut-grid {
    grid-template-columns: 1fr;
  }
  .tp-shortcut-grid > a:last-child {
    grid-column: auto;
  }
  .tp-shortcut-grid > a {
    min-height: 120px;
  }
  .tp-shortcut-grid h3 {
    margin-top: 20px;
  }
  .tp-welcome-grid {
    gap: 35px;
  }
  .tp-photo-panel {
    height: 360px;
  }
  .tp-mission-grid article {
    min-height: 0;
  }
  .tp-mission-grid h3 {
    margin-top: 35px;
  }
  .tp-mission-grid p {
    margin-top: 35px;
  }
  .tp-org-grid,
  .tp-leader-grid,
  .tp-news-grid,
  .tp-contact-grid {
    grid-template-columns: 1fr;
  }
  .tp-org-grid a {
    border-right: 0;
  }
  .tp-leader-grid article {
    min-height: 220px;
  }
  .tp-news-img {
    height: 210px;
  }
  .tp-director h2 {
    font-size: 38px;
  }
  .tp-hours p {
    flex-direction: column;
    gap: 5px;
  }
  .tp-donate-grid article {
    padding: 26px;
  }
}
