:root {
  --blue: #8fcde2;
  --blue-deep: #2b8dac;
  --ink: #253039;
  --ink-soft: #5d6870;
  --paper: #fbfcfb;
  --mist: #edf7f9;
  --warm: #f4efe6;
  --line: rgba(37, 48, 57, 0.12);
  --shadow: 0 24px 80px rgba(37, 48, 57, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(237, 247, 249, 0.56), rgba(251, 252, 251, 0) 520px),
    var(--paper);
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 15px clamp(20px, 4vw, 64px);
  color: var(--ink);
  border-bottom: 1px solid rgba(37, 48, 57, 0.08);
  background: rgba(251, 252, 251, 0.9);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 252, 251, 0.96);
  box-shadow: 0 12px 40px rgba(37, 48, 57, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 236px;
  max-width: min(330px, 40vw);
  padding: 0;
  background: transparent;
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 650;
  transition: background 160ms ease;
}

.site-nav a:hover {
  background: rgba(143, 205, 226, 0.22);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  color: var(--ink);
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(237, 247, 249, 0.96) 0%, rgba(251, 252, 251, 0.94) 46%, rgba(244, 239, 230, 0.82) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(251, 252, 251, 0.78)),
    url("assets/ordination-hero.png") center 64% / cover no-repeat;
  opacity: 0.24;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.68fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 126px) 0 40px;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.eyebrow,
.section-kicker,
.package-label {
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 6.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  background: var(--blue);
}

.button.secondary {
  color: inherit;
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.38);
}

.hero-portrait {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 560px;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(37, 48, 57, 0.16);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(37, 48, 57, 0.12));
  pointer-events: none;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(54px, 8vw, 86px);
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero-panel div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(37, 48, 57, 0.14);
  border-bottom: 0;
}

.hero-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.metric {
  color: var(--blue-deep);
  font-weight: 850;
}

.hero-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 126px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro p,
.section-heading p,
.doctor-copy p,
.sport-copy p,
.contact-card p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.doctor-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 0.9fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.doctor-photo {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 8px;
  background: var(--mist);
  box-shadow: 0 22px 70px rgba(37, 48, 57, 0.11);
}

.doctor-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: inherit;
  pointer-events: none;
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
}

.doctor-copy {
  max-width: 620px;
}

.doctor-copy h2 {
  margin-bottom: 18px;
}

.doctor-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.doctor-highlights span {
  padding: 10px 13px;
  border: 1px solid rgba(43, 141, 172, 0.22);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(143, 205, 226, 0.18);
  font-size: 0.92rem;
  font-weight: 750;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.credential-grid div {
  padding: 18px;
  border: 1px solid rgba(43, 141, 172, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.credential-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.55;
}

.split-band,
.sport-band {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, var(--mist), #f8fbfb);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.feature-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.package-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.feature-card p,
.package-card li,
.package-intro,
.package-note,
.infusion-note {
  color: var(--ink-soft);
  line-height: 1.62;
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--blue-deep);
  background: rgba(143, 205, 226, 0.24);
}

.icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.infusion-section {
  background:
    linear-gradient(180deg, rgba(251, 252, 251, 0.7), rgba(237, 247, 249, 0.72)),
    var(--paper);
}

.infusion-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.symptom-panel,
.infusion-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 48px rgba(37, 48, 57, 0.06);
}

.symptom-panel h3,
.infusion-panel h3 {
  margin-bottom: 22px;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.symptom-grid article {
  padding: 18px;
  border-radius: 8px;
  background: rgba(237, 247, 249, 0.82);
}

.symptom-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 850;
}

.symptom-grid p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.infusion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.infusion-tags span {
  padding: 10px 12px;
  border: 1px solid rgba(43, 141, 172, 0.2);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(143, 205, 226, 0.18);
  font-size: 0.91rem;
  font-weight: 750;
}

.infusion-note {
  margin: 24px 0 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.packages {
  background:
    linear-gradient(120deg, rgba(244, 239, 230, 0.78), rgba(237, 247, 249, 0.66)),
    var(--paper);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
  min-height: 520px;
  background: white;
  box-shadow: 0 12px 44px rgba(37, 48, 57, 0.06);
}

.package-intro {
  min-height: 78px;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.package-card.featured {
  border-color: rgba(43, 141, 172, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 28px;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.package-note {
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 750;
}

.sport-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: center;
  background: var(--ink);
  color: white;
}

.sport-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.sport-steps {
  display: grid;
  gap: 12px;
}

.sport-steps div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.sport-steps span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--blue);
  font-weight: 850;
}

.faq-section {
  max-width: 980px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 44px rgba(37, 48, 57, 0.06);
}

.faq-list details[open] {
  border-color: rgba(43, 141, 172, 0.28);
  background: #fff;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 20px 58px 20px 22px;
  color: var(--ink);
  font-weight: 850;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: end;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background: var(--warm);
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-card p {
  max-width: 720px;
  margin-bottom: 0;
}

.contact .button.secondary {
  color: var(--ink);
  background: transparent;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.contact-details div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-details strong,
.contact-details span {
  display: block;
}

.contact-details span {
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-details a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(43, 141, 172, 0.34);
  text-underline-offset: 3px;
}

.legal-nav {
  display: flex;
}

.legal-page {
  padding: clamp(42px, 8vw, 92px) 20px clamp(56px, 8vw, 110px);
}

.legal-hero,
.legal-content {
  width: min(920px, 100%);
  margin: 0 auto;
}

.legal-hero {
  padding: clamp(34px, 6vw, 64px) 0 28px;
}

.legal-hero h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 8vw, 5.4rem);
}

.legal-hero p:last-child {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.7;
}

.legal-content {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 58px rgba(37, 48, 57, 0.07);
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-content a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
}

.site-footer a {
  color: white;
  font-weight: 700;
}

@media (max-width: 920px) {
  .site-header {
    min-height: 76px;
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(251, 252, 251, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-radius: 6px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: auto;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .hero-inner,
  .intro-grid,
  .doctor-section,
  .infusion-layout,
  .sport-band,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: center;
    padding-top: 58px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .package-grid,
  .contact-details,
  .credential-grid,
  .symptom-grid {
    grid-template-columns: 1fr 1fr;
  }

  .package-card.featured {
    transform: none;
  }

  .package-intro {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
    max-width: 215px;
  }

  .brand-logo {
    max-height: 42px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    width: calc(100% - 32px);
    max-width: 1180px;
    padding-top: 44px;
    padding-bottom: 22px;
  }

  h1 {
    font-size: clamp(2.75rem, 12vw, 3.4rem);
    line-height: 1;
  }

  .lead {
    max-width: 100%;
    font-size: 1.02rem;
  }

  .hero-portrait {
    min-height: 420px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
  }

  .feature-grid,
  .package-grid,
  .contact-details,
  .credential-grid,
  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .package-card {
    min-height: auto;
  }

  .doctor-photo,
  .doctor-photo img {
    min-height: 430px;
  }

  .site-footer {
    flex-direction: column;
  }
}
.site-notice[hidden] {
  display: none;
}

.site-notice {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.site-notice__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 48, 57, 0.42);
  backdrop-filter: blur(6px);
}

.site-notice__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(26px, 5vw, 42px);
  border-radius: 8px;
  background: #fbfcfb;
  box-shadow: 0 24px 80px rgba(37, 48, 57, 0.22);
}

.site-notice__dialog h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.site-notice__dialog p:not(.section-kicker) {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.site-notice__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: white;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.site-notice__dialog .button {
  margin-top: 22px;
}
.site-notice__text p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.site-notice__text p:last-child {
  margin-bottom: 0;
}

.site-notice__text strong {
  color: var(--ink);
  font-weight: 850;
}
