/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --background: 37 35% 94%;
  --foreground: 220 62% 15%;
  --gold: 38 65% 47%;
  --gold-foreground: 0 0% 100%;
  --cta: 28 60% 45%;
  --cta-foreground: 0 0% 100%;
  --navy: 220 62% 15%;
  --navy-dark: 222 65% 8%;
  --navy-card: 222 52% 12%;
  --green: 170 20% 14%;
  --cream: 37 35% 94%;
  --cream-light: 37 40% 97%;
  --muted-foreground: 220 18% 42%;
  --border: 37 18% 82%;
  --destructive: 0 84% 60%;
  --radius: 0.5rem;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-gold { color: hsl(var(--gold)); }
.text-cream-light { color: hsl(var(--cream-light)); }
.italic { font-style: italic; }
.fw-600 { font-weight: 600; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.w-full { width: 100%; }
.rel-z { position: relative; z-index: 10; }
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }

.section-padding { padding: 7rem 1.5rem; }
@media (min-width: 768px) { .section-padding { padding: 9rem 3rem; } }
@media (min-width: 1024px) { .section-padding { padding: 11rem 5rem; } }

.gold-rule { width: 4rem; height: 1px; background: hsl(var(--gold) / 0.4); margin: 0 auto; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: hsl(var(--gold));
  display: inline-block;
}
.section-label-dark { color: hsl(var(--gold)); }

/* Grain overlay */
.bg-grain { position: relative; }
.bg-grain::after {
  content: ''; position: absolute; inset: 0; opacity: 0.04; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== CTA BUTTONS ===== */
.cta-button {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  border-radius: var(--radius); transition: all 0.3s; cursor: pointer;
  letter-spacing: 0.05em; text-decoration: none;
  padding: 1rem 2rem; font-size: 0.875rem;
}
.cta-large { padding: 1.25rem 3rem; font-size: 1rem; }
.cta-primary {
  background: hsl(var(--cta)); color: hsl(var(--cta-foreground));
  box-shadow: 0 4px 14px hsl(var(--cta) / 0.3);
}
.cta-primary:hover { filter: brightness(1.1); transform: scale(1.01); }
.cta-outline {
  background: transparent; border: 1px solid hsl(var(--cream-light) / 0.3);
  color: hsl(var(--cream-light));
}
.cta-outline:hover { border-color: hsl(var(--gold)); color: hsl(var(--gold)); background: hsl(var(--gold) / 0.05); }
.cta-secondary {
  background: hsl(var(--cream-light)); color: hsl(var(--navy));
  border: 1px solid hsl(var(--border));
}

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s; padding: 1.5rem 0;
}
.site-header.scrolled {
  background: hsl(var(--navy) / 0.95); backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); padding: 0.75rem 0;
}
.header-inner {
  max-width: 80rem; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .header-inner { padding: 0 3rem; } }
.header-left { display: flex; align-items: center; gap: 1rem; }
.logo-link { display: flex; align-items: center; }
.logo-img { height: 2.5rem; width: auto; filter: brightness(0) invert(1); }
.social-icon { color: hsl(var(--cream-light) / 0.5); transition: color 0.3s; display: inline-flex; }
.social-icon:hover { color: hsl(var(--cream-light)); }

.desktop-nav { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 768px) { .desktop-nav { display: flex; } }
.nav-link {
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  color: hsl(var(--cream-light) / 0.6); transition: color 0.3s;
  letter-spacing: 0.05em;
}
.nav-link:hover { color: hsl(var(--cream-light)); }
.nav-cta {
  background: hsl(var(--cta)); color: hsl(var(--cta-foreground));
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 13px;
  padding: 0.625rem 1.5rem; border-radius: var(--radius);
  transition: all 0.3s; letter-spacing: 0.05em;
}
.nav-cta:hover { filter: brightness(1.1); }

.mobile-toggle { display: block; background: none; border: none; cursor: pointer; padding: 0.5rem; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.hamburger-icon { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.hamburger-icon span { display: block; height: 2px; background: hsl(var(--cream-light)); border-radius: 1px; transition: all 0.3s; }
.hamburger-icon.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-icon.open span:nth-child(2) { opacity: 0; }
.hamburger-icon.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none; background: hsl(var(--navy) / 0.95); backdrop-filter: blur(12px);
  border-top: 1px solid hsl(var(--cream-light) / 0.08);
}
@media (min-width: 768px) { .mobile-nav { display: none !important; } }
.mobile-nav.open { display: block; }
.mobile-nav-inner { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-nav-link {
  font-family: 'DM Sans', sans-serif; color: hsl(var(--cream-light) / 0.7);
  padding: 0.25rem 0; letter-spacing: 0.05em; font-size: 0.875rem;
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: hsl(var(--cream-light)); }
.mobile-social { display: flex; align-items: center; gap: 1rem; padding: 0.25rem 0; }
.mobile-cta { text-align: center; width: 100%; display: block; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; display: flex; overflow: hidden;
  background: hsl(var(--green));
}
.hero-texture {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.15; pointer-events: none; z-index: 1;
}
.hero-inner {
  position: relative; z-index: 10; width: 100%; max-width: 80rem; margin: 0 auto;
  display: grid; align-items: end; height: 100vh;
}
@media (min-width: 768px) { .hero-inner { grid-template-columns: 1fr 1fr; } }
.hero-text {
  position: relative; z-index: 5; display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 1.5rem 3.5rem; height: 100vh;
}
@media (min-width: 768px) { .hero-text { padding: 8rem 3rem 3.5rem; } }
@media (min-width: 1024px) { .hero-text { padding: 8rem 4rem 3.5rem; } }
.hero-text h1 {
  margin-top: 0.75rem; color: hsl(var(--cream-light));
  font-size: clamp(2rem, 3.8vw, 3.5rem); line-height: 1.1; letter-spacing: -0.03em;
}
@media (min-width: 1024px) { .hero-text h1 { margin-top: 1.5rem; } }
.hero-desc {
  margin-top: 1rem; font-size: 1.125rem; line-height: 1.75;
  color: hsl(var(--cream-light) / 0.6); max-width: 480px;
}
@media (min-width: 1024px) { .hero-desc { margin-top: 2rem; } }
.hero-cta-wrap { margin-top: 1.25rem; }
@media (min-width: 1024px) { .hero-cta-wrap { margin-top: 2rem; } }
.hero-sub { margin-top: 1.25rem; color: hsl(var(--cream-light) / 0.3); font-size: 0.75rem; letter-spacing: 0.05em; }
.hide-mobile { display: none; }
@media (min-width: 1024px) { .hide-mobile { display: block; } }

.hero-portrait {
  position: absolute; bottom: 0; right: 0; display: flex; align-items: flex-end;
  justify-content: center; height: 100%; z-index: 2; pointer-events: none;
}
@media (min-width: 768px) {
  .hero-portrait { position: relative; justify-content: flex-end; pointer-events: auto; }
}
.hero-portrait img {
  height: 80vh; width: auto; object-fit: cover; object-position: top;
  opacity: 0.3;
}
@media (min-width: 768px) { .hero-portrait img { opacity: 1; } }
@media (min-width: 1280px) { .hero-portrait img { height: 90vh; } }
.hero-portrait-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, hsl(var(--green)), hsl(var(--green) / 0.6), transparent);
}
@media (min-width: 768px) { .hero-portrait-overlay { display: none; } }

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 10;
  color: hsl(var(--cream-light) / 0.2); animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== PAIN ===== */
.pain-section {
  padding: 7rem 1.5rem; background: #efe4d0; position: relative; overflow: hidden;
}
@media (min-width: 768px) { .pain-section { padding: 9rem 3rem; } }
@media (min-width: 1024px) { .pain-section { padding: 11rem 5rem; } }
.pain-section .gold-rule { margin-bottom: 5rem; }
.pain-grid { display: grid; gap: 4rem; }
@media (min-width: 768px) { .pain-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
@media (min-width: 1024px) { .pain-grid { gap: 6rem; } }
.pain-left h2 { margin-top: 1.5rem; font-size: clamp(2.25rem, 4vw, 3.25rem); line-height: 1.15; letter-spacing: -0.02em; }
.pain-explain { margin-top: 2rem; font-size: 1.0625rem; line-height: 1.75; color: hsl(var(--muted-foreground)); }
.pain-intro { margin-top: 1rem; font-size: 1.125rem; font-weight: 600; font-style: italic; }
.pain-item { border-left: 1px solid hsl(var(--gold) / 0.3); padding: 1.25rem 0 1.25rem 2rem; }
.pain-item p { font-size: 1.125rem; line-height: 1.75; }
.pain-item strong { color: hsl(var(--foreground)); font-weight: 600; }
.pain-last {
  border-left: 2px solid hsl(var(--gold) / 0.6); padding: 1.5rem 0 1.5rem 2rem; margin-top: 0.5rem;
}
.pain-last p {
  font-size: clamp(1.15rem, 2vw, 1.25rem); color: hsl(var(--gold));
  font-family: 'Playfair Display', serif; font-weight: 600; font-style: italic; line-height: 1.6;
}
.pain-quote { margin-top: 2.5rem; font-style: italic; color: hsl(var(--muted-foreground)); padding-left: 2rem; font-size: 1.0625rem; line-height: 1.75; }
.pain-link {
  margin-top: 1.5rem; display: inline-block; padding-left: 2rem;
  color: hsl(var(--cta)); font-weight: 600; font-size: 0.875rem; letter-spacing: 0.05em;
}
.pain-link:hover { text-decoration: underline; }

/* ===== MOOD STRIPS ===== */
.mood-strip { overflow: hidden; padding: 0.75rem 0; }
.bg-cream { background: hsl(var(--background)); }
.bg-navy { background: hsl(var(--navy)); }
.mood-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(2, 1fr);
  gap: 0.5rem; height: 400px;
}
@media (min-width: 768px) { .mood-grid { height: 500px; } }
.mood-cell { overflow: hidden; }
.mood-cell img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.6;
  transition: opacity 0.7s, filter 0.7s; filter: grayscale(20%);
}
.mood-cell img:hover { opacity: 0.85; filter: grayscale(0); }
.mood-span-2x2 { grid-column: span 2; grid-row: span 2; }

/* ===== REFRAME ===== */
.reframe-section {
  padding: 7rem 1.5rem; background: hsl(var(--green)); color: hsl(var(--cream-light));
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .reframe-section { padding: 9rem 3rem; } }
@media (min-width: 1024px) { .reframe-section { padding: 11rem 5rem; } }
.reframe-bg {
  position: absolute; inset: 0; opacity: 0.06; background-size: cover;
  background-position: center; pointer-events: none;
}
.reframe-section h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); line-height: 1.15; letter-spacing: -0.02em; }
.reframe-body {
  margin-top: 2.5rem; font-size: 1.125rem; line-height: 1.75;
  color: hsl(var(--cream-light) / 0.75); max-width: 42rem; margin-left: auto; margin-right: auto;
}
.reframe-grid { margin-top: 4rem; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .reframe-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.reframe-method-h3 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.3; color: hsl(var(--cream-light)); }
.reframe-method-sub { margin-top: 1rem; font-size: clamp(1rem, 2vw, 1.25rem); font-family: 'Playfair Display', serif; color: hsl(var(--gold) / 0.8); font-style: italic; }
.reframe-cycling { margin-top: 2rem; font-size: 1.0625rem; line-height: 1.75; color: hsl(var(--cream-light) / 0.6); }
.reframe-blockquote { margin: 4rem auto; max-width: 48rem; text-align: center; }
.reframe-blockquote .gold-rule { margin-bottom: 2.5rem; }
.reframe-blockquote .gold-rule:last-child { margin-top: 2.5rem; margin-bottom: 0; }
.reframe-blockquote blockquote {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-family: 'Playfair Display', serif;
  font-style: italic; color: hsl(var(--gold)); line-height: 1.3;
}

/* Growth graphic */
.growth-graphic { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.growth-counter { text-align: center; }
.counter-value {
  font-size: clamp(3rem, 6vw, 4.5rem); font-family: 'Playfair Display', serif;
  font-weight: 700; color: hsl(var(--gold)); line-height: 1;
}
.counter-label { color: hsl(var(--cream-light) / 0.5); font-size: 0.875rem; margin-top: 0.25rem; letter-spacing: 0.05em; }
.growth-bars { display: flex; align-items: flex-end; justify-content: center; gap: 0.5rem; width: 100%; max-width: 20rem; height: 13rem; }
@media (min-width: 640px) { .growth-bars { gap: 0.75rem; } }
.bar-col { display: flex; flex-direction: column; align-items: center; flex: 1; }
.bar-col .bar {
  width: 100%; border-radius: 2px 2px 0 0;
  background: hsl(var(--gold) / 0.4); border: 1px solid hsl(var(--gold) / 0.2);
  transition: all 0.3s;
}
.bar-col:hover .bar { background: hsl(var(--gold)); box-shadow: 0 0 20px hsl(var(--gold) / 0.4); }
.bar-col span { font-size: 10px; color: hsl(var(--cream-light) / 0.5); margin-top: 0.5rem; white-space: nowrap; }
@media (min-width: 640px) { .bar-col span { font-size: 12px; } }
.paths-row { display: flex; gap: 1rem; width: 100%; max-width: 20rem; }
.path-card {
  flex: 1; border-radius: var(--radius); border: 1px solid hsl(var(--cream-light) / 0.3);
  background: hsl(0 0% 100% / 0.1); padding: 0.75rem 1rem; text-align: center;
  cursor: pointer; transition: all 0.3s;
}
.path-card:hover { background: hsl(0 0% 100% / 0.15); }
.path-big:hover { border-color: hsl(var(--destructive) / 0.4); }
.path-small:hover { border-color: hsl(var(--gold) / 0.5); box-shadow: 0 0 15px hsl(var(--gold) / 0.1); }
.path-title { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; color: hsl(var(--cream-light)); }
.path-steps { display: flex; flex-direction: column; gap: 2px; font-size: 0.75rem; color: hsl(var(--cream-light) / 0.9); font-weight: 500; }
.path-end-bad { opacity: 0.6; }
.path-big:hover .path-end-bad { opacity: 1; color: hsl(var(--destructive) / 0.8); }
.path-end-good { opacity: 0.7; }
.path-small:hover .path-end-good { color: hsl(var(--gold)); font-weight: 700; }
.badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.growth-badge {
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  border: 1px solid hsl(var(--gold) / 0.25); font-size: 11px;
  color: hsl(var(--gold) / 0.8); background: hsl(var(--gold) / 0.04);
  transition: all 0.3s; cursor: default;
}
.growth-badge:hover { background: hsl(var(--gold) / 0.1); border-color: hsl(var(--gold) / 0.4); }

/* ===== STORY ===== */
.story-section { padding: 7rem 1.5rem; background: #efe4d0; }
@media (min-width: 768px) { .story-section { padding: 9rem 3rem; } }
@media (min-width: 1024px) { .story-section { padding: 11rem 5rem; } }
.story-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .story-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
@media (min-width: 1024px) { .story-grid { gap: 6rem; } }
.story-image-wrap { position: relative; }
.story-image-border { position: absolute; inset: -1px; border-radius: var(--radius); border: 1px solid hsl(var(--gold) / 0.2); }
.story-image-wrap img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 4/5; filter: grayscale(15%) sepia(8%); }
.story-text h2 { margin-top: 1.5rem; font-size: clamp(2.25rem, 4vw, 3.25rem); line-height: 1.15; letter-spacing: -0.02em; }
.story-paragraphs { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 1.0625rem; line-height: 1.75; color: hsl(var(--muted-foreground)); }
.story-paragraphs strong { color: hsl(var(--foreground)); font-weight: 600; }
.cred-tags { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cred-tag {
  background: hsl(var(--navy)); color: hsl(var(--cream-light));
  font-size: 11px; font-weight: 500; padding: 0.5rem 1rem; border-radius: 2px; letter-spacing: 0.05em;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 7rem 1.5rem; background: hsl(var(--navy)); position: relative; overflow: hidden;
}
@media (min-width: 768px) { .how-section { padding: 9rem 3rem; } }
@media (min-width: 1024px) { .how-section { padding: 11rem 5rem; } }
.how-section h2 { margin-top: 1.5rem; font-size: clamp(2.25rem, 4vw, 3.25rem); line-height: 1.15; letter-spacing: -0.02em; }
.steps-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
.step-card {
  position: relative; border-radius: var(--radius); padding: 2.5rem;
  border: 1px solid hsl(var(--cream-light) / 0.08); overflow: hidden;
}
.step-watermark {
  position: absolute; top: 1rem; right: 1.5rem; font-size: 6rem;
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: hsl(var(--cream-light) / 0.03); line-height: 1; user-select: none;
}
.step-num { color: hsl(var(--gold)); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.step-title {
  margin-top: 1rem; font-size: clamp(1.5rem, 2vw, 1.75rem); line-height: 1.3;
  color: hsl(var(--cream-light)); font-family: 'Playfair Display', serif;
}
.step-subtitle { color: hsl(var(--cream-light) / 0.4); font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 400; margin-left: 0.5rem; }
.step-body { margin-top: 1.25rem; font-size: 1.0625rem; line-height: 1.75; color: hsl(var(--cream-light) / 0.6); }
.how-price { color: hsl(var(--cream-light) / 0.5); font-size: 1.125rem; margin-bottom: 2.5rem; }

/* ===== INCLUDED ===== */
.included-section { padding: 7rem 1.5rem; background: #efe5d2; position: relative; }
@media (min-width: 768px) { .included-section { padding: 9rem 3rem; } }
@media (min-width: 1024px) { .included-section { padding: 11rem 5rem; } }
.included-section h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); line-height: 1.15; letter-spacing: -0.02em; }
.included-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .included-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (min-width: 1024px) { .included-grid { gap: 4rem; } }
.inc-list { display: flex; flex-direction: column; gap: 1.25rem; }
.inc-item { display: flex; align-items: flex-start; gap: 1rem; }
.gold-star { color: hsl(var(--gold)); font-size: 0.875rem; margin-top: 2px; flex-shrink: 0; }
.inc-item p { font-size: 1.125rem; line-height: 1.75; }
.price-card {
  background: hsl(var(--navy)); border-radius: var(--radius); padding: 2.5rem;
  position: relative;
}
@media (min-width: 1024px) { .price-card { padding: 3rem; } }
.price-value { color: hsl(var(--gold)); font-family: 'Playfair Display', serif; font-weight: 700; display: flex; align-items: baseline; gap: 0.5rem; }
.price-num { font-size: clamp(3rem, 5vw, 4.5rem); }
.price-unit { font-size: clamp(1.5rem, 2.5vw, 1.875rem); }
.price-sub { color: hsl(var(--cream-light) / 0.5); font-size: 0.875rem; margin-top: 0.5rem; letter-spacing: 0.05em; }
.price-divider { width: 100%; height: 1px; background: hsl(var(--cream-light) / 0.08); margin: 2rem 0; }
.bonus-label { color: hsl(var(--gold)); font-weight: 600; font-size: 0.875rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; }
.bonus-item { color: hsl(var(--cream-light) / 0.7); font-size: 0.875rem; display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.bonus-item .gold-star { color: hsl(var(--gold)); }

/* ===== PROOF ===== */
.proof-section { padding: 7rem 1.5rem; background: hsl(var(--green)); }
@media (min-width: 768px) { .proof-section { padding: 9rem 3rem; } }
@media (min-width: 1024px) { .proof-section { padding: 11rem 5rem; } }
.stats-row { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 5rem; }
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(3, 1fr); } }
.stat { text-align: center; }
.stat-border { }
@media (min-width: 768px) { .stat-border { border-right: 1px solid hsl(var(--cream-light) / 0.1); } }
.stat-value { color: hsl(var(--cream-light)); font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5vw, 3.75rem); font-weight: 700; }
.stat-label { color: hsl(var(--gold)); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; margin-top: 0.75rem; }
.proof-quote { max-width: 48rem; margin: 0 auto; text-align: center; }
.proof-quote .gold-rule { margin-bottom: 2rem; }
.proof-quote .gold-rule:last-of-type { margin-top: 2rem; margin-bottom: 0; }
.proof-quote p { color: hsl(var(--cream-light)); font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.6; }
.proof-quote footer { margin-top: 1.5rem; color: hsl(var(--cream-light) / 0.4); font-size: 0.75rem; letter-spacing: 0.05em; }
.testimonial-placeholder { margin-top: 4rem; padding: 2.5rem; border: 1px solid hsl(var(--cream-light) / 0.1); border-radius: var(--radius); text-align: center; }
.testimonial-placeholder p { color: hsl(var(--cream-light) / 0.5); font-style: italic; font-size: 0.875rem; }

/* ===== FULLWIDTH MOOD ===== */
.fullwidth-mood { position: relative; width: 100%; height: 60vh; overflow: hidden; }
@media (min-width: 768px) { .fullwidth-mood { height: 70vh; } }
.fullwidth-mood > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); }
.fullwidth-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, hsl(var(--navy) / 0.6), hsl(var(--navy) / 0.4), hsl(var(--navy) / 0.7));
}
.fullwidth-content {
  position: relative; z-index: 10; display: flex; flex-direction: column;
  align-items: center; justify-content: center; height: 100%; text-align: center; padding: 0 1.5rem;
}
.fullwidth-quote {
  margin-top: 1.5rem; font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2vw, 1.75rem); color: hsl(var(--cream-light) / 0.9);
  max-width: 48rem; font-style: italic;
}
@media (min-width: 768px) { .fullwidth-quote { font-size: clamp(2.25rem, 4vw, 3.25rem); } }

/* ===== FAQ ===== */
.faq-section { padding: 7rem 1.5rem; background: #efe5d2; }
@media (min-width: 768px) { .faq-section { padding: 9rem 3rem; } }
@media (min-width: 1024px) { .faq-section { padding: 11rem 5rem; } }
.faq-section h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); line-height: 1.15; letter-spacing: -0.02em; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid hsl(var(--border) / 0.6); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer; padding: 1.5rem 0;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1.125rem;
  color: hsl(var(--foreground)); text-align: left; line-height: 1.75; gap: 1rem;
}
.faq-trigger svg { flex-shrink: 0; color: hsl(var(--muted-foreground)); transition: transform 0.3s; }
.faq-trigger.open .accordion-plus-v { display: none; }
.faq-content {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-content.open { max-height: 500px; padding-bottom: 1.5rem; }
.faq-content p { color: hsl(var(--muted-foreground)); font-size: 1.0625rem; line-height: 1.75; }

/* ===== FINAL CTA ===== */
.final-cta-section { position: relative; padding: 9rem 0; overflow: hidden; }
@media (min-width: 768px) { .final-cta-section { padding: 11rem 0; } }
.final-cta-bg { position: absolute; inset: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.final-cta-overlay { position: absolute; inset: 0; background: hsl(var(--navy) / 0.8); }
.final-cta-content { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
.final-cta-content h2 { font-size: clamp(3rem, 6vw, 5rem); line-height: 1.08; letter-spacing: -0.03em; color: hsl(var(--cream-light)); }
.final-desc { margin-top: 2rem; font-size: 1.125rem; line-height: 1.75; color: hsl(var(--cream-light) / 0.65); max-width: 36rem; margin-left: auto; margin-right: auto; }
.final-sub { margin-top: 1.25rem; color: hsl(var(--cream-light) / 0.3); font-size: 0.75rem; letter-spacing: 0.05em; }
.final-quote { color: hsl(var(--gold)); font-style: italic; font-family: 'Playfair Display', serif; font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* ===== FOOTER ===== */
.site-footer { background: hsl(var(--navy-dark)); padding: 4rem 1.5rem; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
@media (min-width: 768px) { .footer-top { flex-direction: row; justify-content: space-between; } }
.footer-logo { height: 2.5rem; width: auto; filter: brightness(0) invert(1); }
.footer-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem; }
.footer-link { font-size: 13px; color: hsl(var(--cream-light) / 0.5); transition: color 0.3s; letter-spacing: 0.05em; }
.footer-link:hover { color: hsl(var(--cream-light)); }
.footer-cta-link { font-size: 13px; color: hsl(var(--gold)); font-weight: 600; transition: color 0.3s; letter-spacing: 0.05em; }
.footer-cta-link:hover { color: hsl(var(--gold) / 0.8); }
.footer-bottom { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid hsl(var(--cream-light) / 0.08); display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.footer-social { display: flex; align-items: center; gap: 1.25rem; }
.footer-social .social-icon { color: hsl(var(--cream-light) / 0.4); }
.footer-social .social-icon:hover { color: hsl(var(--cream-light)); }
.footer-copy { color: hsl(var(--cream-light) / 0.25); font-size: 0.75rem; letter-spacing: 0.05em; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
