/* =========================================================================
   WEST U ORTHODONTICS · "Your Smile Can Last Forever"
   Dr. Anna Maria Salas DDS MS · ABO Diplomate · Houston TX since 2006
   Palette: teal #0A7070 · blush #C8756D · warm cream #FAF5ED · ink #1C2220
   Type: Fraunces (SOFT display) · Inter Tight (body) · JetBrains Mono (labels)
   ========================================================================= */

:root {
  /* ---- Brand colors ---- */
  --teal:        #0A7070;
  --teal-deep:   #065858;
  --teal-mid:    #0E8A8A;
  --teal-tint:   #DDF0EF;

  --blush:       #C8756D;
  --blush-deep:  #A5514A;
  --blush-tint:  #FAE8E6;

  /* ---- Mapped tokens ---- */
  --bone:        #FAF5ED;   /* warm cream background */
  --bone-soft:   #F3EAE0;   /* soft panels */
  --sage:        #0A7070;   /* accent line → teal */
  --sage-deep:   #065858;
  --sage-tint:   #C8EAE8;
  --terra:       #C8756D;   /* decorative accent → blush */
  --terra-deep:  #A5514A;
  --terra-tint:  #FAE8E6;
  --ink:         #1C2220;
  --ink-mute:    #5A6460;
  --rule:        #DDD6CC;
  --white:       #FFFFFF;

  --f-display: "Fraunces", "Tiempos Headline", "Times New Roman", Georgia, serif;
  --f-body:    "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 144px);

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-pill: 999px;

  --shadow-soft: 0 1px 2px rgba(28,34,32,.05), 0 18px 40px -28px rgba(28,34,32,.18);
  --shadow-card: 0 1px 1px rgba(28,34,32,.04), 0 36px 72px -42px rgba(28,34,32,.26);
  --shadow-teal: 0 18px 44px -22px rgba(10,112,112,.45);
  --shadow-blush: 0 18px 44px -22px rgba(200,117,109,.35);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11", "kern";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ambient brand wash */
body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(880px 580px at 10% -8%, rgba(10,112,112,.09), transparent 65%),
    radial-gradient(800px 540px at 94% 104%, rgba(200,117,109,.07), transparent 68%);
}

/* ---- TYPE ---------------------------------------------------------------- */

.f-display { font-family: var(--f-display); font-weight: 360; letter-spacing: -.012em; font-variation-settings: "SOFT" 70, "WONK" 0, "opsz" 144; }
.f-italic  { font-family: var(--f-display); font-style: italic; font-weight: 360; font-variation-settings: "SOFT" 100, "opsz" 144; }
.f-mono    { font-family: var(--f-mono); font-weight: 400; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 360; letter-spacing: -.018em; margin: 0; color: var(--ink); font-variation-settings: "SOFT" 70, "opsz" 144; }
h1 { font-size: clamp(40px, 5.5vw, 78px); line-height: 1.04; }
h2 { font-size: clamp(30px, 3.8vw, 52px); line-height: 1.08; }
h3 { font-size: clamp(21px, 2.2vw, 28px); line-height: 1.2; }
h4 { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.32; }

p  { margin: 0 0 1em; }
.lead { font-size: clamp(16.5px, 1.35vw, 20px); line-height: 1.56; color: var(--ink); }
.muted { color: var(--ink-mute); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--sage-deep);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--sage);
}
.eyebrow--blush { color: var(--blush-deep); }
.eyebrow--blush::before { background: var(--blush); }
.eyebrow--dot::before { display: none; }
.eyebrow--dot::after  { display: none; }
.kicker--terra { color: var(--terra-deep); }
.kicker--terra::before { background: var(--terra); }

/* ---- LAYOUT -------------------------------------------------------------- */

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.section { padding: var(--section-y) 0; position: relative; }
.section--bone { background: var(--bone); }
.section--bone-soft { background: var(--bone-soft); }
.section--ink { background: var(--ink); color: var(--bone); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--bone); }
.section--teal { background: var(--teal-deep); color: var(--bone); }
.section--teal h1, .section--teal h2, .section--teal h3, .section--teal h4 { color: var(--bone); }
.section--blush { background: var(--blush-deep); color: var(--bone); }

/* ---- BADGE --------------------------------------------------------------- */

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--teal-tint); color: var(--teal-deep);
  border: 1px solid rgba(10,112,112,.22);
  border-radius: var(--r-pill);
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
}
.badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.badge--blush { background: var(--blush-tint); color: var(--blush-deep); border-color: rgba(200,117,109,.22); }

/* ---- BUTTONS ------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--r-pill);
  font-family: var(--f-body); font-size: 15px; font-weight: 500; letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--primary {
  background: var(--teal); color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn--primary:hover { background: var(--teal-deep); box-shadow: 0 22px 48px -20px rgba(10,112,112,.55); }

.btn--blush {
  background: var(--blush); color: var(--white);
  box-shadow: var(--shadow-blush);
}
.btn--blush:hover { background: var(--blush-deep); }

.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--rule);
}
.btn--ghost:hover { border-color: var(--ink); }

.btn--bone {
  background: var(--bone); color: var(--ink);
}
.btn--bone:hover { background: var(--bone-soft); }

.btn--ink {
  background: var(--ink); color: var(--bone);
}
.btn--ink:hover { background: #0F1513; }

/* ---- STAR ---------------------------------------------------------------- */
.star { color: var(--blush); font-size: 18px; }

/* ---- NAV ----------------------------------------------------------------- */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,245,237,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .2s ease;
}
.nav.scrolled { box-shadow: 0 2px 24px -8px rgba(28,34,32,.12); }
.nav__inner {
  display: flex; align-items: center; gap: 32px;
  height: 68px;
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav__wordmark {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav__wordmark-text {
  font-family: var(--f-display); font-weight: 400;
  font-variation-settings: "SOFT" 60, "opsz" 24;
  font-size: 18px; letter-spacing: -.01em; color: var(--ink);
  line-height: 1.1;
}
.nav__wordmark-text small {
  display: block; font-family: var(--f-mono);
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal); font-style: normal; margin-top: 1px;
}
.nav__links {
  display: flex; align-items: center; gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14.5px; font-weight: 450; color: var(--ink-mute);
  transition: color .15s ease; letter-spacing: .01em;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--teal); }
.nav__cta {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: var(--r-pill);
  background: var(--teal); color: var(--white);
  font-size: 14px; font-weight: 500;
  transition: background .15s ease, transform .15s ease;
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--teal-deep); transform: translateY(-1px); }
.nav__cta svg { width: 14px; height: 14px; }
.nav__toggle {
  display: none; background: none; border: none; padding: 6px;
  color: var(--ink);
}
.nav__toggle svg { width: 22px; height: 22px; }
.nav__mobile {
  display: none; flex-direction: column; gap: 0;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bone); border-bottom: 1px solid var(--rule);
  padding: 8px var(--gutter) 16px;
  box-shadow: 0 12px 32px -8px rgba(28,34,32,.12);
}
.nav__mobile a {
  display: block; padding: 12px 0; border-bottom: 1px solid var(--rule);
  font-size: 16px; font-weight: 450; color: var(--ink);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile .btn--primary { margin-top: 12px; justify-content: center; }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; margin-left: auto; }
  .nav__mobile.is-open { display: flex; }
}

/* ---- HERO ---------------------------------------------------------------- */

.hero {
  padding: clamp(56px, 8vw, 120px) 0 clamp(48px, 7vw, 104px);
  overflow: hidden; position: relative;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.hero__badge { margin-bottom: 24px; }
.hero__title { margin-bottom: 24px; }
.hero__lede { max-width: 520px; margin-bottom: 32px; font-size: clamp(16.5px, 1.3vw, 19.5px); line-height: 1.56; color: var(--ink-mute); }
.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero__phone {
  display: flex; flex-direction: column;
  font-size: 18px; font-weight: 600; color: var(--teal-deep);
  text-decoration: none; line-height: 1.2; letter-spacing: -.01em;
}
.hero__phone small { font-size: 11px; font-family: var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 400; }
.hero__phone:hover { color: var(--teal); }

.hero__media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5; background: var(--teal-tint);
  box-shadow: var(--shadow-card);
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.hero__caption {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  background: rgba(250,245,237,.88); color: var(--teal-deep);
  padding: 5px 10px; border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
}
.hero__seal {
  position: absolute; top: 18px; right: 18px;
  width: 82px; height: 82px;
  background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(10,112,112,.35);
}
.hero__seal span {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  color: var(--white); line-height: 1.1; gap: 1px;
}
.hero__seal .seal-top { font-family: var(--f-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; opacity: .8; }
.hero__seal strong { font-family: var(--f-display); font-size: 26px; font-weight: 400; letter-spacing: -.02em; font-variation-settings: "SOFT" 70; }
.hero__seal small { font-family: var(--f-mono); font-size: 7.5px; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { aspect-ratio: 4/3; max-height: 380px; }
  .hero__lede { max-width: 100%; }
}

/* ---- TRUST BAR ----------------------------------------------------------- */

.trust {
  padding: 32px 0;
  background: var(--teal-deep); color: var(--bone);
  position: relative; z-index: 2;
}
.trust__grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
}
.trust__cell {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 14px 28px;
  border-right: 1px solid rgba(250,245,237,.18);
  min-width: 140px; flex: 1;
}
.trust__cell:last-child { border-right: none; }
.trust__cell strong {
  font-family: var(--f-display); font-weight: 400; font-size: clamp(22px, 2.8vw, 36px);
  letter-spacing: -.02em; color: var(--bone); line-height: 1;
  font-variation-settings: "SOFT" 60, "opsz" 48;
}
.trust__cell span { font-size: 12.5px; color: rgba(250,245,237,.72); letter-spacing: .01em; margin-top: 5px; }

.statnum { display: block; }

@media (max-width: 768px) {
  .trust__grid { flex-direction: column; align-items: stretch; }
  .trust__cell { border-right: none; border-bottom: 1px solid rgba(250,245,237,.15); flex-direction: row; justify-content: center; gap: 12px; align-items: center; padding: 10px 20px; }
  .trust__cell:last-child { border-bottom: none; }
  .trust__cell span { margin-top: 0; }
}

/* ---- SMILE DIVIDER ------------------------------------------------------- */

.smile-divider { padding: 14px 0; }
.smile-divider svg { width: 100%; max-width: 640px; margin: 0 auto; display: block; }
.smile-path { stroke: var(--blush); stroke-width: 1.5px; }
.bracket { fill: var(--teal); }

/* ---- REVIEW STARS -------------------------------------------------------- */
.star { color: var(--blush); font-size: 18px; }

/* ---- DOCTOR CARD --------------------------------------------------------- */

.doctor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.doctor-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-soft);
  border: 1px solid var(--rule);
}
.doctor-card--solo { max-width: 680px; grid-column: 1 / -1; margin: 0 auto; width: 100%; }
.doctor-card__photo {
  position: relative; background: var(--teal-tint); aspect-ratio: 3/2;
  overflow: hidden;
}
.doctor-card--solo .doctor-card__photo { aspect-ratio: 16/7; }
.doctor-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.doctor-card__tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(250,245,237,.90); color: var(--teal-deep);
  padding: 4px 10px; border-radius: var(--r-pill);
}
.doctor-card__body { padding: 28px 28px 32px; }
.doctor-card__name { font-size: clamp(20px, 2vw, 26px); margin-bottom: 4px; }
.doctor-card__name span { color: var(--teal); font-size: .8em; }
.doctor-card__role { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 14px; }
.doctor-card__bio { font-size: 15.5px; color: var(--ink-mute); line-height: 1.58; margin-bottom: 18px; }
.doctor-card__meta { margin: 0; }
.doctor-card__meta dt { font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin-top: 14px; margin-bottom: 4px; }
.doctor-card__meta dd { margin: 0; font-size: 15px; color: var(--ink-mute); }
.doctor-card__meta dd ul { margin: 6px 0 0; padding-left: 18px; }
.doctor-card__meta dd ul li { margin-bottom: 4px; }

@media (max-width: 760px) {
  .doctor-grid { grid-template-columns: 1fr; }
}

/* ---- PHILOSOPHY (dark teal band) ---------------------------------------- */

.philosophy { padding: var(--section-y) 0; position: relative; overflow: hidden; background: var(--teal-deep); color: var(--bone); }
.philosophy h2, .philosophy h3, .philosophy h4 { color: var(--bone); }
.philosophy__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 40px; }
.philosophy__cell {
  padding: 32px 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(250,245,237,.1);
  transition: background .2s ease;
}
.philosophy__cell:hover { background: rgba(255,255,255,.1); }
.philosophy__cell dt { font-size: clamp(18px, 1.6vw, 22px); font-family: var(--f-display); font-weight: 400; font-variation-settings: "SOFT" 60; color: var(--bone); margin-bottom: 10px; }
.philosophy__cell dd { margin: 0; font-size: 15.5px; line-height: 1.58; color: rgba(250,245,237,.78); }
.philosophy__watermark {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  opacity: .06; pointer-events: none;
}

@media (max-width: 720px) {
  .philosophy__grid { grid-template-columns: 1fr; }
}

/* ---- SERVICES GRID ------------------------------------------------------- */

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.service-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 28px 26px 30px;
  border: 1px solid var(--rule); box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-card__num { font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.service-card__name { font-size: clamp(17px, 1.4vw, 20px); margin-bottom: 10px; }
.service-card__blurb { font-size: 14.5px; line-height: 1.58; color: var(--ink-mute); margin: 0; }

/* ---- PHOTO STRIP --------------------------------------------------------- */

.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; border-radius: var(--r-lg); overflow: hidden; }
.strip__tile { aspect-ratio: 4/3; overflow: hidden; background: var(--teal-tint); }
.strip__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.strip__tile:hover img { transform: scale(1.04); }

@media (max-width: 640px) {
  .strip { grid-template-columns: 1fr; }
  .strip__tile { aspect-ratio: 16/9; }
}

/* ---- NEW PATIENT STEPS --------------------------------------------------- */

.np-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.np-steps { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.np-step { display: flex; align-items: flex-start; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--rule); }
.np-step:last-child { border-bottom: none; }
.np-step__num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 12px; font-weight: 500; letter-spacing: .05em;
  flex-shrink: 0; margin-top: 2px;
}
.np-step h4 { margin-bottom: 4px; font-size: 16.5px; }
.np-step p { margin: 0; font-size: 14.5px; color: var(--ink-mute); line-height: 1.55; }

.np-photo { border-radius: var(--r-lg); overflow: hidden; background: var(--teal-tint); aspect-ratio: 4/5; }
.np-photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .np-grid { grid-template-columns: 1fr; gap: 40px; }
  .np-photo { aspect-ratio: 16/9; }
}

/* ---- INSURANCE ----------------------------------------------------------- */

.insurance { padding: var(--section-y) 0; background: var(--bone-soft); }
.insurance__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.insurance__notes { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.insurance__note {
  padding: 20px 22px; border-radius: var(--r-md);
  background: var(--white); border: 1px solid var(--rule);
}
.insurance__note h4 { margin-bottom: 8px; font-size: 16px; }
.insurance__note p { margin: 0; font-size: 14.5px; color: var(--ink-mute); }
.insurance__list {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px;
}
.insurance__list li {
  font-size: 14.5px; padding: 8px 12px;
  background: var(--white); border-radius: var(--r-sm);
  border: 1px solid var(--rule); color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.insurance__list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

@media (max-width: 800px) {
  .insurance__inner { grid-template-columns: 1fr; gap: 40px; }
  .insurance__list { grid-template-columns: 1fr; }
}

/* ---- REVIEWS ------------------------------------------------------------- */

.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.review {
  background: var(--white); border-radius: var(--r-md);
  padding: 28px 26px 26px;
  border: 1px solid var(--rule); box-shadow: var(--shadow-soft);
  position: relative;
}
.review__mark {
  font-family: var(--f-display); font-size: 64px; line-height: .7;
  color: var(--blush-tint); user-select: none;
  margin-bottom: 8px;
}
.review p { font-size: 15px; line-height: 1.6; color: var(--ink-mute); margin-bottom: 16px; font-style: italic; }
.review__by { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: .02em; }
.reviews-head { display: flex; flex-direction: column; align-items: flex-start; }

/* ---- FAQ ----------------------------------------------------------------- */

.faq-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 0;
  font-size: 16.5px; font-weight: 500; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::after {
  content: "+"; font-size: 24px; font-weight: 300; color: var(--teal); flex-shrink: 0; transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 18px; margin: 0; font-size: 15px; color: var(--ink-mute); line-height: 1.62; }

@media (max-width: 720px) {
  .faq-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ---- BOOK FORM ------------------------------------------------------------ */

.book { padding: var(--section-y) 0; background: var(--bone-soft); }
.book__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.book__intro { font-size: 16px; color: var(--ink-mute); margin-bottom: 24px; line-height: 1.58; }
.book__phone {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px; padding: 18px 22px;
  background: var(--white); border-radius: var(--r-md); border: 1px solid var(--rule);
  box-shadow: var(--shadow-soft); text-decoration: none; color: var(--ink);
  transition: box-shadow .2s ease, transform .2s ease;
}
.book__phone:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.book__phone svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; }
.book__phone span { display: flex; flex-direction: column; }
.book__phone small { font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }
.book__phone strong { font-size: 20px; font-weight: 600; color: var(--teal-deep); letter-spacing: -.01em; }

@media (max-width: 860px) {
  .book__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- FORM ---------------------------------------------------------------- */

.form { background: var(--white); border-radius: var(--r-lg); padding: 32px 32px 36px; border: 1px solid var(--rule); box-shadow: var(--shadow-soft); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form__row--single { grid-template-columns: 1fr; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label { font-size: 13px; font-weight: 500; color: var(--ink); letter-spacing: .03em; }
.form__field input, .form__field select, .form__field textarea {
  padding: 10px 14px; border: 1.5px solid var(--rule); border-radius: var(--r-sm);
  font: inherit; font-size: 15px; color: var(--ink); background: var(--bone);
  transition: border-color .15s ease;
  outline: none;
}
.form__field textarea { resize: vertical; min-height: 88px; }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus { border-color: var(--teal); }
.form__notice { font-size: 12.5px; color: var(--ink-mute); line-height: 1.5; margin: 14px 0 20px; padding: 10px 14px; background: var(--teal-tint); border-radius: var(--r-sm); }
.form__after { font-size: 14px; color: var(--teal-deep); }

@media (max-width: 520px) {
  .form { padding: 22px 18px 26px; }
  .form__row { grid-template-columns: 1fr; }
}

/* ---- VISIT --------------------------------------------------------------- */

.visit__grid { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start; }
.visit__details { margin: 0; display: flex; flex-direction: column; gap: 0; }
.visit__row { padding: 18px 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 80px 1fr; gap: 16px; }
.visit__row:first-child { border-top: 1px solid var(--rule); }
.visit__row dt { font-size: 12px; font-family: var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--teal-deep); padding-top: 3px; }
.visit__row dd { margin: 0; font-size: 15px; line-height: 1.58; }
.visit__row dd a { color: var(--teal); }
.visit__row dd a:hover { text-decoration: underline; }
.visit__row dd small { display: block; font-size: 12.5px; color: var(--ink-mute); margin-top: 3px; }
.visit__hours { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.visit__hours li { display: flex; justify-content: space-between; font-size: 14.5px; gap: 12px; }
.visit__hours li strong { color: var(--ink); }
.visit__hours li span { color: var(--ink-mute); }
.visit__map { border-radius: var(--r-md); overflow: hidden; height: 320px; border: 1px solid var(--rule); }
.visit__map iframe { width: 100%; height: 100%; border: none; display: block; }

@media (max-width: 860px) {
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { height: 260px; }
}

/* ---- CTA BAND ------------------------------------------------------------ */

.cta-band { padding: clamp(60px, 8vw, 100px) 0; background: var(--teal-deep); }
.cta-band__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; }
.cta-band h2 { color: var(--bone); max-width: 700px; }
.cta-band p { color: rgba(250,245,237,.78); max-width: 520px; font-size: 17.5px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---- PANEL QUOTE --------------------------------------------------------- */

.panel-quote {
  margin-top: 40px; padding: 32px 36px;
  border-left: 3px solid var(--blush); background: var(--white);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: var(--shadow-soft);
}
.panel-quote p { font-family: var(--f-display); font-size: clamp(17px, 1.5vw, 22px); font-style: italic; font-variation-settings: "SOFT" 80; color: var(--ink); margin-bottom: 8px; }
.panel-quote cite { font-size: 13px; color: var(--ink-mute); font-style: normal; font-family: var(--f-mono); letter-spacing: .1em; text-transform: uppercase; }

/* ---- FOOTER -------------------------------------------------------------- */

.footer { background: var(--ink); color: var(--bone); padding: 56px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__wordmark { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer__wordmark-text { font-family: var(--f-display); font-weight: 400; font-variation-settings: "SOFT" 60; font-size: 17px; color: var(--bone); line-height: 1.1; }
.footer__wordmark-text small { display: block; font-family: var(--f-mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-mid); }
.footer__brand p { font-size: 14px; color: rgba(250,245,237,.6); line-height: 1.6; margin: 0; }
.footer h4 { font-size: 12px; font-family: var(--f-mono); letter-spacing: .2em; text-transform: uppercase; color: rgba(250,245,237,.5); margin-bottom: 14px; }
.footer a { display: block; font-size: 14px; color: rgba(250,245,237,.75); margin-bottom: 8px; transition: color .15s ease; }
.footer a:hover { color: var(--teal-tint); }
.footer__sub {
  border-top: 1px solid rgba(250,245,237,.1); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: rgba(250,245,237,.4);
}
.footer__sub a { display: inline; font-size: 12.5px; color: rgba(250,245,237,.6); }
.footer__smile-mark { color: var(--teal-mid); font-size: 22px; }

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: 1; }
}

/* ---- REVEAL ANIMATIONS --------------------------------------------------- */

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; animation: none !important; }
}

/* ---- DOCTORS-INTRO ------------------------------------------------------- */

.doctors-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 8px; }
.doctors-intro .lead { max-width: 480px; }

@media (max-width: 760px) {
  .doctors-intro { grid-template-columns: 1fr; gap: 20px; }
}

/* ---- CONDITIONS (services on index) -------------------------------------- */
.conditions { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.condition { padding: 22px 20px; background: var(--white); border-radius: var(--r-md); border: 1px solid var(--rule); }
.condition__num { font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.condition__name { font-size: clamp(15px, 1.2vw, 17.5px); margin-bottom: 8px; }
.condition__blurb { font-size: 13.5px; color: var(--ink-mute); line-height: 1.56; margin: 0; }
.conditions-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 36px; }

@media (max-width: 720px) { .conditions-head { grid-template-columns: 1fr; gap: 16px; } }

/* ---- TREATMENT ROWS ------------------------------------------------------ */
.treatment-row { padding: 24px 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 110px 1fr 1fr; gap: 24px; align-items: baseline; }
.treatment-row:first-child { border-top: 1px solid var(--rule); }
.treatment-row__num { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--blush); }
.treatment-row__name { font-size: clamp(16px, 1.3vw, 19px); }
.treatment-row__blurb { font-size: 14.5px; color: var(--ink-mute); line-height: 1.58; margin: 0; }

.treatments-head { margin-bottom: 8px; }

@media (max-width: 720px) {
  .treatment-row { grid-template-columns: 1fr; gap: 6px; }
  .treatment-row__num { margin-bottom: 2px; }
}
