/* ============================================================
   PHYSOLOGY — SHARED STYLESHEET
   All pages import this file. Update once, updates everywhere.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Cinzel:wght@400;500&family=Inter:wght@300;400;500&display=swap');

:root {
  --gold: #b8965a;
  --gold-deep: #9a7a42;
  --gold-light: #d4b97a;
  --gold-pale: #faf3e6;
  --sage: #798b76;
  --sage-deep: #647561;
  --sage-dark: #4e5e4c;
  --sage-light: #a1a89c;
  --sage-pale: #eef1ec;
  --sage-mist: #f5f7f4;
  --cream: #fefcf8;
  --stone: #f2efea;
  --white: #fff;
  --text: #2e2a25;
  --text-mid: #6d645a;
  --text-light: #a09586;
  --border: #e2ddd5;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Inter', sans-serif;
  --overlay-standard: linear-gradient(to top, rgba(30,25,20,0.82) 0%, rgba(46,74,54,0.42) 55%, rgba(46,74,54,0.15) 100%);
  --overlay-solid: rgba(46,74,54,0.82);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--sage-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 10px 20px;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1.5;
}
.top-bar strong { color: #fff; font-weight: 500; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  height: 68px;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-img img { width: 100%; height: 100%; object-fit: cover; }
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > span {
  display: block;
  padding: 0 16px;
  height: 68px;
  line-height: 68px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > span:hover,
.nav-links > li:hover > span { color: var(--gold); }

/* Dropdown */
.nav-links > li > .dropdown {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  min-width: 220px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  z-index: 300;
  padding: 8px 0;
}
.nav-links > li:hover > .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: all 0.2s;
}
.dropdown a:hover { color: var(--gold); background: var(--stone); padding-left: 24px; }
.dropdown .guide-label {
  padding: 10px 20px 4px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Nav CTA */
.nav-cta {
  background: var(--gold);
  color: #fff;
  padding: 11px 26px;
  border-radius: 28px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-deep); transform: translateY(-1px); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: var(--cream);
  z-index: 500;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 24px 0 80px;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-close {
  display: flex;
  justify-content: flex-end;
  padding: 0 24px 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
}
.nav-drawer-close:hover { color: var(--text); }
.nav-drawer a, .nav-drawer .drawer-section-title {
  display: block;
  padding: 13px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--gold); }
.drawer-main-link {
  display: block;
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.drawer-main-link:hover { color: var(--gold); }
.drawer-expandable { border-bottom: 1px solid var(--border); }
.drawer-expand-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: color 0.2s;
}
.drawer-expand-title:hover { color: var(--gold); }
.drawer-expand-title.open { color: var(--gold); }
.drawer-arrow { font-size: 18px; font-weight: 300; transition: transform 0.25s; line-height: 1; }
.drawer-expand-title.open .drawer-arrow { transform: rotate(45deg); }
.drawer-expand-content {
  display: none;
  background: var(--stone);
}
.drawer-expand-content.open { display: block; }
.drawer-expand-content a {
  display: block;
  padding: 12px 32px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.drawer-expand-content a:hover { color: var(--gold); }
.drawer-section-title {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--gold);
  background: var(--stone);
  padding: 10px 24px 8px;
  cursor: default;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 400;
}
.nav-overlay.open { display: block; }

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0 max(10px, env(safe-area-inset-bottom));
  box-shadow: 0 -2px 20px rgba(0,0,0,0.06);
}
.sticky-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-mid);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.sticky-bar a:hover { color: var(--text); }
.sticky-bar svg { width: 22px; height: 22px; }
.sticky-bar .wa svg { color: #25D366; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  text-align: center;
  padding: 40px 28px 110px;
  font-size: 11.5px;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  letter-spacing: 0.4px;
  line-height: 1.9;
}
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ============================================================
   SHARED COMPONENTS
   ============================================================ */

/* Eyebrow label */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* Gold accent line */
.accent-line {
  width: 36px;
  height: 1px;
  background: var(--gold-light);
  margin-bottom: 28px;
}

/* Gold connector lines (between sections) */
.connector {
  display: flex;
  justify-content: center;
  padding: 0;
  height: 64px;
  align-items: stretch;
}
.connector::after {
  content: '';
  width: 1px;
  background: var(--gold-light);
}

/* Stats strip */
.stats-strip {
  display: flex;
  justify-content: center;
  gap: 56px;
  padding: 52px 28px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  display: block;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* Content wrapper */
.content-section {
  padding: 80px 28px;
  max-width: 680px;
  margin: 0 auto;
}
.content-section.wide { max-width: 860px; }

/* Stone band */
.stone-band {
  background: var(--stone);
  padding: 80px 28px;
}
.stone-band .inner {
  max-width: 680px;
  margin: 0 auto;
}

/* Sage callout */
.callout {
  background: var(--sage-pale);
  border-left: 3px solid var(--sage);
  padding: 32px 28px;
  border-radius: 0 14px 14px 0;
  margin: 40px 0;
}
.callout h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.callout p {
  color: var(--text-mid);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 8px;
}
.callout p:last-child { margin-bottom: 0; }

/* Pull quote */
.pull-quote {
  padding: 52px 28px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 48px 0;
}
.pull-quote p {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* Image with overlay */
.img-overlay {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.img-overlay img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-standard);
}
.img-overlay .img-overlay-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

/* Testimonials */
.testimonials { display: flex; flex-direction: column; gap: 20px; }
.test-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
  border-radius: 14px;
}
.test-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.test-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
}
.test-role {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}
.test-result {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: var(--sage-pale);
  padding: 4px 12px;
  border-radius: 20px;
}
.test-card blockquote {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
  font-style: normal;
}

/* Steps */
.steps { margin-top: 40px; }
.step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--gold-light);
  flex-shrink: 0;
  width: 44px;
  line-height: 1;
}
.step h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}
.step p {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}

/* Guarantee */
.guarantee {
  text-align: center;
  padding: 72px 28px;
  max-width: 600px;
  margin: 0 auto;
}
.guarantee-line {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}
.guarantee h3 {
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 20px;
}
.guarantee p {
  color: var(--text-mid);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 12px;
}

/* CTA buttons */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 16px 44px;
  border-radius: 32px;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(184,150,90,0.22);
}
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 14px 40px;
  border-radius: 32px;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--gold); color: #fff; }

/* Final CTA band */
.final-cta {
  text-align: center;
  padding: 100px 28px;
  background: var(--stone);
  position: relative;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 64px;
  background: var(--gold-light);
}
.final-cta h2 { max-width: 580px; margin: 0 auto 16px; }
.final-cta p { max-width: 480px; margin: 0 auto 32px; }
.final-cta .hero-note {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* PS section */
.ps-section {
  padding: 56px 28px;
  max-width: 680px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.ps-section p {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 16px;
}
.ps-section p:last-child { margin-bottom: 0; }
.ps-section strong { color: var(--text); font-weight: 500; }
.ps-section a { color: var(--sage-deep); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }

/* Typography defaults */
h1 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.3px;
}
h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}
h4 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
p {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
}
p:last-child { margin-bottom: 0; }
p strong { font-weight: 500; color: var(--text); }
a { color: var(--gold); }

/* Research links */
.research-links { margin: 20px 0; }
.research-links a {
  display: block;
  font-size: 13px;
  color: var(--sage-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 8px;
  font-weight: 300;
}

/* Video placeholder */
.video-wrap {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  margin: 36px 0;
  position: relative;
  padding-top: 56.25%;
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Guide progress strip */
.guide-progress {
  background: var(--stone);
  border-bottom: 1px solid var(--border);
  padding: 16px 28px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: -webkit-sticky;
  position: sticky;
  top: 68px;
  z-index: 190;
}
.guide-progress::-webkit-scrollbar { display: none; }
.guide-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.guide-step a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s;
  white-space: nowrap;
}
.guide-step a:hover { color: var(--gold); }
.guide-step.active a {
  color: var(--gold);
  background: var(--gold-pale);
}
.guide-step-sep {
  color: var(--border);
  font-size: 14px;
  flex-shrink: 0;
}

/* Next page CTA (guide pages) */
.guide-next {
  background: var(--sage-dark);
  padding: 64px 28px;
  text-align: center;
}
.guide-next h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
}
.guide-next p {
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 15px;
}
.guide-next .btn-next {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 16px 48px;
  border-radius: 32px;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.25s;
}
.guide-next .btn-next:hover { background: var(--gold-light); }

/* Hero (standard pages) */
.hero {
  padding: 88px 28px 80px;
  text-align: center;
  background: var(--stone);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 64px;
  background: var(--gold-light);
}
.hero-eyebrow { margin-bottom: 24px; }
.hero h1 { max-width: 820px; margin: 0 auto 24px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-note {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* Guide hero (tighter, no bottom connector) */
.guide-hero {
  padding: 64px 28px 56px;
  background: var(--stone);
  max-width: 760px;
  margin: 0 auto;
}
.guide-hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
.guide-hero .guide-sub {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
}

/* Section image (full width with overlay) */
.section-img {
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
}
.section-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.section-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-standard);
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
}
.compare-table th {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 20px;
  text-align: left;
}
.compare-table th:first-child { background: var(--text-mid); }
.compare-table th:last-child { background: var(--sage-dark); }
.compare-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
  vertical-align: top;
}
.compare-table td:last-child { background: var(--sage-pale); }
.compare-table tr:last-child td { border-bottom: none; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding-top: 16px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
}
.faq-item.open .faq-a { display: block; }

/* faq-question/faq-answer system (condition + treatment pages) */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question span:first-child {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}
.faq-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  display: inline-block;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  padding-bottom: 22px;
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }

  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }

  .hero { padding: 56px 20px 64px; }
  .guide-hero { padding: 48px 20px 40px; }
  .guide-hero h1 { font-size: 28px; }
  .content-section { padding: 56px 20px; }
  .stone-band { padding: 56px 20px; }
  .stats-strip { gap: 32px; padding: 40px 20px; flex-direction: column; align-items: center; }
  .stat-num { font-size: 34px; }
  .section-img { height: 260px; }
  .pull-quote p { font-size: 19px; }
  .final-cta { padding: 72px 20px; }
  nav { padding: 0 20px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links > li > a,
  .nav-links > li > span { padding: 0 11px; font-size: 10.5px; }
}

@media (min-width: 1024px) {
  h1 { font-size: 48px; }
  h2 { font-size: 40px; }
  .hero { padding: 120px 40px 100px; }
  .content-section { padding: 100px 40px; }
  .stone-band { padding: 100px 40px; }
  .section-img { height: 460px; }
  .pull-quote p { font-size: 26px; }
}

/* Mobile-only line break utility */
.mob-br { display: none; }
@media (max-width: 600px) { .mob-br { display: block; } }
