/* ════════════════════════════════════════════════════════
   Dr Nicky Grant — main.css v3
   Mobile-first · Production-stable · Modern dark design
   ════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ── */
:root {
  /* Core palette */
  --bg:     #0A0908;
  --s1:     #141210;
  --s2:     #1A1816;
  --s3:     #222020;
  --t1:     #F2EDE4;
  --t2:     #9A9288;
  --t3:     #58544E;
  --gold:   #C49A68;
  --gold2:  #A07A48;
  --gold-lo: rgba(196,154,104,0.08);
  --gold-md: rgba(196,154,104,0.18);

  /* Borders */
  --hr:    rgba(255,255,255,0.07);
  --hr2:   rgba(255,255,255,0.13);

  /* Shadows */
  --sh-card: 0 4px 24px rgba(0,0,0,0.35);
  --sh-lift: 0 12px 40px rgba(0,0,0,0.55);

  /* Type */
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max: 1100px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);

  /* Fluid type scale */
  --t-xs:   clamp(0.65rem,  1.2vw,  0.72rem);
  --t-sm:   clamp(0.82rem,  1.6vw,  0.92rem);
  --t-base: clamp(0.93rem,  2vw,    1rem);
  --t-lg:   clamp(1.05rem,  2.4vw,  1.2rem);
  --t-xl:   clamp(1.25rem,  3vw,    1.55rem);
  --t-2xl:  clamp(1.65rem,  4vw,    2.1rem);
  --t-3xl:  clamp(2.1rem,   5vw,    2.9rem);
  --t-4xl:  clamp(2.6rem,   6.5vw,  4rem);
  --t-5xl:  clamp(3rem,     8vw,    5rem);
  --t-hero: clamp(3rem,     10vw,   6.5rem);

  /* Fluid spacing */
  --sp-xs:  clamp(0.5rem,  2vw, 1rem);
  --sp-sm:  clamp(0.75rem, 3vw, 1.5rem);
  --sp-md:  clamp(1.25rem, 4vw, 2.5rem);
  --sp-lg:  clamp(2rem,    5vw, 4rem);
  --sp-xl:  clamp(3rem,    7vw, 6rem);
  --sp-2xl: clamp(4rem,    9vw, 8rem);
  --sec:    clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 2.5rem);
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px; scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; text-size-adjust: 100%;
  hanging-punctuation: first last;
}
body {
  font-family: var(--fb); font-size: var(--t-base);
  background: var(--bg); color: var(--t1);
  line-height: 1.7; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

/* ── 3. ACCESSIBILITY ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gold); color: var(--bg);
  padding: 0.5rem 1rem; font-size: 0.85rem; font-weight: 500;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── 4. NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
#nav.solid {
  background: rgba(10,9,8,0.92);
  border-bottom: 1px solid var(--hr2);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px; padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.nav-logo {
  font-family: var(--fd); font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 400; letter-spacing: 0.05em; color: var(--t1);
  transition: opacity 0.2s; flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { opacity: 0.75; }

.nav-links {
  display: none; gap: 2rem; align-items: center;
}
.nav-links a {
  font-size: var(--t-xs); font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--t2);
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.on { color: var(--t1); }
.nav-links a:hover::after, .nav-links a.on::after { width: 100%; }

.nav-cta {
  display: none;
  font-size: var(--t-xs); font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(196,154,104,0.4);
  padding: 0.5rem 1.2rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.nav-burger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px; min-height: 44px; min-width: 44px;
  align-items: center; justify-content: center;
}
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--t1); transition: all 0.3s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

.mob-nav {
  display: flex; flex-direction: column;
  background: var(--s1); border-top: 1px solid var(--hr);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), border-color 0.3s;
}
.mob-nav.open { max-height: 420px; }
.mob-nav a {
  padding: clamp(0.85rem, 3vw, 1.1rem) clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--hr);
  font-size: var(--t-sm); color: var(--t2);
  letter-spacing: 0.06em; transition: color 0.2s, padding-left 0.2s;
}
.mob-nav a:last-child { color: var(--gold); border-bottom: none; }
.mob-nav a:hover { color: var(--t1); padding-left: clamp(1.3rem, 5vw, 2.9rem); }

@media (min-width: 760px) {
  .nav-links { display: flex; }
  .nav-cta   { display: block; }
  .nav-burger { display: none; }
  .mob-nav { display: none !important; }
}

/* ── 5. HERO ── */
.hero-wrap {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--hr); overflow: hidden;
}
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 12%;
  filter: grayscale(20%) contrast(1.08); opacity: 0.14;
}
.hero-gradient {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,9,8,0.97) 55%, rgba(10,9,8,0.88) 100%);
}
@media (min-width: 860px) {
  .hero-gradient {
    background: linear-gradient(105deg, rgba(10,9,8,0.98) 50%, rgba(10,9,8,0.42) 100%);
  }
  .hero-photo img { object-position: 65% 12%; }
}
.hero-body {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding: clamp(5.5rem, 18vw, 11rem) clamp(1rem, 5vw, 2.5rem) clamp(3rem, 8vw, 6rem);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: var(--t-xs); font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
  margin-bottom: clamp(1rem, 3vw, 1.75rem);
}
.hero-tag::before { content: ''; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero-h1 {
  font-family: var(--fd); font-size: var(--t-hero);
  font-weight: 500; line-height: 0.94; letter-spacing: -0.04em;
  color: var(--t1); margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.hero-h1 .italic { font-style: italic; color: var(--gold); font-weight: 400; }

.hero-desc {
  font-size: var(--t-base); color: var(--t2); font-weight: 300; line-height: 1.9;
  max-width: 500px; margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── 6. BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--fb); font-size: var(--t-xs); font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: clamp(0.75rem, 2.5vw, 1rem) clamp(1.25rem, 4vw, 2.25rem);
  min-height: 44px; white-space: nowrap; line-height: 1;
  cursor: pointer; transition: all 0.28s var(--ease);
  position: relative; overflow: hidden;
}
.btn-fill {
  background: var(--gold); color: var(--bg);
  border: 1px solid var(--gold);
}
.btn-fill::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15); opacity: 0;
  transition: opacity 0.25s;
}
.btn-fill:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,154,104,0.3); }
.btn-fill:active { transform: translateY(0); box-shadow: none; }
.btn-line {
  border: 1px solid var(--hr2); color: var(--t2);
  background: transparent;
}
.btn-line:hover { border-color: var(--t2); color: var(--t1); transform: translateY(-1px); }
.btn-line:active { transform: translateY(0); }

/* ── 7. STATS STRIP ── */
.stats { border-bottom: 1px solid var(--hr); }
.stats-row { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); }
.stat {
  padding: clamp(1rem, 4vw, 2.1rem) clamp(0.75rem, 3vw, 1.5rem);
  text-align: center; border-right: 1px solid var(--hr); border-bottom: 1px solid var(--hr);
  transition: background 0.25s;
}
.stat:hover { background: var(--s2); }
.stat:nth-child(2n) { border-right: none; }
.stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
.stat-n {
  font-family: var(--fd); font-size: var(--t-4xl); font-weight: 500;
  color: var(--t1); line-height: 1; letter-spacing: -0.03em;
  display: block; margin-bottom: 0.4rem;
}
.stat-l { font-size: var(--t-xs); font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--t3); }
@media (min-width: 600px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: none; }
  .stat:nth-child(4) { border-right: none; }
  .stat:nth-child(2) { border-right: 1px solid var(--hr); }
}

/* ── 8. PROCESS BAR ── */
.process {
  background: var(--s1); border-bottom: 1px solid var(--hr);
  padding: var(--sp-md) clamp(1rem, 5vw, 2.5rem);
}
.process-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-direction: column; gap: var(--sp-sm);
}
.p-step { border-bottom: 1px solid var(--hr); padding-bottom: var(--sp-sm); }
.p-step:last-child { border-bottom: none; padding-bottom: 0; }
.p-num {
  font-family: var(--fd); font-size: var(--t-sm); color: var(--gold);
  display: block; margin-bottom: 0.35rem; letter-spacing: 0.08em; font-weight: 400;
}
.p-h { font-size: var(--t-sm); font-weight: 500; color: var(--t1); margin-bottom: 0.2rem; }
.p-d { font-size: var(--t-sm); color: var(--t2); font-weight: 300; line-height: 1.7; }
@media (min-width: 640px) {
  .process-inner { flex-direction: row; }
  .p-step {
    border-bottom: none; padding-bottom: 0; flex: 1;
    padding-right: 2rem; border-right: 1px solid var(--hr);
  }
  .p-step:last-child { border-right: none; padding-right: 0; }
}

/* ── 9. SECTIONS ── */
.section { padding: var(--sec); }
.section.alt { background: var(--s1); }
.wrap { max-width: var(--max); margin: 0 auto; }

.s-eye {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--t-xs); font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
  margin-bottom: clamp(0.6rem, 2vw, 0.9rem);
}
.s-eye::before { content: ''; width: 16px; height: 1px; background: var(--gold); }

.h2 {
  font-family: var(--fd); font-size: var(--t-3xl); font-weight: 500;
  line-height: 1.05; letter-spacing: -0.025em; color: var(--t1);
  margin-bottom: clamp(0.6rem, 2vw, 1rem);
}
.h2 em { font-style: italic; font-weight: 400; }

.s-lead { font-size: var(--t-base); color: var(--t2); font-weight: 300; line-height: 1.9; max-width: 580px; }

/* ── 10. SERVICE ROWS ── */
.svc-list { margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.svc-row {
  display: grid; grid-template-columns: 2.5rem 1fr 2rem;
  gap: clamp(0.75rem, 2vw, 1.5rem); align-items: start;
  padding: clamp(1.25rem, 3vw, 1.85rem) 0;
  border-bottom: 1px solid var(--hr);
  transition: background 0.25s, padding 0.25s, border-radius 0.25s;
  cursor: pointer; text-decoration: none; display: grid; color: inherit;
  border-radius: 4px;
}
.svc-row:first-child { border-top: 1px solid var(--hr); }
@media (hover: hover) {
  .svc-row:hover {
    background: var(--s2);
    padding-left: clamp(0.75rem, 2vw, 1.25rem);
    padding-right: clamp(0.75rem, 2vw, 1.25rem);
    margin: 0 clamp(-0.75rem, -2vw, -1.25rem);
  }
}
.svc-num { font-family: var(--fd); font-size: var(--t-sm); color: var(--gold); font-weight: 400; padding-top: 0.3rem; letter-spacing: 0.05em; }
.svc-h { font-family: var(--fd); font-size: var(--t-xl); font-weight: 500; color: var(--t1); letter-spacing: -0.015em; line-height: 1.1; margin-bottom: 0.45rem; }
.svc-p { font-size: var(--t-sm); font-weight: 300; color: var(--t2); line-height: 1.8; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.7rem; }
.svc-tag { font-size: clamp(0.58rem, 1.2vw, 0.65rem); font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.18rem 0.55rem; border: 1px solid var(--hr2); color: var(--t3); border-radius: 2px; }
.svc-arr { font-family: var(--fd); font-size: var(--t-xl); color: var(--gold); text-align: right; padding-top: 0.3rem; opacity: 0.4; transition: opacity 0.2s, transform 0.3s var(--ease); }
.svc-row:hover .svc-arr { opacity: 1; transform: translateX(4px); }

/* ── 11. WHY GRID ── */
.why-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--hr); margin-top: clamp(1.5rem, 4vw, 3rem); border-radius: 4px; overflow: hidden; }
.why-cell { padding: clamp(1.25rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 2.5rem); border-bottom: 1px solid var(--hr); transition: background 0.25s; }
.why-cell:last-child { border-bottom: none; }
.why-cell:hover { background: var(--s2); }
.why-h { font-family: var(--fd); font-size: var(--t-lg); font-weight: 500; color: var(--t1); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.why-p { font-size: var(--t-sm); font-weight: 300; color: var(--t2); line-height: 1.82; }
@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-cell:nth-child(odd) { border-right: 1px solid var(--hr); }
  .why-cell:nth-child(3), .why-cell:nth-child(4) { border-bottom: none; }
  .why-cell:nth-child(2) { border-bottom: 1px solid var(--hr); }
}

/* ── 12. BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--hr); margin-top: clamp(1.5rem, 4vw, 2.5rem); border-radius: 4px; overflow: hidden; }
.blog-card { padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem); border-bottom: 1px solid var(--hr); display: flex; flex-direction: column; transition: background 0.25s, box-shadow 0.25s; }
.blog-card:last-child { border-bottom: none; }
.blog-card:hover { background: var(--s2); }
.blog-glyph { font-family: var(--fd); font-size: var(--t-4xl); color: rgba(255,255,255,0.06); line-height: 1; display: block; margin-bottom: clamp(0.75rem, 2vw, 1.25rem); transition: color 0.3s; user-select: none; }
.blog-card:hover .blog-glyph { color: rgba(196,154,104,0.22); }
.blog-cat { font-size: var(--t-xs); font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.blog-card h3 { font-family: var(--fd); font-size: var(--t-lg); font-weight: 500; color: var(--t1); line-height: 1.3; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.blog-card p { font-size: var(--t-sm); color: var(--t2); line-height: 1.8; flex: 1; font-weight: 300; }
.blog-link { display: inline-block; margin-top: clamp(0.75rem, 2vw, 1.25rem); font-size: var(--t-xs); font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); transition: letter-spacing 0.3s var(--ease); }
.blog-link:hover { letter-spacing: 0.26em; }
.blog-link::after { content: ' →'; }
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-card { border-bottom: none; border-right: 1px solid var(--hr); }
  .blog-card:last-child { border-right: none; }
}

/* ── 13. TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--hr); margin-top: clamp(1.5rem, 4vw, 2.5rem); border-radius: 4px; overflow: hidden; }
.testi-card { padding: clamp(1.5rem, 4vw, 2.25rem); border-bottom: 1px solid var(--hr); display: flex; flex-direction: column; gap: 0.75rem; transition: background 0.25s; }
.testi-card:last-child { border-bottom: none; }
.testi-card:hover { background: var(--s2); }
.testi-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.1em; }
.testi-quote { font-family: var(--fd); font-size: var(--t-xl); font-weight: 400; color: var(--t1); line-height: 1.55; font-style: italic; margin: 0; }
.testi-author { display: flex; align-items: center; gap: 0.9rem; margin-top: 0.25rem; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-md); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 0.88rem; color: var(--gold); font-weight: 500; flex-shrink: 0; border: 1px solid rgba(196,154,104,0.25); }
.testi-name { font-size: var(--t-sm); font-weight: 400; color: var(--t1); }
.testi-role { font-size: var(--t-xs); color: var(--t2); font-weight: 300; }
@media (min-width: 760px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-card { border-bottom: none; border-right: 1px solid var(--hr); }
  .testi-card:last-child { border-right: none; }
}

/* ── 14. FAQ ── */
.faq-list { border-top: 1px solid var(--hr); margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.faq-item { border-bottom: 1px solid var(--hr); }
.faq-q {
  width: 100%; background: none; cursor: pointer;
  text-align: left; padding: clamp(1rem, 3vw, 1.4rem) 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1.5rem; font-family: var(--fb); font-size: var(--t-base); font-weight: 400;
  color: var(--t2); transition: color 0.2s; min-height: 44px;
}
.faq-q:hover, .faq-q.open { color: var(--t1); }
.faq-ico { font-size: 1.25rem; color: var(--gold); flex-shrink: 0; line-height: 1; font-weight: 300; margin-top: 0.1rem; transition: transform 0.3s var(--ease), color 0.2s; }
.faq-ico.open { transform: rotate(45deg); color: var(--t1); }
.faq-a { display: none; padding: 0 0 clamp(1rem, 3vw, 1.4rem); font-size: var(--t-sm); color: var(--t2); line-height: 1.9; max-width: 680px; font-weight: 300; }
.faq-a.open { display: block; }

/* ── 15. CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 4rem); margin-top: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.avail { display: inline-flex; align-items: center; gap: 0.6rem; border: 1px solid rgba(196,154,104,0.22); padding: 0.45rem 1rem; margin-bottom: clamp(0.75rem, 2vw, 1.25rem); font-size: var(--t-xs); font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); border-radius: 2px; }
.avail-dot { width: 5px; height: 5px; background: #5ed07a; border-radius: 50%; flex-shrink: 0; animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(94,208,122,0.4); } 50% { opacity:0.6; box-shadow: 0 0 0 4px rgba(94,208,122,0); } }
.contact-intro { font-size: var(--t-base); color: var(--t2); line-height: 1.85; margin-bottom: clamp(1rem, 3vw, 1.75rem); font-weight: 300; }
.c-row { display: flex; gap: 1rem; margin-bottom: 0.9rem; align-items: flex-start; }
.c-lbl { font-size: var(--t-xs); font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--t3); min-width: 5rem; padding-top: 0.1rem; flex-shrink: 0; }
.c-val { font-size: var(--t-sm); color: var(--t2); font-weight: 300; }
.c-val a { color: var(--t2); transition: color 0.2s; }
.c-val a:hover { color: var(--gold); }

/* ── 16. CONTACT FORM ── */
.form-shell { border: 1px solid var(--hr2); border-radius: 4px; overflow: hidden; }
.f-row { display: grid; grid-template-columns: 1fr; }
@media (min-width: 480px) { .f-row { grid-template-columns: 1fr 1fr; } }
.f {
  font-family: var(--fb); font-size: var(--t-sm); font-weight: 300;
  padding: clamp(0.75rem, 2.5vw, 1rem) clamp(0.75rem, 2.5vw, 1.1rem);
  background: transparent; border: none;
  border-bottom: 1px solid var(--hr2); color: var(--t1);
  outline: none; transition: border-color 0.25s, background 0.25s;
  width: 100%; -webkit-appearance: none; appearance: none; min-height: 44px;
}
.f::placeholder { color: var(--t3); }
.f:focus { border-bottom-color: var(--gold); background: rgba(196,154,104,0.04); }
.f-row .f:first-child { border-right: 1px solid var(--hr2); }
@media (max-width: 479px) { .f-row .f:first-child { border-right: none; } }
select.f { cursor: pointer; }
select.f option { background: var(--s1); color: var(--t1); }
textarea.f { min-height: 100px; resize: vertical; }
.f-sub {
  background: var(--gold); color: var(--bg); border: none;
  font-family: var(--fb); font-size: var(--t-xs); font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: clamp(0.9rem, 2.5vw, 1.1rem); width: 100%; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  min-height: 44px;
}
.f-sub:hover { background: var(--gold2); transform: translateY(-1px); }
.f-sub:active { transform: none; }
.f-note { font-size: var(--t-xs); color: var(--t3); padding: 0.75rem 1.1rem; border-top: 1px solid var(--hr); font-weight: 300; }

/* ── 17. TRUST BAR ── */
.trust { background: var(--s1); border-top: 1px solid var(--hr); padding: 0.85rem clamp(1rem, 4vw, 2.5rem); }
.trust-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; font-size: var(--t-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--t3); }
.ti { display: flex; align-items: center; gap: 0.45rem; }
.ti::before { content: ''; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ── 18. FOOTER ── */
footer { background: var(--s1); border-top: 1px solid var(--hr); padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem); }
.foot-cols { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); padding-bottom: clamp(1.5rem, 4vw, 3rem); border-bottom: 1px solid var(--hr); }
.fc h4 { font-size: var(--t-xs); font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--t3); margin-bottom: clamp(0.6rem, 2vw, 1rem); }
.fc p { font-size: var(--t-sm); color: var(--t2); line-height: 1.8; font-weight: 300; }
.fc a { display: block; font-size: var(--t-sm); font-weight: 300; color: var(--t2); margin-bottom: 0.45rem; transition: color 0.2s; }
.fc a:hover { color: var(--gold); }
.foot-bottom { max-width: var(--max); margin: clamp(1rem, 3vw, 2rem) auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: var(--t-xs); color: var(--t3); font-weight: 300; letter-spacing: 0.04em; }
@media (min-width: 680px) { .foot-cols { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* ── 19. PAGE HERO (landing pages) ── */
.page-hero {
  padding: clamp(6rem, 16vw, 10rem) clamp(1rem, 5vw, 2.5rem) clamp(3rem, 8vw, 5.5rem);
  border-bottom: 1px solid var(--hr);
}
.page-hero .h2 { font-size: var(--t-4xl); }
.lp-intro { font-size: var(--t-base); font-weight: 300; color: var(--t2); line-height: 1.9; max-width: 640px; }
.lp-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: clamp(1.25rem, 3vw, 2rem); }

/* ── 20. ANSWER CAPSULE (GEO extraction) ── */
.answer-capsule {
  background: var(--gold-lo); border-left: 3px solid var(--gold);
  padding: clamp(1rem, 3vw, 1.4rem) clamp(1rem, 3vw, 1.5rem);
  margin: clamp(1rem, 3vw, 1.75rem) 0; max-width: 660px; border-radius: 0 4px 4px 0;
}
.answer-capsule p { font-size: var(--t-base); font-weight: 300; color: var(--t1); line-height: 1.82; }

/* ── 21. RESOURCE STRIP ── */
.resource-strip { background: var(--s1); border-top: 1px solid var(--hr); border-bottom: 1px solid var(--hr); padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 5vw, 2.5rem); }
.resource-strip-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.resource-strip-inner .btn { align-self: flex-start; }
@media (min-width: 640px) { .resource-strip-inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ── 22. TOPIC GRID ── */
.topic-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--hr); margin-top: clamp(1.5rem, 4vw, 3rem); border-radius: 4px; overflow: hidden; }
.topic-cell { padding: clamp(1.25rem, 3vw, 2rem); border-bottom: 1px solid var(--hr); transition: background 0.25s; }
.topic-cell:last-child { border-bottom: none; }
.topic-cell:hover { background: var(--s2); }
.topic-cell-h { font-family: var(--fd); font-size: var(--t-lg); font-weight: 500; color: var(--t1); margin-bottom: 0.75rem; }
.topic-cell ul { display: flex; flex-direction: column; gap: 0.4rem; }
.topic-cell li { font-size: var(--t-sm); color: var(--t2); font-weight: 300; padding-left: 0.85rem; position: relative; }
.topic-cell li::before { content: '→'; position: absolute; left: 0; color: rgba(196,154,104,0.5); font-size: 0.75rem; top: 0.12rem; }
@media (min-width: 640px) {
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-cell:nth-child(odd) { border-right: 1px solid var(--hr); }
}
@media (min-width: 960px) {
  .topic-grid { grid-template-columns: repeat(3, 1fr); }
  .topic-cell:nth-child(2n+1):not(:nth-child(3n+1)) { border-right: 1px solid var(--hr); }
  .topic-cell:nth-child(3n) { border-right: none; }
  .topic-cell:nth-child(n+4) { border-bottom: none; }
}

/* ── 23. GSAP helpers ── */
.gsap-up { opacity: 0; transform: translateY(24px); will-change: transform, opacity; }
.gsap-fade { opacity: 0; will-change: opacity; }

/* ── 24. REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .gsap-up, .gsap-fade { opacity: 1 !important; transform: none !important; }
}

/* ── 25. PRINT ── */
@media print {
  #nav, .trust, .hero-actions, .process, .blog-grid { display: none; }
  body { background: white; color: black; }
  .hero-wrap { min-height: auto; padding: 2rem 0; }
  .hero-photo, .hero-gradient { display: none; }
  .hero-h1, .h2 { color: black; }
  .s-lead, .hero-desc { color: #333; }
}
