/* ============================================================
   OPHTHALMOLOGY & CATARACT SURGEONS OF TEXAS
   Dr. Nisha Shah MD — Naval Precision palette
   style.css  ·  eyedrshah.shijilkumar.com
   ============================================================ */

:root {
  /* BRAND WORLD: Navy service + surgical precision + warm concierge */
  --navy:        #0F2644;   /* deep cobalt authority — USN background */
  --navy-2:      #1A3558;   /* mid cobalt */
  --cobalt:      #204E88;   /* brighter blue for hover/interactive */
  --cream:       #F6F0E6;   /* warm cream — patient-friendly warmth */
  --cream-2:     #EBE2D0;   /* deeper cream for panels */
  --cream-soft:  #FAF6EF;   /* lightest tint */
  --ink:         #0B1829;   /* near-black */
  --ink-2:       #1B2C3E;
  --gold:        #C8A640;   /* signature gold — prestige accent */
  --gold-2:      #DFBE62;
  --gold-soft:   #EDD898;
  --muted:       #4E617A;   /* body text on light */
  --muted-2:     #7A8E9E;
  --line:        rgba(15,38,68,.14);
  --line-2:      rgba(15,38,68,.06);

  /* structural aliases → base cascade works */
  --paper:       var(--cream);
  --paper-2:     var(--cream-2);
  --paper-soft:  var(--cream-soft);
  --accent:      var(--gold);
  --accent-2:    var(--gold-2);
  --accent-soft: var(--gold-soft);
  --spot:        var(--cobalt);

  /* type */
  --f-display: "Fraunces", "Georgia", serif;
  --f-body:    "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* scale */
  --container:        1320px;
  --container-narrow: 1040px;
  --gutter:     clamp(20px, 4vw, 56px);
  --ease:       cubic-bezier(.22, 1, .36, 1);
  --shadow-soft: 0 1px 2px rgba(0,0,0,.04), 0 12px 32px -16px rgba(0,0,0,.12);
  --shadow-lift: 0 2px 4px rgba(0,0,0,.06), 0 24px 48px -20px rgba(0,0,0,.18);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
*::selection { background: var(--navy); color: var(--cream); }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; max-width: 100vw; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px; line-height: 1.65; font-weight: 400;
  color: var(--ink); background: var(--cream-soft);
  overflow-x: hidden; width: 100%; max-width: 100vw;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
section, header, footer { max-width: 100vw; overflow-x: clip; position: relative; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .35s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--navy); }

/* ---- SIGNATURE: film grain ---- */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 200;
  opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display); font-weight: 400;
  letter-spacing: -.015em; line-height: 1.08; color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
p  { color: var(--muted); }
em, .italic { font-style: italic; font-family: var(--f-display); }
.serif { font-family: var(--f-display); font-weight: 400; }

.eyebrow {
  font-family: var(--f-body); text-transform: uppercase;
  letter-spacing: .4em; font-size: 11px; font-weight: 500;
  color: var(--muted); display: inline-block;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: var(--gold); margin-right: 14px; vertical-align: middle;
}
.eyebrow--light { color: rgba(246,240,230,.64); }
.eyebrow--light::before { background: var(--gold-2); }

.label-mono {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2);
}

/* ---- LAYOUT ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 11vw, 140px) 0; }
.section--navy { background: var(--navy); color: var(--cream); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--cream); }
.section--navy p { color: rgba(246,240,230,.72); }
.section--navy .eyebrow { color: var(--gold-2); }
.section--navy .eyebrow::before { background: var(--gold-2); }
.section--cream2 { background: var(--cream-2); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }
.section--ink p { color: rgba(246,240,230,.72); }
.grid { display: grid; gap: clamp(24px, 4vw, 56px); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 32px; border: 1.5px solid var(--navy);
  background: var(--navy); color: var(--cream);
  transition: all .35s var(--ease); cursor: pointer;
}
.btn:hover { background: transparent; color: var(--navy); opacity: 1; }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--cream); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--gold:hover { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline-light { background: transparent; border-color: rgba(246,240,230,.4); color: var(--cream); }
.btn--outline-light:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); opacity: 1; }

/* ---- ANNOUNCE BAR ---- */
.announce {
  background: var(--navy); text-align: center; padding: 11px 20px;
  font-size: 10.5px; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(246,240,230,.75); font-weight: 400;
}
.announce span { color: var(--gold-2); }
.announce a { color: var(--gold-2); opacity: 1; }
.announce a:hover { text-decoration: underline; }

/* ---- STICKY NAV ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 24px; padding: 18px var(--gutter);
  background: color-mix(in srgb, var(--cream-soft) 94%, transparent);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.scrolled { padding-top: 12px; padding-bottom: 12px; box-shadow: 0 2px 20px rgba(15,38,68,.08); }
.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name { font-family: var(--f-display); font-size: 1.15rem; letter-spacing: -.01em; color: var(--navy); line-height: 1.1; }
.nav-logo-sub { font-family: var(--f-mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); }
.nav-links { display: flex; gap: 28px; justify-self: center; list-style: none;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; }
.nav-links a { color: var(--navy); }
.nav-links a:hover { color: var(--gold); opacity: 1; }
.nav-cta { justify-self: end; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 22px; height: 1.5px; background: var(--navy); transition: .3s var(--ease); }

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  padding: clamp(72px, 13vh, 160px) 0 clamp(56px, 9vw, 120px);
  position: relative; overflow: hidden;
}
/* subtle topographic overlay */
.hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(32,78,136,.3) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(200,166,64,.06) 0%, transparent 60%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-meta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em;
  color: rgba(246,240,230,.55); margin-bottom: 32px;
}
.hero-meta-row .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); display: inline-block; }
.hero-title { margin-bottom: 24px; color: var(--cream) !important; }
.hero-title em { color: var(--gold-2); font-style: italic; }
.hero-tag { font-size: clamp(1rem, 1.6vw, 1.2rem); color: rgba(246,240,230,.72); max-width: 52ch; margin-bottom: 40px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 40px);
  padding-top: 40px; border-top: 1px solid rgba(246,240,230,.14);
}
.hero-trust-item { display: flex; flex-direction: column; gap: 4px; }
.hero-trust-item .trust-label { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: rgba(246,240,230,.45); }
.hero-trust-item .trust-val { font-family: var(--f-display); font-size: 1.15rem; color: var(--cream); }

/* ---- CREDENTIAL STRIP ---- */
.cred-strip {
  background: var(--cream-2); border-bottom: 1px solid var(--line);
  padding: 20px 0; overflow: hidden;
}
.cred-strip-inner {
  display: flex; gap: 56px; align-items: center; justify-content: center;
  flex-wrap: wrap; padding: 0 var(--gutter);
}
.cred-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); white-space: nowrap;
}
.cred-item .cred-icon { width: 14px; height: 14px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ---- MARQUEE / TICKER ---- */
.marquee-wrap { background: var(--navy); padding: 14px 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 64px; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(246,240,230,.55); white-space: nowrap;
  display: flex; align-items: center; gap: 32px;
}
.marquee-item::after { content: "·"; color: var(--gold-2); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---- STAT BAR ---- */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.stat-cell {
  background: var(--cream-soft); padding: clamp(28px, 4vw, 48px) clamp(16px, 2vw, 32px);
  display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center;
}
.stat-cell .stat-num {
  font-family: var(--f-display); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400; color: var(--navy); line-height: 1;
}
.stat-cell .stat-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); }

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.service-card {
  background: var(--cream-soft); padding: clamp(28px, 3.5vw, 48px) clamp(20px, 2.5vw, 36px);
  display: flex; flex-direction: column; gap: 14px;
  transition: background .35s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.service-card:hover { background: var(--cream-2); }
.service-card:hover::after { transform: scaleX(1); }
.service-card-num { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.service-card h3 { color: var(--navy); line-height: 1.15; }
.service-card p { font-size: 14px; line-height: 1.6; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  color: var(--navy); margin-top: auto;
}
.service-card-link::after { content: "→"; transition: transform .3s var(--ease); }
.service-card:hover .service-card-link::after { transform: translateX(5px); }

/* ---- STORY SPREAD ---- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 100px); align-items: start; }
.story-photo-wrap {
  position: relative;
}
.story-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  filter: contrast(1.04) saturate(.96);
}
.story-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); padding: 24px 28px;
  border: 4px solid var(--cream-soft);
}
.story-badge .badge-num { font-family: var(--f-display); font-size: 2.4rem; color: var(--cream); line-height: 1; }
.story-badge .badge-label { font-family: var(--f-mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(246,240,230,.55); margin-top: 4px; }
.story-body { display: flex; flex-direction: column; gap: 24px; padding-top: 16px; }
.story-body h2 { color: var(--navy); }
.story-body p { font-size: 15.5px; line-height: 1.72; }
.credential-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.credential-item { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--muted); }
.credential-item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ---- NAVY DIFFERENTIATOR BAND ---- */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }
.diff-card { padding: clamp(24px, 3vw, 40px); border: 1px solid rgba(246,240,230,.1); }
.diff-card:hover { border-color: rgba(200,166,64,.3); }
.diff-card .diff-num { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 16px; }
.diff-card h3 { color: var(--cream); font-size: clamp(1.25rem, 2vw, 1.7rem); margin-bottom: 12px; }
.diff-card p { font-size: 14px; }

/* ---- PRESS BADGES ---- */
.press-row {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 48px);
  align-items: center; justify-content: center;
}
.press-badge {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.5rem); color: var(--muted);
  opacity: .65; transition: opacity .3s var(--ease);
  text-align: center; line-height: 1.1;
}
.press-badge span { display: block; font-family: var(--f-mono); font-style: normal; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }
.press-badge:hover { opacity: 1; }

/* ---- REVIEWS ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }
.review-card {
  background: var(--cream-soft); padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .35s var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-lift); }
.review-stars { display: flex; gap: 3px; }
.review-star { width: 12px; height: 12px; background: var(--gold); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.review-text { font-size: 14.5px; line-height: 1.65; color: var(--muted); font-style: italic; font-family: var(--f-display); }
.review-text::before { content: "\201C"; }
.review-text::after { content: "\201D"; }
.review-author { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.review-source { font-size: 11px; color: var(--muted-2); }

/* ---- GOLD CTA BAND ---- */
.cta-band {
  background: var(--gold); padding: clamp(48px, 7vw, 88px) 0;
  text-align: center;
}
.cta-band h2 { color: var(--navy); margin-bottom: 16px; }
.cta-band p { color: rgba(11,24,41,.65); max-width: 52ch; margin: 0 auto 32px; }
.cta-band .btn { border-color: var(--navy); background: var(--navy); color: var(--cream); }
.cta-band .btn:hover { background: transparent; color: var(--navy); }
.cta-band .btn--ghost { border-color: rgba(11,24,41,.3); color: var(--navy); }
.cta-band .btn--ghost:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }

/* ---- PAGE HERO (interior pages) ---- */
.page-hero {
  background: var(--navy); padding: clamp(56px, 10vh, 120px) 0 clamp(40px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.page-hero h1 { color: var(--cream) !important; }
.page-hero .page-hero-tag { font-size: clamp(.95rem, 1.5vw, 1.15rem); color: rgba(246,240,230,.68); max-width: 56ch; margin-top: 16px; }

/* ---- SERVICE DEEP BLOCKS ---- */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: start; padding: clamp(56px, 8vw, 100px) 0; border-bottom: 1px solid var(--line); }
.svc-block:last-child { border-bottom: none; }
.svc-block.reverse { direction: rtl; }
.svc-block.reverse > * { direction: ltr; }
.svc-photo { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.svc-content { display: flex; flex-direction: column; gap: 18px; }
.svc-content h2 { color: var(--navy); }
.svc-content p { font-size: 15px; line-height: 1.72; }
.svc-features { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.svc-feature { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--muted); }
.svc-feature::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15px; font-weight: 500; color: var(--navy);
  background: var(--cream-soft); cursor: pointer;
  transition: background .25s var(--ease);
}
.faq-q:hover { background: var(--cream-2); }
.faq-q .faq-arrow { font-size: 18px; color: var(--gold); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 4px 24px 20px; font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--line); background: var(--cream-soft);
  padding: 13px 16px; font-family: var(--f-body); font-size: 14.5px; color: var(--ink);
  outline: none; transition: border-color .25s var(--ease);
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--navy); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field.full { grid-column: 1 / -1; }
.contact-info { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.contact-detail { display: flex; flex-direction: column; gap: 4px; }
.contact-detail .detail-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); }
.contact-detail .detail-val { font-size: 15.5px; color: var(--navy); font-weight: 500; }
.contact-detail .detail-sub { font-size: 13.5px; color: var(--muted); }
.hours-table { border: 1px solid var(--line); }
.hours-row { display: flex; justify-content: space-between; padding: 10px 16px; border-bottom: 1px solid var(--line-2); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--muted); }
.hours-row .time { color: var(--navy); font-weight: 500; font-family: var(--f-mono); font-size: 13px; }

/* ---- FOOTER ---- */
.footer { background: var(--ink); color: var(--cream); padding: clamp(56px, 8vw, 100px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-name { font-family: var(--f-display); font-size: 1.2rem; color: var(--cream); letter-spacing: -.01em; }
.footer-brand-sub { font-family: var(--f-mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(246,240,230,.4); }
.footer p { font-size: 13.5px; color: rgba(246,240,230,.55); line-height: 1.7; }
.footer-col h4 { font-family: var(--f-mono); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: rgba(246,240,230,.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(246,240,230,.65); transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--gold-2); opacity: 1; }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(246,240,230,.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-credit { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .06em; color: rgba(246,240,230,.4); }
.footer-credit a { color: var(--gold-2); }
.footer-legal { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .04em; color: rgba(246,240,230,.3); }

/* ---- REVEAL SYSTEM ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in, .no-js .reveal, .reveal.reveal--shown { opacity: 1; transform: none; }
.reveal--up { transform: translateY(32px); }
.reveal--left { transform: translateX(-24px); }
.reveal--right { transform: translateX(24px); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- IMAGE FALLBACK ---- */
.img-fallback { display: flex; align-items: center; justify-content: center; background: var(--cream-2); border: 1px solid var(--line); min-height: 220px; }
.img-fallback-cap { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); padding: 24px; text-align: center; }

/* ---- UTILS ---- */
.center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 64px; }
.maxw-prose { max-width: 60ch; }
.gold-line { display: inline-block; width: 48px; height: 2px; background: var(--gold); vertical-align: middle; margin-right: 14px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .svc-block { grid-template-columns: 1fr; }
  .svc-block.reverse { direction: ltr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links.open {
    display: flex; position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; background: var(--cream-soft);
    padding: 32px var(--gutter); gap: 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(15,38,68,.1);
  }
  .nav-links.open a { font-size: 16px; color: var(--navy); }
  .nav-cta { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-badge { right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn + .btn { display: none; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cred-strip-inner { gap: 20px; justify-content: flex-start; }
  .hero-trust-row { gap: 20px; }
}
