/* ============================================================
   Gul Orthodontics — styles.css
   Built on the Adviuz design system, customised for this client.
   Brand: deep navy + warm coral accent + soft cream.
   Signature motif: the "smile arc" (gentle curve).
   ============================================================ */

:root {
  /* Backgrounds */
  --bg: #FBF8F9;             /* soft off-white (brand) */
  --surface: #ffffff;
  --surface-alt: #F4ECEF;    /* light mauve tint */
  --overlay: rgba(62, 38, 89, 0.55);

  /* Text */
  --text: #322a3a;
  --text-heading: #3E2659;   /* deep purple */
  --sub: #6a5f74;
  --muted: #9a8fa4;
  --link: #72468D;

  /* Brand — Gul Orthodontics (client-approved) */
  --brand-primary: #72468D;  /* primary purple */
  --brand-deep: #3E2659;     /* deep purple (headings, footer) */
  --brand-secondary: #ffffff;
  --brand-accent: #CD959E;   /* dusty rose / mauve */
  --coral-soft: #F0DEE2;     /* light rose tint (badges, icon bg) */
  --coral-ink: #A85C6A;      /* darker rose for text on light bg */
  --light-mauve: #D9B8BB;    /* soft borders / decorative */
  --gold: #D4AF5F;           /* premium accent (use sparingly) */
  /* on-purple text tints */
  --on-dark: #EFE7F4;
  --on-dark-sub: #DED0E8;
  --on-dark-muted: #C0AAD3;
  --on-dark-rose: #E7BFC8;

  /* Semantic */
  --success: #2E7D5B;
  --warning: #C77D2E;
  --error: #C0392B;
  --info: #2F6FA8;

  /* Borders & Shadows */
  --border: #ecdfe3;
  --border-strong: #d9c4c9;
  --shadow-sm: 0 1px 2px rgba(62,38,89,0.06);
  --shadow-md: 0 6px 18px rgba(62,38,89,0.09);
  --shadow-lg: 0 16px 40px rgba(62,38,89,0.13);
  --shadow-xl: 0 28px 60px rgba(62,38,89,0.16);

  /* Typography */
  --font-heading: "Poppins", "Segoe UI", -apple-system, Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", Monaco, Consolas, monospace;

  /* Spacing scale */
  --sp-xs: 4px;  --sp-sm: 8px;  --sp-md: 16px; --sp-lg: 24px;
  --sp-xl: 40px; --sp-2xl: 64px; --sp-3xl: 96px;

  /* Radius */
  --radius-sm: 6px;  --radius-md: 10px; --radius-lg: 16px;
  --radius-xl: 24px; --radius-full: 999px;

  /* Transitions */
  --trans-fast: 150ms ease;
  --trans-normal: 250ms ease;
  --trans-slow: 400ms ease;

  --z-dropdown: 10; --z-sticky: 20; --z-fixed: 30; --z-modal: 100; --z-toast: 200;

  --container: 1160px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { padding: 0; list-style: none; }
button { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.4rem; line-height: 1.12; font-weight: 700; }
h2 { font-size: 1.95rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p { color: var(--text); }
.lead { font-size: 1.12rem; color: var(--sub); line-height: 1.6; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-ink);
  margin-bottom: var(--sp-md);
}

@media (min-width: 1024px) {
  body { font-size: 18px; }
  h1 { font-size: 3.4rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.6rem; }
  h4 { font-size: 1.25rem; }
  .lead { font-size: 1.25rem; }
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-alt { background: var(--surface-alt); }
.section-navy { background: var(--brand-primary); color: #EFE7F4; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #ffffff; }
.section-header { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-header.left { margin-left: 0; text-align: left; }
.section-header p { color: var(--sub); margin-top: var(--sp-md); }
@media (min-width: 1024px) { .section { padding: 88px 0; } }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid { gap: 24px; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: var(--z-toast);
  background: var(--brand-primary); color: #fff; padding: 12px 18px;
  border-radius: 0 0 var(--radius-md) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--brand-accent); outline-offset: 2px; border-radius: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 1rem; line-height: 1; text-align: center;
  border: 2px solid transparent; cursor: pointer;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast), background var(--trans-fast), color var(--trans-fast);
}
.btn:hover { text-decoration: none; }
.btn { white-space: nowrap; }
.btn-primary { background: var(--brand-primary); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #8A5CAB; }
.btn-accent { background: var(--brand-accent); color: #3E2659; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #BE7E8B; }
.btn-secondary { background: transparent; color: var(--brand-primary); border-color: var(--brand-primary); }
.btn-secondary:hover { background: var(--brand-primary); color: #fff; }
.btn-ghost { background: transparent; color: var(--brand-primary); padding: 10px 14px; }
.btn-ghost:hover { color: var(--coral-ink); }
.btn-block { display: flex; width: 100%; }
.section-navy .btn-secondary { color: #fff; border-color: rgba(255,255,255,.6); }
.section-navy .btn-secondary:hover { background: #fff; color: var(--brand-primary); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-fixed);
  background: rgba(251,248,249,0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-md); padding: 12px 20px; max-width: var(--container); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand:hover { text-decoration: none; }
.brand img { height: 76px; width: auto; }
.brand-name { font-family: var(--font-heading); font-weight: 600; font-size: 1.15rem; color: var(--brand-primary); letter-spacing: -0.01em; line-height: 1; }
.brand-sub { display: block; font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav-links { display: none; align-items: center; gap: 10px; }
.nav-links a { color: var(--text-heading); font-weight: 500; font-size: 0.98rem; padding: 10px 16px; border-radius: var(--radius-md); white-space: nowrap; }
.nav-links a:hover { text-decoration: none; background: var(--surface-alt); color: var(--brand-primary); }
.nav-links a[aria-current="page"] { color: var(--coral-ink); }
.nav-cta { display: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone { display: none; align-items: center; gap: 6px; font-weight: 600; color: var(--brand-primary); white-space: nowrap; }
.nav-phone:hover { text-decoration: none; color: var(--coral-ink); }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: transparent; border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md); cursor: pointer; color: var(--brand-primary);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  display: none; border-top: 1px solid var(--border); background: var(--bg);
  padding: 8px 20px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 8px; font-size: 1.05rem; color: var(--text-heading); font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { text-decoration: none; }
.mobile-menu a[aria-current="page"] { color: var(--coral-ink); }
.mobile-menu .btn { margin-top: 16px; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-phone { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------- Announcement bar (scrolling marquee) ---------- */
.announce { background: var(--brand-deep); color: var(--on-dark); overflow: hidden; }
.announce .marquee { display: flex; width: max-content; animation: announce-scroll 36s linear infinite; }
.announce:hover .marquee, .announce:focus-within .marquee { animation-play-state: paused; }
.announce .mq-group { display: flex; align-items: center; flex: 0 0 auto; }
.announce .mq-group span { padding: 9px 0; white-space: nowrap; font-size: 0.88rem; letter-spacing: 0.01em; }
.announce .mq-group .sep { padding: 0 20px; color: var(--gold); font-size: 0.6rem; }
.announce strong { color: #fff; font-weight: 600; }
@keyframes announce-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .announce .marquee { animation: none; width: 100%; justify-content: center; }
  .announce .mq-group:last-child { display: none; }
}

/* ---------- Smile arc divider (signature) ---------- */
.arc-divider { display: block; width: 100%; height: 40px; color: var(--bg); }
.arc-divider path { fill: currentColor; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, #8A5CAB 0%, transparent 55%),
    linear-gradient(160deg, #72468D 0%, #3E2659 100%);
  color: #F3ECF7;
  padding: 64px 0 84px;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 720px; }
.hero .eyebrow { color: var(--on-dark-rose); }
.hero h1 { color: #fff; font-weight: 700; }
.hero h1 em { font-style: italic; color: #E9C4CE; }
.hero p { color: #DED0E8; margin-top: 20px; font-size: 1.1rem; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-cred {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.14);
  color: #CBB8DA; font-size: 0.92rem;
}
.hero-cred .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand-accent); }
/* ambient arcs */
.hero-arc { position: absolute; border-radius: 50%; border: 1.5px solid rgba(205,149,158,0.22); z-index: 1; }
.hero-arc.a1 { width: 520px; height: 520px; right: -160px; top: -180px; }
.hero-arc.a2 { width: 360px; height: 360px; right: -60px; bottom: -180px; border-color: rgba(255,255,255,0.06); }
@media (min-width: 1024px) {
  .hero { padding: 96px 0 120px; }
  .hero p { font-size: 1.25rem; }
}

/* ---------- Interior page hero (light) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--bg) 100%);
  color: var(--text); padding: 44px 0 48px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { color: var(--coral-ink); }
.page-hero h1 { color: var(--text-heading); font-weight: 700; }
.page-hero p { color: var(--sub); max-width: 620px; margin: 16px auto 0; }
.page-hero .hero-arc { display: none; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; letter-spacing: 0.02em; }
.breadcrumb a { color: var(--brand-primary); }
@media (min-width: 1024px) { .page-hero { padding: 60px 0 66px; } }

/* Service block (About & Services) */
.service-block { scroll-margin-top: 90px; padding: 30px 0; border-bottom: 1px solid var(--border); }
.service-block:last-child { border-bottom: none; }
.service-block .service-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.service-block .service-head .icon-badge { margin-bottom: 0; }
.service-block h3 { font-size: 1.4rem; }
.service-block .svc-meta { display: inline-block; margin-top: 12px; font-size: 0.85rem; color: var(--coral-ink); font-weight: 600; }
.service-block p { color: var(--sub); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow-sm); transition: transform var(--trans-normal), box-shadow var(--trans-normal);
  height: 100%;
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--sub); font-size: 0.98rem; }
.card .card-meta { display: block; margin-top: 14px; font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; color: var(--brand-primary); font-size: 0.95rem; }
.card-link svg { width: 16px; height: 16px; transition: transform var(--trans-fast); }
.card-link:hover { text-decoration: none; color: var(--coral-ink); }
.card-link:hover svg { transform: translateX(3px); }

.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--coral-soft); color: var(--brand-primary); margin-bottom: 16px;
}
.icon-badge svg { width: 26px; height: 26px; }

/* Feature list with check */
.feature-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; color: var(--sub); }
.feature-list li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--brand-accent); margin-top: 2px; }
.feature-list li strong { color: var(--text-heading); font-weight: 600; }

/* Steps */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 62px; }
.step::before {
  content: attr(data-step);
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-primary); color: #fff;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1.15rem; margin-bottom: 4px; }
.step p { color: var(--sub); font-size: 0.96rem; }

/* Offer / highlight band */
.offer-card {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 4px solid var(--brand-accent);
  border-radius: var(--radius-md); padding: 20px 22px; height: 100%;
}
.offer-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.offer-card p { color: var(--sub); font-size: 0.94rem; }

/* Doctor / portrait placeholder */
.portrait {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #8A5CAB, #3E2659);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #DED0E8; text-align: center; overflow: hidden; box-shadow: var(--shadow-lg);
}
.portrait .mono { font-family: var(--font-heading); font-size: 4rem; color: #fff; }
.portrait .ph-note { font-size: 0.8rem; letter-spacing: 0.04em; margin-top: 6px; padding: 0 18px; color: #B7A2C9; }
.portrait::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; border: 1.5px solid rgba(205,149,158,0.3); bottom: -110px; }

/* Split (image + text) */
.split { display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1.15fr; gap: 56px; } .split.reverse > :first-child { order: 2; } }

/* Accordion (FAQ) */
.accordion { border-top: 1px solid var(--border); }
.accordion details { border-bottom: 1px solid var(--border); }
.accordion summary {
  cursor: pointer; list-style: none; padding: 20px 44px 20px 4px; position: relative;
  font-weight: 600; color: var(--text-heading); font-size: 1.05rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: ""; position: absolute; right: 6px; top: 24px; width: 12px; height: 12px;
  border-right: 2px solid var(--brand-accent); border-bottom: 2px solid var(--brand-accent);
  transform: rotate(45deg); transition: transform var(--trans-fast);
}
.accordion details[open] summary::after { transform: rotate(-135deg); top: 28px; }
.accordion .acc-body { padding: 0 4px 20px; color: var(--sub); }
.accordion .acc-body p + p { margin-top: 10px; }

/* Stat / value row */
.value-row { display: flex; flex-wrap: wrap; gap: 20px; }
.value-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 10px 18px; font-weight: 500; font-size: 0.95rem; color: var(--text-heading);
}
.value-pill svg { width: 18px; height: 18px; color: var(--brand-accent); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 18px; }
.form-grid-2 { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
label { display: block; font-weight: 600; color: var(--text-heading); font-size: 0.92rem; margin-bottom: 6px; }
label .req { color: var(--coral-ink); }
input, select, textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--text);
  padding: 12px 14px; background: var(--bg);
  border: 1.5px solid var(--border-strong); border-radius: var(--radius-md);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(114,70,141,0.12);
}
textarea { resize: vertical; min-height: 110px; }
.consent { display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 20px; }
.consent input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--brand-primary); }
.consent label { font-weight: 400; font-size: 0.85rem; color: var(--sub); margin: 0; line-height: 1.5; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 14px; font-size: 0.95rem; border-radius: var(--radius-md); }
.form-status.error { color: var(--error); background: #fdece9; padding: 12px 14px; }
.form-status.info { color: var(--info); background: #eaf2fa; padding: 12px 14px; }
.form-success { text-align: center; padding: 20px 8px; }
.form-success .check {
  width: 60px; height: 60px; border-radius: 50%; background: var(--coral-soft);
  color: var(--brand-primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.form-success .check svg { width: 30px; height: 30px; }
.form-success h3 { margin-bottom: 6px; }
.form-success p { color: var(--sub); }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }
@media (min-width: 700px) { .btn.form-submit { width: auto; } }

/* ---------- Contact / info blocks ---------- */
.info-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.info-item:last-child { border-bottom: none; }
.info-item .ii-icon { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: var(--coral-soft); color: var(--brand-primary); display: flex; align-items: center; justify-content: center; }
.info-item .ii-icon svg { width: 22px; height: 22px; }
.info-item h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-family: var(--font-body); font-weight: 600; margin-bottom: 3px; }
.info-item p, .info-item a { color: var(--text-heading); font-weight: 500; font-size: 1.02rem; }
.map-embed { border: 0; width: 100%; height: 340px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ---------- Prose (privacy / long text) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.prose h3 { font-size: 1.2rem; margin: 24px 0 8px; }
.prose p, .prose li { color: var(--sub); margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.prose ul li { margin-bottom: 6px; }
.prose a { color: var(--link); text-decoration: underline; }
.callout { background: var(--surface-alt); border-radius: var(--radius-md); padding: 16px 18px; font-size: 0.9rem; color: var(--sub); margin: 18px 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-deep); color: #CBB8DA; padding: 56px 0 26px; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.footer-brand .brand img { height: 72px; }
.footer-brand .brand-name { color: #fff; }
.footer-tag { margin-top: 14px; font-family: var(--font-heading); font-style: italic; color: #DED0E8; font-size: 1.02rem; line-height: 1.4; max-width: 320px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a, .footer-col p { color: #CBB8DA; font-size: 0.95rem; display: block; margin-bottom: 9px; }
.footer-col a:hover { color: var(--brand-accent); text-decoration: none; }
.footer-compliance { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 22px; font-size: 0.8rem; color: #A98FC0; line-height: 1.6; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 20px; font-size: 0.8rem; color: #9C86B4; }
.footer-bottom a { color: #9C86B4; }
.footer-bottom a:hover { color: var(--brand-accent); text-decoration: none; }
.version-stamp { font-family: var(--font-mono); font-size: 0.72rem; color: #6E5A85; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 24px; }
.mt-xl { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
/* .reveal is intentionally a no-op: all content is always visible in every
   context (with or without JS, in screenshots, and in isolated previews). */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
.tag {
  display: inline-block; background: var(--coral-soft); color: var(--coral-ink);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-full); margin-bottom: 14px;
}

/* ============================================================
   v1.2 — Premium light home layout
   ============================================================ */

/* Gold hairline accent (used sparingly) */
.eyebrow-rule { display:flex; align-items:center; gap:12px; }
.eyebrow-rule::after { content:""; height:2px; width:44px; background:linear-gradient(90deg,var(--gold),transparent); border-radius:2px; }

/* ---- Premium hero (light, split with photo) ---- */
.hero2 { position: relative; overflow: hidden; background: var(--bg); padding: 36px 0 56px; }
.hero2::before {
  content:""; position:absolute; width:520px; height:520px; border-radius:50%;
  background: radial-gradient(circle at center, rgba(205,149,158,0.18), transparent 62%);
  top:-180px; left:-160px; z-index:0;
}
.hero2 .container { position: relative; z-index: 1; }
.hero2-grid { display:grid; gap:36px; align-items:center; }
.hero2-copy .eyebrow { color: var(--coral-ink); }
.hero2 h1 { font-size: 2.5rem; line-height:1.08; color:var(--text-heading); font-weight:700; letter-spacing:-0.02em; }
.hero2 h1 .accent { color: var(--brand-primary); }
.hero2 p.lead { margin-top:18px; color:var(--sub); max-width:520px; }
.hero2-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:30px; }
.hero2-cred { display:flex; flex-wrap:wrap; align-items:center; gap:10px 20px; margin-top:30px; padding-top:22px; border-top:1px solid var(--border); color:var(--sub); font-size:0.9rem; }
.hero2-cred .dot { width:5px; height:5px; border-radius:50%; background:var(--gold); }
.hero2-media { position: relative; }
.hero2-media img { width:100%; aspect-ratio: 3 / 2; object-fit:cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }
.hero2-media .ring { position:absolute; inset:14px; border:1.5px solid rgba(212,175,95,0.55); border-radius:calc(var(--radius-xl) - 6px); pointer-events:none; }
.hero-badge {
  position:absolute; left:16px; bottom:16px; right:16px; max-width:290px;
  background:rgba(255,255,255,0.96); backdrop-filter:blur(4px);
  border-radius:var(--radius-lg); box-shadow:var(--shadow-lg);
  padding:14px 16px; display:flex; gap:12px; align-items:center;
}
.hero-badge .hb-icon { flex:0 0 auto; width:42px; height:42px; border-radius:11px; background:var(--coral-soft); color:var(--brand-primary); display:grid; place-items:center; }
.hero-badge .hb-icon svg { width:22px; height:22px; }
.hero-badge strong { display:block; color:var(--text-heading); font-size:0.96rem; line-height:1.2; }
.hero-badge span { font-size:0.8rem; color:var(--muted); }
@media (min-width: 940px) {
  .hero2 { padding: 52px 0 80px; }
  .hero2-grid { grid-template-columns: 1.02fr 0.98fr; gap:56px; }
  .hero2 h1 { font-size: 3.5rem; }
}
@media (min-width: 1200px) { .hero2 h1 { font-size: 3.9rem; } }

/* ---- Trust strip ---- */
.trust-strip { background: var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.trust-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px 20px; padding:22px 0; }
.trust-item { display:flex; gap:11px; align-items:center; }
.trust-item .ti-ic { flex:0 0 auto; width:38px; height:38px; border-radius:10px; background:var(--coral-soft); color:var(--brand-primary); display:grid; place-items:center; }
.trust-item .ti-ic svg { width:20px; height:20px; }
.trust-item span { font-weight:600; color:var(--text-heading); font-size:0.92rem; line-height:1.25; }
@media (min-width: 900px) {
  .trust-grid { grid-template-columns: repeat(4,1fr); gap:24px; padding:26px 0; }
  .trust-item { justify-content:center; }
}

/* ---- Light feature split (why us) ---- */
.feature-split { display:grid; gap:32px; align-items:center; }
@media (min-width: 940px) { .feature-split { grid-template-columns: 1fr 1fr; gap:60px; } }
.feature-panel {
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-xl);
  padding: 30px; box-shadow: var(--shadow-md);
}
.feature-panel .feature-list li svg { color: var(--gold); }

/* Premium doctor card */
.doctor-card {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-xl); overflow:hidden;
  background: linear-gradient(160deg, #F4ECEF, #EADFE6);
  border:1px solid var(--border); box-shadow: var(--shadow-lg);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
}
.doctor-card .dc-mono { font-family:var(--font-heading); font-weight:700; font-size:4.4rem; color:var(--brand-primary); }
.doctor-card .dc-note { font-size:0.8rem; color:var(--muted); margin-top:8px; padding:0 20px; }
.doctor-card::after { content:""; position:absolute; width:260px; height:260px; border-radius:50%; border:1.5px solid rgba(212,175,95,0.4); bottom:-120px; }

/* Section eyebrow gold underline for premium feel on light sections */
.section .section-header .eyebrow, .section-alt .section-header .eyebrow { position:relative; }

/* Slightly airier desktop rhythm */
@media (min-width: 1024px) { .section { padding: 92px 0; } }

/* ============================================================
   v1.3 — Big gradient hero + real doctor photo
   ============================================================ */

/* Gold CTA button (premium accent, for use on purple) */
.btn-gold { background: var(--gold); color: #3E2659; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #dcb96e; }

/* ---- Big hero (gradient + large image) ---- */
.hero3 {
  position: relative; overflow: hidden; color: var(--text);
  background: linear-gradient(120deg, #FBF8F9 0%, #F5EDF0 58%, #EFE2E8 100%);
  border-bottom: 1px solid var(--border);
}
.hero3::before {
  content:""; position:absolute; width:640px; height:640px; border-radius:50%;
  background: radial-gradient(circle at center, rgba(205,149,158,0.22), transparent 62%);
  top:-220px; right:-160px; z-index:0;
}
.hero3 .container { position: relative; z-index: 1; }
.hero3-grid { display:grid; gap:30px; align-items:center; padding: 34px 0 44px; }
.hero3 .eyebrow { color: var(--coral-ink); }
.hero3 h1 { font-size: 2.7rem; line-height:1.04; font-weight:700; color:var(--text-heading); letter-spacing:-0.02em; }
.hero3 h1 .accent { color: var(--brand-primary); }
.hero3 p.lead { color: var(--sub); margin-top:18px; max-width:520px; }
.hero3-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:28px; }
.hero3-cred {
  display:flex; flex-wrap:wrap; align-items:center; gap:10px 20px;
  margin-top:28px; padding-top:20px; border-top:1px solid var(--border);
  color: var(--sub); font-size:0.9rem;
}
.hero3-cred .dot { width:5px; height:5px; border-radius:50%; background:var(--gold); }
.hero3 .btn-secondary { color: var(--brand-primary); border-color: var(--brand-primary); }
.hero3 .btn-secondary:hover { background: var(--brand-primary); color:#fff; }

.hero3-media { position: relative; }
.hero3-media img {
  width:100%; border-radius: var(--radius-xl); object-fit: cover;
  box-shadow: 0 24px 50px rgba(62,38,89,0.20); aspect-ratio: 4 / 3;
}
.hero3-media .ring { position:absolute; inset:14px; border:1.5px solid rgba(212,175,95,0.6); border-radius:calc(var(--radius-xl) - 6px); pointer-events:none; }
.hero3-badge {
  position:absolute; left:16px; bottom:16px; max-width:300px;
  background:rgba(255,255,255,0.97); border-radius:var(--radius-lg); box-shadow:var(--shadow-lg);
  padding:14px 16px; display:flex; gap:12px; align-items:center;
}
.hero3-badge .hb-icon { flex:0 0 auto; width:42px; height:42px; border-radius:11px; background:var(--coral-soft); color:var(--brand-primary); display:grid; place-items:center; }
.hero3-badge .hb-icon svg { width:22px; height:22px; }
.hero3-badge strong { display:block; color:var(--text-heading); font-size:0.95rem; line-height:1.2; }
.hero3-badge span { font-size:0.8rem; color:var(--muted); }

@media (min-width: 900px) {
  .hero3-grid { grid-template-columns: 1fr 1.08fr; gap:52px; padding: 56px 0 60px; min-height: 600px; }
  .hero3 h1 { font-size: 3.7rem; }
  .hero3-media img { aspect-ratio: auto; height: 500px; }
}
@media (min-width: 1200px) {
  .hero3 h1 { font-size: 4.2rem; }
  .hero3-media img { height: 540px; }
}

/* ---- Doctor photo frame ---- */
.doctor-photo { position: relative; }
.doctor-photo img {
  width:100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}
.doctor-photo .ring { position:absolute; inset:14px; border:1.5px solid rgba(212,175,95,0.5); border-radius:calc(var(--radius-xl) - 6px); pointer-events:none; }
.doctor-photo .dp-badge {
  position:absolute; right:-10px; bottom:20px; background:#fff; box-shadow:var(--shadow-lg);
  border-radius:var(--radius-md); padding:10px 16px; text-align:center;
}
.doctor-photo .dp-badge strong { display:block; color:var(--brand-primary); font-family:var(--font-heading); font-size:1.05rem; }
.doctor-photo .dp-badge span { font-size:0.74rem; color:var(--muted); letter-spacing:0.04em; }
@media (max-width: 520px){ .doctor-photo .dp-badge { right: 12px; } }

/* ---- Typewriter effect on the hero "Opening July 2026" eyebrow ---- */
.hero3 .eyebrow { color: var(--coral-ink); min-height: 1.2em; }
.eyebrow-rule.typing::after { opacity: 0; }
.tw-cursor {
  display: inline-block; width: 2px; height: 1em; margin-left: 3px;
  background: var(--coral-ink); vertical-align: -0.12em;
  animation: tw-blink 0.9s steps(1) infinite;
}
.tw-cursor.done { animation: none; opacity: 0; }
@keyframes tw-blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .tw-cursor { display: none; } }

/* ============================================================
   v1.6 — header phone pill, social icons, home FAQ
   ============================================================ */

/* Header sales number (plain: phone icon + number, clickable + copyable) */
.nav-phone { padding: 8px 6px; transition: color var(--trans-fast); }
.nav-phone:hover { color: var(--brand-deep); text-decoration: none; }
.nav-phone svg { color: var(--brand-primary); }

/* Social media icons (footer) */
.social { display: flex; gap: 12px; margin-top: 20px; }
.social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #EFE7F4;
  border: 1px solid rgba(255,255,255,0.14);
  transition: background var(--trans-fast), transform var(--trans-fast), color var(--trans-fast);
}
.social a:hover { background: var(--brand-accent); color: #3E2659; transform: translateY(-2px); text-decoration: none; }
.social a svg { width: 20px; height: 20px; }

/* Home FAQ */
.faq-wrap { max-width: 780px; margin: 0 auto; }
