:root {
  --navy: #05173d;
  --blue: #004d8d;
  --blue-2: #1d4990;
  --cyan: #0396c2;
  --peach: #ffbc7d;
  --ink: #2b323d;
  --mute: #3f464e;
  --line: #d5dde6;
  --paper: #ffffff;
  --mist: #eef3f8;
  --max: 1120px;
  --r: 16px;
  --bar: linear-gradient(180deg, #2a6aa8 0%, #164a82 42%, #0d3566 100%);
  --bar-shadow:
    inset 0 1px 0 rgba(255,255,255,0.38),
    inset 0 -3px 0 rgba(5,20,45,0.35),
    0 8px 18px rgba(5,23,61,0.22);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  font-family: Inter, "Helvetica Neue", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; }
.prose a:hover,
.cond-copy a:hover { color: var(--blue); }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--max), calc(100% - 2.4rem)); margin: 0 auto; }

.topbar {
  background: var(--bar);
  color: #fff;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 16px;
  font-weight: 500;
  box-shadow: var(--bar-shadow);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 40px;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 500; }
.topbar a.topbar-phone:hover {
  color: var(--peach);
  opacity: 1;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex: none;
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.topbar-phone svg {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}
.topbar a.topbar-login {
  font-family: Roboto, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #05173d;
  background-image: linear-gradient(180deg, #ffffff 0%, #e8edf2 48%, #c5ced8 100%);
  border: 0;
  border-radius: 4px;
  padding: 0.4rem 1.05rem;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
  line-height: 1.2;
  opacity: 1;
}
.topbar a.topbar-login:hover {
  color: #05173d;
  opacity: 1;
  filter: brightness(1.04);
}

header.site {
  background: #fff;
  position: relative;
  z-index: 80;
}
.brand-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5.1rem 1.2rem 4.9rem;
  position: relative;
}
.mark img { height: 158px; width: auto; image-rendering: auto; }
.menubar {
  position: relative;
  z-index: 80;
  overflow: visible;
  background: var(--bar);
  box-shadow: var(--bar-shadow);
}
.nav-links {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  flex-wrap: nowrap;
  gap: 0;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.nav-links > li { position: relative; flex: 1 1 0; }
.nav-links > li.has-drop:hover { z-index: 90; }
.nav-links > li + li {
  border-left: 1px solid rgba(255,255,255,0.4);
}
.nav-links > li > a {
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 52px;
  padding: 0.85rem 0.6rem;
  text-shadow: 0 1px 0 rgba(0,0,0,0.28);
}
.nav-links > li > a:hover { color: #fff; opacity: 0.8; }
.nav-links > li > a[aria-current="page"] { font-weight: 500; }
.drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 240px;
  background: linear-gradient(180deg, #2a6aa8 0%, #164a82 48%, #0d3566 100%);
  border: 0;
  border-radius: 0 0 10px 10px;
  padding: 0.15rem 0 0.35rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 0 -2px 0 rgba(5,20,45,0.3),
    0 16px 28px rgba(5,23,61,0.32);
  z-index: 90;
}
.nav-links > li.has-drop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}
.nav-links > li.has-drop:hover > .drop,
.nav-links > li.has-drop:focus-within > .drop { display: block; }
.drop a {
  display: block;
  padding: 0.7rem 0.95rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.drop a:last-child { border-bottom: 0; }
.drop a:hover {
  background: rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
}
.btn.peach, .btn.book-nav { background: var(--peach); color: var(--navy); }
.btn.peach:hover, .btn.book-nav:hover { filter: brightness(1.05); }
.btn.navy { background: var(--navy); color: #fff; }
.btn.navy:hover { background: var(--blue); }
.btn.outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--navy);
}
.btn.outline:hover { background: var(--mist); }
.btn.book-hero {
  font-family: Roboto, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: #fff;
  background-image: linear-gradient(180deg, #ffffffab 0%, #000000d9 100%);
  border: 0;
  border-radius: 4px;
  padding: 0.65rem 1.3rem;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}
.btn.book-hero.book-blue {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(5, 23, 61, 0.42) 100%),
    linear-gradient(180deg, #2a6aa8 0%, #05173d 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 28px rgba(13, 53, 102, 0.38);
}
.btn.book-hero.book-blue:hover {
  filter: brightness(1.08);
}

.hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: 5.5rem 0 6.2rem;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: #1d4990;
}
.hero-media {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}
.hero-media video::-webkit-media-controls { display: none !important; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29,73,144,0.42) 0%, rgba(68,91,121,0.42) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 4rem));
  margin: 0 auto;
}
.socials-bar {
  background: #fff;
  padding: 5.6rem 1rem 5.2rem;
}
.socials {
  display: flex;
  justify-content: center;
  gap: clamp(1.6rem, 6vw, 5.4rem);
}
.socials a {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
.socials a svg { width: 28px; height: 28px; display: block; }
.prose .socials {
  justify-content: flex-start;
  gap: 0.7rem;
  margin: 1.15rem 0 0;
}
.prose .socials a {
  width: 40px;
  height: 40px;
}
.prose .socials a svg {
  width: 18px;
  height: 18px;
}
.si-fb { background: #1877f2; }
.socials-bar .si-fb svg {
  width: 38px;
  height: 38px;
}
.si-x { background: #000; }
.si-map { background: #ea4335; }
.si-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.si-g { background: #fff; box-shadow: 0 0 0 1px #dadce0; }
.si-g svg { width: 30px; height: 30px; }
.si-popl {
  background: #d8d8d8;
  border-radius: 50%;
  overflow: hidden;
}
.si-popl img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
}
.socials a:hover { transform: translateY(-2px); filter: brightness(1.06); }
.doctor-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 0.9rem;
}
.doctor-copy .doctor-actions .btn { margin-top: 0; }
.socials-inline {
  justify-content: flex-start;
  gap: 0.4rem;
}
.socials-inline a {
  width: 42px;
  height: 42px;
}
.socials-inline a svg { width: 22px; height: 22px; }
.socials-inline .si-g svg { width: 22px; height: 22px; }
.socials-inline .si-popl { border-radius: 50%; }
.process-photos {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2.2rem;
  margin-top: 2.4rem;
  align-items: center;
}
.process-photos img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #e8eef4;
}
.process-photos img.process-select {
  aspect-ratio: 1.9 / 1;
  min-height: 300px;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
  box-shadow:
    0 18px 36px rgba(13, 53, 102, 0.16),
    0 4px 10px rgba(13, 53, 102, 0.1);
  -webkit-mask-image: radial-gradient(ellipse 78% 72% at 50% 50%, #000 62%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 72% at 50% 50%, #000 62%, transparent 100%);
}
.tile-wide { grid-column: auto; }
.hero h1 {
  font-family: Biryani, Impact, sans-serif;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 0 1.8rem;
}
.hero h1 span { display: block; }

.section { padding: 4.2rem 0; background: #fff; }
.section.mist { background: #f4f7fa; }
#symptoms { background: #eef3f8; }
#symptoms .wrap { width: min(1280px, calc(100% - 2.4rem)); }
.rank-title {
  font-family: Biryani, Inter, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #05173d;
  margin: 0.2rem 0 1.2rem;
}
.process-sec { background: #fff; padding-top: 2.4rem; }
.section.navy { background: var(--navy); color: #fff; }
.kicker {
  color: #4a5d68;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
}
h2 {
  font-family: Lato, Inter, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.8rem;
  color: #3c454c;
}
.section.navy .kicker { color: var(--peach); }

.reviews-sec { background: #fff; padding-top: 1.2rem; }
.reviews {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.2rem;
  align-items: start;
}
.review-score { text-align: center; }
.score {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 0.25rem;
}
.review-score .stars { font-size: 1.15rem; margin: 0.15rem 0 0.35rem; }
.g-word { color: #4285f4; font-weight: 700; font-size: 1.15rem; margin: 0.35rem 0 0; }
.g-word a { color: inherit; text-decoration: none; }
.g-word a:hover { text-decoration: underline; }
.quote-row {
  overflow: hidden;
  min-width: 0;
}
.quote-track {
  display: flex;
  gap: 0.9rem;
  will-change: transform;
}
.quote-track .card {
  flex: 0 0 calc((100% - 1.8rem) / 3);
  min-width: 0;
}
a.card.ti {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.card.ti:hover {
  border-color: #4285f4;
}
.card.ti { padding: 0.85rem 1rem; }
.ti-top { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.45rem; }
.av {
  width: 34px; height: 34px; border-radius: 50%;
  background: #3e7eb2; color: #fff;
  display: grid; place-items: center; font-weight: 700; flex: none;
}
.card.ti .g { margin-left: auto; color: #4285f4; font-weight: 800; }
.stars { color: #fbbc04; letter-spacing: 0.08em; font-size: 0.95rem; }
.excerpt { font-size: 0.86rem; color: #444; margin: 0.45rem 0 0.25rem; }
.more { font-size: 0.78rem; color: #4a5158; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1rem 1.05rem;
}
.card p { margin: 0 0 0.7rem; font-size: 0.92rem; }
.card .who { font-size: 0.8rem; color: var(--mute); font-weight: 600; }

.community-sec {
  background: linear-gradient(180deg, #ffffff 0%, #7aa3c9 38%, #004d8d 62%, #e8f1f8 82%, #ffffff 100%);
  padding-bottom: 6.5rem;
}
.community-sec h2,
.community-sec .quote,
.community-sec .byline { color: #05173d; }
.community {
  display: grid;
  grid-template-columns: 1.28fr 0.88fr;
  gap: 2.6rem;
  align-items: center;
}
.community img.photo {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 0;
  background: none;
  box-shadow:
    0 18px 36px rgba(5,23,61,0.28),
    0 6px 12px rgba(5,23,61,0.16);
}
.community > div {
  text-align: center;
  background: radial-gradient(ellipse 86% 78% at 50% 48%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.62) 58%, rgba(255, 255, 255, 0) 78%);
  padding: 2.6rem 2.1rem 2.8rem;
  box-shadow: none;
}
.community h2 {
  font-size: 1.85rem;
  margin: 0 0 1rem;
  text-align: center;
}
.community .quote {
  color: #05173d;
  font-size: 1.02rem;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  margin: 0 auto 1.25rem;
  max-width: 38rem;
}
.community .btn { margin-inline: auto; }
.byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0 auto 1.25rem;
  text-align: left;
}
.byline img { height: 42px; width: auto; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.step {
  background: transparent;
  border-radius: 0;
  padding: 0.4rem 0.2rem 0;
  border: 0;
}
.num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: grid; place-items: center; font-weight: 800; margin-bottom: 0.7rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.4rem 1.5rem;
  margin-top: 2.2rem;
}
.tile {
  display: block;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  background: transparent;
  line-height: 0;
  border-radius: 14px;
  box-shadow:
    0 8px 18px rgba(5, 23, 61, 0.14),
    0 2px 4px rgba(5, 23, 61, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.tile img {
  width: 100%;
  height: auto;
  min-height: 260px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.3s ease;
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.32) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
  pointer-events: none;
}
.tile:hover {
  transform: translateY(-7px);
  box-shadow:
    0 18px 34px rgba(5, 23, 61, 0.24),
    0 6px 12px rgba(5, 23, 61, 0.12);
}
.tile:hover img {
  transform: scale(1.07);
  filter: saturate(1.1) contrast(1.04);
}
.tile:hover::after { transform: translateX(130%); }
.rank-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 4.4rem 1.5rem;
}
.rank-row .tile {
  width: auto;
  flex: none;
  align-self: center;
}
.rank-row .tile img {
  min-height: 0;
  aspect-ratio: 3 / 2;
}
.rank-row .rank-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 1152;
  object-fit: contain;
  object-position: top center;
  background: transparent;
  pointer-events: none;
}
.hours { list-style: none; padding: 0; margin: 0.4rem 0 0; }
.hours li { margin: 0.2rem 0; }
.contact-map {
  margin: 1rem 0 1.15rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  min-height: 220px;
  background: var(--mist);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.18fr);
  gap: 2rem;
  align-items: stretch;
}
.contact-visit {
  padding: 2rem 1.8rem 1.7rem;
  display: flex;
  flex-direction: column;
}
.contact-visit .kicker { margin-bottom: 0.35rem; }
.contact-visit h2 {
  font-family: Biryani, Inter, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 0.95rem;
  line-height: 1.2;
}
.contact-visit .contact-addr {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  line-height: 1.5;
}
.contact-addr a {
  color: inherit;
  text-decoration: none;
}
.contact-addr a:hover { color: var(--blue); text-decoration: underline; }
.contact-visit .contact-phone {
  margin: 0 0 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.contact-phone a {
  color: var(--navy);
  text-decoration: none;
}
.contact-phone a:hover { color: var(--blue); }
.contact-visit .hours-g { margin-top: 0.15rem; }
.contact-visit .hours-g dl > div { margin: 0.22rem 0; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}
.contact-actions .btn { margin: 0; }
.contact-visit .btn.book-hero {
  align-self: flex-start;
  margin-top: 1.05rem;
}
.contact-visit .contact-hint {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--mute);
}
.contact-visit .socials {
  margin-top: auto;
  padding-top: 1.5rem;
}
.contact-grid .contact-map {
  margin: 0;
  aspect-ratio: auto;
  min-height: 420px;
  height: 100%;
}
.hours-g { margin-top: 0.85rem; }
.foot .hours-g { margin-top: 0; }
.hours-g strong { display: block; margin-bottom: 0.35rem; }
.hours-g dl { margin: 0; }
.hours-g dl > div {
  display: grid;
  grid-template-columns: 5.6rem 1fr;
  gap: 0.45rem;
  margin: 0.12rem 0;
  font-size: 0.92rem;
}
.hours-g dt { font-weight: 600; color: inherit; }
.hours-g dd { margin: 0; color: inherit; }
footer.site .hours-g dt { color: #fff; }
footer.site .hours-g dd { color: #f2f5f8; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}
.split img { border-radius: 18px; width: 100%; }
.prose p { margin: 0 0 0.9rem; }
.prose ul { margin: 0.3rem 0 1rem; padding-left: 1.15rem; }

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.two h3 { margin: 0 0 0.6rem; font-size: 1.05rem; }
.two ul { margin: 0; padding-left: 1.1rem; }

.cond-top .wrap,
.cond-mid .wrap,
.cond-mission .wrap {
  width: min(90vw, 1680px);
}
.cond-top { padding-top: 6.4rem; padding-bottom: 5rem; }
.cond-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4.4rem 7.2rem;
  align-items: center;
}
.cond-frame {
  margin: 0;
  position: relative;
  border-radius: 20px;
}
.cond-pan {
  padding: 10px;
  background: linear-gradient(180deg, #f4f8fb 0%, #d9e3ee 100%);
  box-shadow:
    0 20px 40px rgba(5, 23, 61, 0.18),
    0 6px 14px rgba(5, 23, 61, 0.08);
}
.cond-pan-window {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 627 / 671;
}
.cond-frame-office .cond-pan-window {
  aspect-ratio: 1 / 1;
}
.cond-pan-window::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(5, 23, 61, 0.08);
}
.cond-photo,
.cond-office-img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}
.cond-photo { object-position: center 40%; }
.cond-office-img { object-position: 60% 40%; }
.cond-copy h1 {
  font-family: Inter, "Helvetica Neue", sans-serif;
  font-size: clamp(2.7rem, 4.6vw, 4.6rem);
  font-weight: 400;
  line-height: 1.08;
  color: #05173d;
  letter-spacing: -0.03em;
  margin: 0 0 1.7rem;
}
.cond-copy p {
  color: #3d444c;
  font-family: Inter, "Helvetica Neue", sans-serif;
  font-size: clamp(1.18rem, 1.35vw, 1.38rem);
  font-weight: 400;
  line-height: 1.82;
  margin: 0 0 1.4rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.cond-copy p:last-child { margin-bottom: 0; }
.cond-mid { padding-top: 5.2rem; padding-bottom: 5.6rem; }
.cond-mid-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 4.6rem;
}
.cond-mid-copy .kicker {
  color: #05173d;
  letter-spacing: 0.26em;
  font-size: 1.02rem;
  font-weight: 500;
}
.cond-mid-copy h2 {
  font-family: Inter, "Helvetica Neue", sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.15rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #111;
  margin: 1rem 0 1.4rem;
}
.cond-sub {
  color: #4a5158;
  font-size: 1.26rem;
  line-height: 1.72;
  letter-spacing: 0.01em;
  max-width: 34rem;
  margin: 0 auto;
}
.cond-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 2rem 2.6rem;
  align-items: start;
}
.cond-cols > div:not(.cond-book) {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cond-cols h3 {
  font-family: Inter, "Helvetica Neue", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #05173d;
  margin: 0 0 1.65rem;
  text-align: center;
  width: 100%;
}
.cond-cols ul {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 1.2em;
  list-style: disc;
  list-style-position: outside;
  text-align: left;
  color: #3a424a;
  font-size: 1.26rem;
  line-height: 2.1;
}
.cond-book {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0.2rem;
}
.cond-book .book-hero,
.btn.book-hero.mission-book {
  /* same as .btn.book-hero — kept so old class names still match */
}
.cond-mission { background: #fff; padding: 5rem 0 5.4rem; }
.cond-mission-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3.2rem 6.4rem;
  align-items: center;
}
.cond-mission-copy .kicker {
  color: #4a5158;
  letter-spacing: 0.26em;
  font-size: 1.02rem;
  font-weight: 500;
}
.cond-mission h2 {
  font-family: Inter, "Helvetica Neue", sans-serif;
  font-size: clamp(2.35rem, 4vw, 3.3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: #05173d;
  margin: 0.55rem 0 1.15rem;
}
.cond-mission-copy > p {
  color: #3d444c;
  font-size: 1.26rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
  max-width: 30rem;
  margin: 0 0 1.4rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid #e4e6e8;
}
.mission-points {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  color: #3a424a;
  font-size: 1.24rem;
  line-height: 2.25;
}
.mission-book {
  margin-top: 1.7rem;
}

.doctor-sec {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 4.6rem 0 5.2rem;
  background:
    radial-gradient(ellipse 58% 72% at 10% 60%, rgba(3, 150, 194, 0.12) 0%, transparent 64%),
    radial-gradient(ellipse 46% 56% at 92% 14%, rgba(29, 73, 144, 0.1) 0%, transparent 58%),
    radial-gradient(ellipse 40% 46% at 88% 90%, rgba(255, 188, 125, 0.14) 0%, transparent 62%),
    #f4f8fb;
}
.doctor-sec .wrap.doctor {
  width: min(1180px, calc(100% - 2.4rem));
}
.doctor {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: 2.8rem 3.8rem;
  align-items: center;
}
.doctor-visual {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  margin-inline: auto;
}
.doctor-visual .g {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.g-navy {
  width: 74%;
  height: 74%;
  left: -10%;
  bottom: -4%;
  z-index: 0;
  background: linear-gradient(155deg, #0396c2 0%, #004d8d 46%, #05173d 100%);
}
.g-blue {
  width: 42%;
  height: 42%;
  right: -8%;
  top: -2%;
  z-index: 1;
  background: radial-gradient(circle at 38% 32%, #d4e7f4 0%, #7aa3c9 58%, #1d4990 100%);
}
.g-ring {
  width: 88%;
  height: 88%;
  left: 4%;
  top: 4%;
  z-index: 2;
  background: transparent;
  border: 2px solid rgba(5, 23, 61, 0.12);
}
.g-ring2 {
  width: 36%;
  height: 36%;
  right: 2%;
  bottom: 8%;
  z-index: 2;
  background: transparent;
  border: 2px solid rgba(3, 150, 194, 0.35);
}
.g-cyan {
  width: 12%;
  height: 12%;
  left: 4%;
  top: 16%;
  z-index: 4;
  background: var(--cyan);
  box-shadow: 0 6px 14px rgba(5, 23, 61, 0.14);
}
.g-peach {
  width: 16%;
  height: 16%;
  right: 8%;
  bottom: 14%;
  z-index: 4;
  background: var(--peach);
  box-shadow: 0 8px 16px rgba(5, 23, 61, 0.12);
}
.doctor-frame {
  position: absolute;
  inset: 13% 16% 11% 16%;
  z-index: 3;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  background: #c5d6e6;
  box-shadow:
    0 0 0 6px #fff,
    0 0 0 8px rgba(3, 150, 194, 0.38),
    0 22px 40px rgba(5, 23, 61, 0.22);
}
.doctor-frame img {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 128%;
  height: 128%;
  max-width: none;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: 50% 16%;
}
.doctor-copy {
  padding: 0.4rem 0 0.2rem;
}
.doctor-copy h1 {
  font-family: Biryani, Inter, sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
  color: var(--navy);
  margin: 0.12rem 0 0.5rem;
}
.doctor-copy .lead {
  font-size: 1.08rem;
  color: var(--mute);
  margin: 0 0 1.2rem;
}
.doctor-copy p { margin: 0 0 0.9rem; }
.doctor-copy .btn { margin-top: 0.45rem; }

.page-hero {
  background: var(--mist);
  padding: 2.6rem 0 2.2rem;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: Biryani, Inter, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  margin: 0.2rem 0 0.5rem;
}
.page-hero p { max-width: 46rem; color: var(--mute); }
.page-hero .contact-quote {
  max-width: 40rem;
  margin: 0.75rem 0 1rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}
.page-hero .contact-quote .qmark {
  font-style: normal;
  font-weight: 800;
  color: var(--navy);
}
.page-hero .btn { margin-top: 1.1rem; }
.cc-order-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.28rem;
  margin-top: 1rem;
}
.cc-order-hint {
  font-size: 1rem;
  color: var(--ink);
  margin: 0 0 0.35rem;
}
.page-hero .cc-order-row { margin-top: 1.1rem; }
.page-hero .cc-order-row .btn { margin-top: 0; }
.cc-copy .cc-order-row { margin-top: 1rem; }
.cc-copy .cc-order-row .btn { margin-top: 0; }
.cc-order-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.portal-wrap { width: min(960px, calc(100% - 2.4rem)); }
.portal-frame {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f7fafc;
}
.portal-pending {
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.45rem;
  padding: 3.2rem 1.6rem;
  min-height: 420px;
}
.portal-pending h2 {
  margin: 0;
  color: var(--navy);
  font-family: Biryani, Inter, sans-serif;
  font-weight: 900;
}
.portal-pending p { margin: 0; color: var(--mute); max-width: 32rem; }
.portal-aloha {
  min-height: 720px;
  padding: 0.6rem 0.4rem 1.2rem;
  overflow: visible;
  background: #fff;
}
.portal-fallback {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--mute);
}
.cc-cta { margin-top: 1.4rem; }
.cc-copy .btn { margin-top: 1rem; }

.cc-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}
.cc-intro-photo {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(5, 23, 61, 0.16);
}
.cc-logo {
  height: 44px;
  width: auto;
  display: block;
  margin: 0 0 0.9rem;
}
.cc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 1.05rem;
}
.cc-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  display: block;
}
.cc-gallery img.bottle {
  background: #071018;
  object-fit: contain;
  padding: 0.35rem;
}
.cc-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}
.cc-tier {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.1rem 1.4rem;
  text-align: center;
}
.cc-n {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  display: grid;
  place-items: center;
  margin: 0 auto 0.75rem;
}
.cc-tier img {
  width: min(100%, 210px);
  height: 190px;
  object-fit: contain;
  margin: 0 auto 0.85rem;
  display: block;
}
.cc-tier h3 {
  margin: 0.15rem 0 0.45rem;
  color: var(--navy);
  font-size: 1.08rem;
}
.cc-tier p { margin: 0; font-size: 0.9rem; color: var(--mute); }
.cc-tier .who { display: block; margin-top: 0.35rem; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); }
.cc-pillars {
  display: grid;
  gap: 0.85rem;
}
.cc-pillars.row4 {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.6rem;
}
.cc-pillar {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.15rem;
}
.cc-pillar strong { display: block; color: var(--navy); margin-bottom: 0.2rem; }
.cc-pillar p { margin: 0; font-size: 0.92rem; color: var(--mute); }

.cc-item {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2.8rem;
  align-items: center;
  margin: 0 0 3.2rem;
}
.cc-item:last-child { margin-bottom: 0; }
.cc-item.reverse { grid-template-columns: 1.08fr 0.92fr; }
.cc-item.reverse > :first-child { order: 2; }
.cc-item.reverse > .cc-copy { order: 1; }
.cc-visual {
  background: radial-gradient(circle at 50% 40%, #1b3358 0%, #071018 72%);
  border-radius: 22px;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 1.6rem;
  box-shadow: 0 16px 32px rgba(5, 23, 61, 0.18);
}
.cc-visual.life {
  background: #e8eef4;
  overflow: hidden;
  padding: 0;
}
.cc-visual img {
  width: min(78%, 340px);
  height: auto;
  display: block;
}
.cc-visual.life img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.cc-copy h2 {
  font-family: Biryani, Inter, sans-serif;
  font-weight: 900;
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  color: var(--navy);
  margin: 0.15rem 0 0.7rem;
}
.cc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.cc-chips li {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-2);
}
.cc-quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}
.cc-order {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.6rem;
  align-items: center;
}
.cc-order .actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1rem; }
.cc-note {
  font-size: 0.78rem;
  color: var(--mute);
  max-width: 52rem;
  margin: 1.4rem auto 0;
  line-height: 1.55;
}

.form {
  display: grid;
  gap: 0.7rem;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}
.form textarea { min-height: 140px; }
.note { color: var(--mute); font-size: 0.86rem; }

footer.site {
  background: linear-gradient(180deg, #2a6aa8 0%, #164a82 46%, #05173d 100%);
  color: #ffffff;
  padding: 2.4rem 0 1.6rem;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(5, 23, 61, 0.35);
}
footer.site a { color: #ffffff; text-decoration: none; }
footer.site a:hover { color: #fff; opacity: 0.75; text-decoration: none; }
footer.site .wrap { width: min(90vw, 1680px); }
.foot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 2.4rem;
  row-gap: 1.6rem;
  align-items: start;
}
.foot > div { min-width: 0; }
.foot strong { color: #fff; display: block; margin-bottom: 0.35rem; font-size: 1.05rem; }
.legal { margin-top: 1.6rem; color: #c5d0dc; font-size: 0.88rem; }

.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 900px) {
  .brand-block { padding: 1.6rem 1rem 1.4rem; }
  .menubar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .mark img { height: min(118px, 32vw); }
  .hero-copy { padding-left: 0; }
  .socials { gap: 0.75rem; }
  .socials a { width: 52px; height: 52px; }
  .socials-inline { gap: 0.4rem; }
  .socials-inline a { width: 42px; height: 42px; }
  .cond-split {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
  .cond-copy h1 {
    font-size: 2rem;
    margin-bottom: 0.85rem;
  }
  .cond-copy p {
    font-size: 1.05rem;
    line-height: 1.65;
    text-align: left;
    hyphens: manual;
  }
  .cond-pan-window { aspect-ratio: 16 / 10; }
  .cond-frame-office .cond-pan-window { aspect-ratio: 4 / 3; }
  .cond-mid { padding-top: 2.4rem; padding-bottom: 2.6rem; }
  .cond-mid-copy { margin-bottom: 1.8rem; max-width: none; }
  .cond-mid-copy h2 { font-size: 1.7rem; margin: 0.6rem 0 0.9rem; }
  .cond-sub { font-size: 1.05rem; }
  .cond-cols { grid-template-columns: 1fr; gap: 1.4rem; }
  .cond-cols h3 {
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
  }
  .cond-cols ul { font-size: 1.05rem; line-height: 1.7; }
  .cond-book { padding-top: 0.2rem; }
  .cond-mission { padding: 2.4rem 0; }
  .cond-mission-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .cond-mission h2 { font-size: 1.7rem; }
  .cond-mission-copy > p { font-size: 1.05rem; max-width: none; }
  .cond-top { padding-top: 2.6rem; padding-bottom: 2.4rem; }
  .grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .tile img { min-height: 0; }
  .cond-top .wrap,
  .cond-mid .wrap,
  .cond-mission .wrap,
  footer.site .wrap { width: calc(100% - 2rem); }
  .quote-track .card { flex-basis: 100%; }
  .reviews, .community, .split, .steps, .grid, .two, .contact-grid, .process-photos,
  .cc-intro, .cc-item, .cc-item.reverse, .cc-quotes, .cc-order, .cc-pillars,
  .cc-pillars.row4, .cc-tiers,
  .doctor {
    grid-template-columns: 1fr;
  }
  .contact-grid .contact-map {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }
  .contact-actions .btn { flex: 1 1 auto; }
  .doctor-visual { max-width: 320px; }
  .doctor-sec { padding: 2.4rem 0 3rem; }
  .cc-gallery { grid-template-columns: repeat(3, 1fr); }
  .cc-item.reverse .cc-visual,
  .cc-item.reverse .cc-copy { order: 0; }
  .cc-visual, .cc-visual.life img { min-height: 280px; }
  .foot { grid-template-columns: 1fr; }
  .rank-row { grid-template-columns: 1fr; }
  .mobile-toggle {
    display: flex;
    position: static;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 0 1.1rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0,0,0,0.28);
  }
  .mobile-toggle::after {
    content: "☰";
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1;
  }
  .mobile-toggle[aria-expanded="true"]::after { content: "✕"; font-size: 1.2rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
  }
  .nav-links > li {
    flex: none;
    width: 100%;
  }
  .nav-links > li + li { border-left: 0; border-top: 1px solid rgba(255,255,255,0.22); }
  .nav-links > li > a {
    justify-content: flex-start;
    padding: 0.9rem 1.1rem;
    min-height: 48px;
  }
  .nav-links.open { display: flex; }
  .nav-links > li.has-drop > a {
    justify-content: space-between;
  }
  .nav-links > li.has-drop > a::after {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 0.6rem;
    flex: none;
  }
  .nav-links > li.has-drop.open > a::after {
    transform: rotate(-135deg);
    margin-top: 0.25rem;
  }
  .nav-links > li.has-drop > .drop,
  .nav-links > li.has-drop:hover > .drop,
  .nav-links > li.has-drop:focus-within > .drop {
    display: none;
    position: static;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 0.4rem;
    background: rgba(5, 20, 45, 0.22);
  }
  .nav-links > li.has-drop.open > .drop { display: block; }
  .drop a {
    text-align: left;
    padding: 0.65rem 1.1rem 0.65rem 1.6rem;
  }
  .tile img { height: auto; }
}
