/* ============================================================
   Dr. Sriya Babu, DPM, FACFAS — Foot & Ankle Surgeon
   "The Clinician's Editorial" — navy + ivory + aqua + brass
   Palette elevated from the real Arthritis & Sports brand
   (navy #073452, aqua #69d7f0, steel #2b5672).
   ============================================================ */

:root {
  /* Paper / neutrals */
  --paper:        #F5F1E8;   /* warm ivory ground */
  --paper-soft:   #EEE7D9;   /* deeper ivory band */
  --card:         #FBF8F1;   /* card surface */
  --card-line:    rgba(7, 52, 82, 0.12);

  /* Navy family (their real brand navy is #073452) */
  --navy:         #073452;
  --navy-700:     #0A2E48;
  --navy-800:     #072339;
  --navy-900:     #05192A;
  --ink:          #0B2436;   /* body text on ivory */
  --ink-soft:     #3A5064;   /* muted body text */
  --steel:        #2B5672;

  /* Aqua accent (their cyan, refined) */
  --aqua:         #4FB8D4;
  --aqua-bright:  #79D7EC;
  --aqua-soft:    #CBE9F0;
  --aqua-glow:    rgba(105, 215, 240, 0.55);

  /* Brass — premium accent + stars (used sparingly) */
  --brass:        #BF9A57;
  --brass-bright: #D9BC85;

  --white:        #ffffff;

  /* Type */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body:    'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Metrics */
  --nav-h: 76px;
  --wrap: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 0.72, 0.2, 1);

  --shadow-sm: 0 2px 10px rgba(7, 35, 57, 0.06);
  --shadow-md: 0 18px 45px -22px rgba(7, 35, 57, 0.35);
  --shadow-lg: 0 40px 90px -40px rgba(5, 25, 42, 0.55);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--navy); color: var(--paper); }

/* Paper grain overlay for tactile depth */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }
.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); z-index: 2; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* Eyebrow with precision crosshair mark */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 1.25rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--brass);
  position: relative;
}
.eyebrow--light { color: var(--aqua-bright); }
.eyebrow--center { justify-content: center; }

/* Headings */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.06; letter-spacing: -0.015em; margin: 0; }
.h2 {
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3.4rem);
  color: var(--navy);
  font-optical-sizing: auto;
}
.h2 em { font-style: italic; color: var(--steel); }
.lead { font-size: clamp(1.06rem, 1rem + 0.4vw, 1.3rem); color: var(--ink-soft); max-width: 60ch; line-height: 1.65; }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--navy); --_fg: var(--paper);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  background: var(--_bg); color: var(--_fg);
  border: 1px solid transparent; border-radius: 100px;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary { background: var(--navy); color: var(--paper); box-shadow: 0 14px 30px -16px rgba(7,52,82,0.7); }
.btn--primary:hover { background: var(--navy-800); }
.btn--accent { background: var(--aqua); color: var(--navy-900); }
.btn--accent:hover { background: var(--aqua-bright); }
.btn--ghost { background: transparent; color: var(--navy); border-color: rgba(7,52,82,0.28); }
.btn--ghost:hover { background: rgba(7,52,82,0.05); border-color: var(--navy); }
.btn--on-navy { background: var(--aqua); color: var(--navy-900); }
.btn--on-navy.btn--ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.35); }
.btn--on-navy.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--aqua-bright); color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.32rem; letter-spacing: -0.01em; color: var(--paper); transition: color 0.4s var(--ease); }
.brand__sub { font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: var(--aqua-bright); margin-top: 0.42rem; transition: color 0.4s var(--ease); }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: 0.9rem; font-weight: 500; color: rgba(245,241,232,0.82); letter-spacing: 0.01em; position: relative; transition: color 0.25s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px; background: var(--aqua-bright); transition: width 0.3s var(--ease); }
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav .btn { padding: 0.66rem 1.25rem; font-size: 0.85rem; }

/* Scrolled state — ivory bar, dark text */
.nav.scrolled { background: rgba(245,241,232,0.9); backdrop-filter: blur(14px) saturate(1.1); box-shadow: 0 1px 0 rgba(7,52,82,0.08), 0 10px 30px -20px rgba(7,35,57,0.5); }
.nav.scrolled .brand__name { color: var(--navy); }
.nav.scrolled .brand__sub { color: var(--steel); }
.nav.scrolled .nav__links a { color: var(--ink-soft); }
.nav.scrolled .nav__links a:hover { color: var(--navy); }
.nav.scrolled .nav__links a::after { background: var(--brass); }
.nav.scrolled .btn--primary { background: var(--navy); color: var(--paper); }

/* Hamburger */
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 0; }
.nav__toggle span { width: 24px; height: 2px; background: var(--paper); transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), background 0.4s var(--ease); }
.nav.scrolled .nav__toggle span { background: var(--navy); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — hidden by default (display:none, not just [hidden]) */
.mobile-menu { display: none; position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 55; background: var(--navy-800); padding: 1.4rem clamp(1.15rem,4vw,2.5rem) 2rem; flex-direction: column; gap: 0.3rem; box-shadow: var(--shadow-lg); border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu.open { display: flex; animation: menuIn 0.4s var(--ease); }
.mobile-menu a { color: rgba(245,241,232,0.9); font-size: 1.1rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-weight: 500; }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 1rem; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex; align-items: center;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(79,184,212,0.28) 0%, rgba(79,184,212,0) 46%),
    radial-gradient(90% 80% at 12% 90%, rgba(11,58,90,0.55) 0%, rgba(11,58,90,0) 55%),
    linear-gradient(158deg, var(--navy-800) 0%, var(--navy-900) 62%, #041521 100%);
  color: var(--paper);
  overflow: hidden;
  z-index: 2;
}
/* faint hairline grid in the navy field */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(120% 100% at 70% 30%, #000 20%, transparent 78%);
          mask-image: radial-gradient(120% 100% at 70% 30%, #000 20%, transparent 78%);
}

.hero__inner {
  position: relative; z-index: 3;
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
  padding-block: clamp(1.5rem, 4vh, 3rem);
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__copy { max-width: 40rem; min-width: 0; }
.hero h1, .hero__sub { overflow-wrap: break-word; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--aqua-bright); margin-bottom: 1.4rem;
}
.hero__eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--aqua); }

.hero h1 {
  font-size: clamp(2.35rem, 1.2rem + 4.4vw, 4.5rem);
  line-height: 1.02; letter-spacing: -0.022em;
  color: #fff; font-optical-sizing: auto;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--aqua-bright); }
.hero__sub {
  margin: 1.5rem 0 0; max-width: 34rem;
  font-size: clamp(1.02rem, 0.98rem + 0.35vw, 1.2rem);
  color: rgba(233,240,244,0.82); line-height: 1.62;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

.hero__proof { display: flex; align-items: center; flex-wrap: wrap; gap: 0.55rem 0.9rem; margin-top: 1.9rem; }
.stars { display: inline-flex; gap: 3px; color: var(--brass-bright); }
.stars svg { width: 18px; height: 18px; }
.hero__proof-txt { font-size: 0.9rem; color: rgba(233,240,244,0.78); min-width: 0; }
.hero__proof-txt b { color: #fff; font-weight: 600; }

/* Hero visual — portrait on navy with rings + floating seal */
.hero__visual { position: relative; justify-self: center; align-self: center; width: 100%; max-width: 460px; }
.hero__rings { position: absolute; inset: -6% -4% 0 -4%; z-index: 1; display: grid; place-items: center; pointer-events: none; }
.hero__rings svg { width: 108%; height: auto; opacity: 0.55; }
.portrait-plate {
  position: relative; z-index: 2;
  aspect-ratio: 1000 / 1180;
  border-radius: 250px 250px 26px 26px;
  background:
    radial-gradient(80% 60% at 50% 88%, rgba(79,184,212,0.35), rgba(79,184,212,0) 70%),
    linear-gradient(180deg, rgba(203,233,240,0.16), rgba(7,52,82,0.05));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), var(--shadow-lg);
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.portrait-plate img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 8%; filter: saturate(1.02) contrast(1.02); }

.seal {
  position: absolute; z-index: 4; left: -7%; bottom: 12%;
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: rgba(251,248,241,0.97); color: var(--navy);
  border-radius: 14px; box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.seal__badge { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--aqua-bright); display: grid; place-items: center; flex-shrink: 0; }
.seal__badge svg { width: 22px; height: 22px; }
.seal__t1 { font-family: var(--font-display); font-size: 0.98rem; line-height: 1.1; color: var(--navy); }
.seal__t2 { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); margin-top: 2px; }

.seal--top { left: auto; right: -6%; bottom: auto; top: 8%; padding: 0.7rem 0.95rem; }
.seal--top .seal__t1 { font-size: 0.86rem; }

/* Scroll cue */
.hero__cue { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(233,240,244,0.5); font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; }
.hero__cue span { width: 1px; height: 34px; background: linear-gradient(var(--aqua), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ============================================================
   TRUST STRIP (navy band)
   ============================================================ */
.trust { background: var(--navy-900); color: var(--paper); position: relative; z-index: 2; padding-block: clamp(2.4rem, 4vw, 3.4rem); border-top: 1px solid rgba(255,255,255,0.06); }
.trust__inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.trust__logo { display: flex; flex-direction: column; gap: 0.6rem; }
.trust__logo small { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(233,240,244,0.55); }
.trust__logo img { height: 46px; width: auto; border-radius: 4px; }
.trust__facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust__fact { display: flex; flex-direction: column; gap: 0.35rem; padding-left: 1.1rem; border-left: 1px solid rgba(121,215,236,0.3); }
.trust__fact b { font-family: var(--font-display); font-size: 1.02rem; color: #fff; font-weight: 500; }
.trust__fact span { font-size: 0.8rem; color: rgba(233,240,244,0.62); }

/* ============================================================
   CARE / SERVICES
   ============================================================ */
.care { background: var(--paper); }
.care__head { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }
.care__head .h2 { max-width: 18ch; }

.care__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.9rem, 1.6vw, 1.3rem); }
.care-card {
  position: relative; background: var(--card); border: 1px solid var(--card-line);
  border-radius: var(--radius); padding: 1.7rem 1.6rem 1.8rem;
  overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.care-card::after { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--aqua), var(--brass)); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); }
.care-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(79,184,212,0.4); }
.care-card:hover::after { transform: scaleX(1); }
.care-card__num { font-family: var(--font-display); font-size: 0.9rem; color: var(--brass); letter-spacing: 0.05em; }
.care-card__icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(79,184,212,0.12); color: var(--steel); display: grid; place-items: center; margin: 0.4rem 0 1.1rem; transition: background 0.4s var(--ease), color 0.4s var(--ease); }
.care-card__icon svg { width: 24px; height: 24px; }
.care-card:hover .care-card__icon { background: var(--navy); color: var(--aqua-bright); }
.care-card h3 { font-size: 1.28rem; color: var(--navy); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.care-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.58; margin: 0; }

.care__note { margin-top: clamp(1.6rem, 3vw, 2.4rem); display: flex; align-items: center; gap: 1rem; padding: 1.3rem 1.6rem; background: var(--paper-soft); border-radius: var(--radius); border: 1px dashed rgba(7,52,82,0.2); }
.care__note svg { width: 26px; height: 26px; color: var(--brass); flex-shrink: 0; }
.care__note p { margin: 0; font-size: 0.94rem; color: var(--ink-soft); }
.care__note b { color: var(--navy); font-weight: 600; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--paper-soft); position: relative; overflow: hidden; }
.about__inner { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

.about__figure { position: relative; }
.about__portrait {
  position: relative; z-index: 2; border-radius: 20px; overflow: hidden;
  background: linear-gradient(165deg, var(--navy-700), var(--navy-900));
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(7,52,82,0.15);
  display: flex; align-items: flex-end; justify-content: center;
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 6%; }
.about__figtag { position: absolute; z-index: 3; right: -4%; bottom: 8%; background: var(--navy); color: var(--paper); padding: 0.9rem 1.15rem; border-radius: 12px; box-shadow: var(--shadow-md); }
.about__figtag b { display: block; font-family: var(--font-display); font-size: 1.4rem; line-height: 1; color: var(--aqua-bright); }
.about__figtag span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(233,240,244,0.7); }
.about__mark { position: absolute; left: -12%; top: -8%; width: 55%; z-index: 1; opacity: 0.5; color: var(--aqua); }

.about__body .h2 { margin-bottom: 1.3rem; }
.about__body p { color: var(--ink-soft); max-width: 56ch; margin: 0 0 1.1rem; }
.about__body p strong { color: var(--navy); font-weight: 600; }

.creds { margin-top: 2rem; display: grid; gap: 0; border-top: 1px solid var(--card-line); }
.cred { display: grid; grid-template-columns: 130px 1fr; gap: 1.2rem; padding: 1rem 0; border-bottom: 1px solid var(--card-line); align-items: baseline; }
.cred__year { font-family: var(--font-display); font-size: 0.92rem; color: var(--brass); letter-spacing: 0.04em; }
.cred__label { font-weight: 600; color: var(--navy); font-size: 0.98rem; }
.cred__label span { display: block; font-weight: 400; font-size: 0.86rem; color: var(--ink-soft); margin-top: 2px; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats { background: var(--navy); color: var(--paper); position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; opacity: 0.5; background: radial-gradient(70% 120% at 85% 0%, rgba(79,184,212,0.25), transparent 60%); }
.stats__grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 3vw, 2.5rem); text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.stat b { font-family: var(--font-display); font-size: clamp(2.6rem, 1.8rem + 2.6vw, 3.9rem); line-height: 1; color: #fff; font-weight: 400; }
.stat b em { font-style: normal; color: var(--aqua-bright); }
.stat span { font-size: 0.82rem; letter-spacing: 0.06em; color: rgba(233,240,244,0.72); max-width: 22ch; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.1); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--paper); }
.reviews__head { text-align: center; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); display: flex; flex-direction: column; align-items: center; }
.reviews__rating { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1rem; font-size: 0.9rem; color: var(--ink-soft); }
.reviews__rating b { color: var(--navy); font-family: var(--font-display); font-size: 1.15rem; }

.reviews__grid { columns: 3; column-gap: clamp(0.9rem, 1.6vw, 1.3rem); }
.review {
  break-inside: avoid; margin-bottom: clamp(0.9rem, 1.6vw, 1.3rem);
  background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review .stars { margin-bottom: 0.85rem; }
.review .stars svg { width: 15px; height: 15px; }
.review p { margin: 0 0 1.1rem; color: var(--ink); font-size: 0.96rem; line-height: 1.6; }
.review__by { display: flex; align-items: center; gap: 0.7rem; }
.review__ava { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(150deg, var(--steel), var(--navy)); color: var(--paper); display: grid; place-items: center; font-family: var(--font-display); font-size: 0.95rem; flex-shrink: 0; }
.review__name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.review__src { font-size: 0.75rem; color: var(--ink-soft); display: flex; align-items: center; gap: 0.3rem; }

/* ============================================================
   VISIT / LOCATIONS
   ============================================================ */
.visit { background: var(--paper-soft); }
.visit__head { text-align: center; max-width: 46rem; margin: 0 auto clamp(2.4rem,4vw,3.4rem); display: flex; flex-direction: column; align-items: center; }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.1rem, 2vw, 1.6rem); }
.loc {
  background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius);
  padding: 2rem 1.9rem; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.loc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(79,184,212,0.4); }
.loc__pin { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); margin-bottom: 0.9rem; }
.loc__pin svg { width: 16px; height: 16px; color: var(--aqua); }
.loc h3 { font-size: 1.55rem; color: var(--navy); margin-bottom: 0.9rem; }
.loc__row { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--ink-soft); font-size: 0.94rem; padding: 0.5rem 0; }
.loc__row svg { width: 18px; height: 18px; color: var(--brass); flex-shrink: 0; margin-top: 3px; }
.loc__row a:hover { color: var(--navy); }
.loc__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; padding-top: 1.3rem; border-top: 1px solid var(--card-line); }
.loc__actions .btn { padding: 0.7rem 1.15rem; font-size: 0.84rem; }
.visit__note { text-align: center; margin-top: 1.8rem; font-size: 0.9rem; color: var(--ink-soft); }
.visit__note b { color: var(--navy); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta {
  background: linear-gradient(158deg, var(--navy-800), var(--navy-900));
  color: var(--paper); text-align: center; position: relative; overflow: hidden;
}
.cta::before { content: ""; position: absolute; inset: 0; opacity: 0.9; background: radial-gradient(60% 90% at 50% 0%, rgba(79,184,212,0.28), transparent 60%); pointer-events: none; }
.cta__inner { position: relative; z-index: 2; max-width: 44rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.cta .h2 { color: #fff; margin-bottom: 1.1rem; }
.cta .h2 em { color: var(--aqua-bright); }
.cta p { color: rgba(233,240,244,0.82); max-width: 40ch; margin: 0 0 2rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #041420; color: rgba(233,240,244,0.7); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; position: relative; z-index: 2; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__brand .brand__name { color: #fff; font-size: 1.5rem; }
.footer__brand .brand__sub { color: var(--aqua-bright); }
.footer__brand p { margin: 1rem 0 1.3rem; font-size: 0.9rem; max-width: 34ch; line-height: 1.6; }
.footer__logo img { height: 40px; width: auto; border-radius: 4px; opacity: 0.95; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(233,240,244,0.5); margin: 0 0 1.1rem; }
.footer__col a, .footer__col p { display: block; font-size: 0.9rem; color: rgba(233,240,244,0.78); margin-bottom: 0.65rem; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--aqua-bright); }
.footer__social { display: flex; gap: 0.7rem; margin-top: 0.3rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); display: grid; place-items: center; margin: 0; }
.footer__social a:hover { background: var(--aqua); border-color: var(--aqua); color: var(--navy-900); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; padding-top: 1.8rem; font-size: 0.8rem; color: rgba(233,240,244,0.5); }
.footer__bottom a { color: rgba(233,240,244,0.7); }
.footer__bottom a:hover { color: var(--aqua-bright); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.hero__copy > * { opacity: 0; animation: rise 0.85s var(--ease) forwards; }
.hero__copy > *:nth-child(1) { animation-delay: 0.08s; }
.hero__copy > *:nth-child(2) { animation-delay: 0.18s; }
.hero__copy > *:nth-child(3) { animation-delay: 0.28s; }
.hero__copy > *:nth-child(4) { animation-delay: 0.38s; }
.hero__copy > *:nth-child(5) { animation-delay: 0.48s; }
.hero__visual { opacity: 0; animation: rise 1s var(--ease) 0.35s forwards; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__copy > *, .hero__visual { opacity: 1 !important; animation: none !important; }
  .hero__cue span { animation: none; }
  .btn:hover, .care-card:hover, .review:hover, .loc:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .care__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { columns: 2; }
  .trust__facts { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 1.5rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.2rem 1.5rem; }
  .stat:nth-child(3), .stat:nth-child(1) { border-left: 0; }
}

@media (max-width: 860px) {
  :root { --nav-h: 66px; }
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }

  .hero { align-items: flex-start; }
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 2rem; padding-top: clamp(1.4rem, 4vh, 2.5rem); }
  .hero__copy { max-width: 100%; order: 1; min-width: 0; }
  .hero__visual { min-width: 0; }
  .hero__visual { order: 2; max-width: 300px; margin-bottom: 1rem; }
  .hero__cue { display: none; }
  .seal { left: 0; padding: 0.6rem 0.85rem; }
  .seal--top { right: 0; left: auto; }
  .seal__t1 { font-size: 0.84rem; }
  .seal__t2 { font-size: 0.58rem; }

  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__figure { max-width: 360px; margin-inline: auto; }
  .cred { grid-template-columns: 96px 1fr; gap: 0.9rem; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .care__grid { grid-template-columns: 1fr; }
  .reviews__grid { columns: 1; }
  .care__head { grid-template-columns: 1fr; gap: 1.2rem; }
  .visit__grid { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: 1fr; text-align: left; }
  .trust__facts { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .hero__cta { gap: 0.6rem; flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__eyebrow { font-size: 0.6rem; letter-spacing: 0.13em; margin-bottom: 1.1rem; }
  .hero__eyebrow::before { width: 22px; }
  .hero__proof-txt { font-size: 0.82rem; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 380px) {
  .trust__facts, .stats__grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.4rem; }
}
