/* ══════════════════════════════════════════════════════════════
   THE R.O.U.T.I.N.E. METHOD — Premium Dark Feminine Aesthetic
   Liv Lifts Presents
   ══════════════════════════════════════════════════════════════ */

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

:root {
  --bg-deep:        #0a0a0a;
  --bg-dark:        #111111;
  --bg-card:        #161616;
  --bg-raised:      #181818;

  --accent-gold:    #c9a96e;
  --accent-gold-lt: #e0c48a;
  --accent-gold-dk: #a8833e;

  --text-primary:   #f0ebe3;
  --text-secondary: #a89f94;
  --text-muted:     #6b6560;
  --text-white:     #ffffff;

  --border-subtle:  rgba(201, 169, 110, 0.15);
  --border-card:    rgba(201, 169, 110, 0.2);
  --border-strong:  rgba(201, 169, 110, 0.45);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;

  --section-py:  100px;
  --container:   1100px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 600; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--accent-gold-dk); border-radius: 3px; }

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--accent-gold);
  color: #0a0a0a;
  border-color: var(--accent-gold);
}
.btn-primary:hover {
  background: var(--accent-gold-lt);
  border-color: var(--accent-gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}
.btn-outline:hover {
  background: var(--accent-gold);
  color: #0a0a0a;
  transform: translateY(-1px);
}

.btn-nav {
  font-size: 0.72rem;
  padding: 10px 22px;
  background: var(--accent-gold);
  color: #0a0a0a;
  border-color: var(--accent-gold);
}
.btn-nav:hover { background: var(--accent-gold-lt); }

.btn-full  { width: 100%; display: block; }
.btn-lg    { padding: 18px 44px; font-size: 0.82rem; }
.btn-sticky { padding: 14px 28px; font-size: 0.76rem; }

/* ─── LABELS & HEADLINES ────────────────────────────────────── */
.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 28px;
}
.section-headline em {
  font-style: italic;
  color: var(--accent-gold);
}

.section-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 600px;
}
.section-body--em {
  color: var(--text-primary);
  font-style: italic;
}

.section { padding: var(--section-py) 0; position: relative; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
}
.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-card);
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.25s;
}
.nav-link:hover { color: var(--accent-gold); }

/* ═══════════════════════════════════════════════════════════════
   HERO — REAL PHOTO BACKGROUND
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Real photo background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  transition: transform 12s ease-out;
}
.hero:hover .hero-bg-img {
  transform: scale(1);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.45) 40%,
      rgba(0,0,0,0.70) 80%,
      rgba(0,0,0,0.85) 100%
    ),
    linear-gradient(to right, rgba(0,0,0,0.2), transparent 50%, rgba(0,0,0,0.2));
}

/* Gold grain texture on top */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  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)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 24px 110px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 22px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--text-white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(240, 235, 227, 0.9);
  max-width: 600px;
  margin: 0 auto 18px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-support {
  font-size: 0.9rem;
  color: rgba(240, 235, 227, 0.6);
  max-width: 460px;
  margin: 0 auto 40px;
  font-style: italic;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-micro {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.65);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 32px 24px;
}
.stats-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 12px 48px;
  border-right: 1px solid var(--border-subtle);
  flex: 1;
  min-width: 140px;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 2 — PROBLEM
═══════════════════════════════════════════════════════════════ */
.section-problem {
  background: var(--bg-deep);
}
.problem-list {
  margin: 8px 0 28px;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.problem-list li:last-child { border-bottom: none; }
.list-dash {
  color: var(--accent-gold);
  font-weight: 600;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 3 — WHAT IT IS
═══════════════════════════════════════════════════════════════ */
.section-what {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.what-list {
  margin: 8px 0 32px;
}
.what-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.what-list li:last-child { border-bottom: none; }
.what-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,110,0.08);
  border: 1px solid var(--border-card);
  border-radius: 2px;
  color: var(--accent-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.what-divider {
  width: 48px;
  height: 1px;
  background: var(--accent-gold);
  opacity: 0.5;
  margin: 8px 0 28px;
}
.what-closing {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.what-closing strong { color: var(--text-primary); }

/* ═══════════════════════════════════════════════════════════════
   PHOTO BREAK — FULL-WIDTH CINEMATIC IMAGE SECTIONS
═══════════════════════════════════════════════════════════════ */
.photo-break {
  position: relative;
  height: clamp(340px, 55vw, 600px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-break-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.photo-break.in-view .photo-break-img {
  transform: scale(1);
}
.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.65) 100%
  );
}
.photo-break-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
}
.photo-break-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 18px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.photo-break-attr {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.photo-break--right .photo-break-img {
  object-position: center 60%;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 4 — FRAMEWORK
═══════════════════════════════════════════════════════════════ */
.section-framework {
  background: var(--bg-raised);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.framework-grid {
  margin: 12px 0 40px;
  border: 1px solid var(--border-card);
  border-radius: 4px;
  overflow: hidden;
}
.framework-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.25s var(--ease);
}
.framework-item:last-child { border-bottom: none; }
.framework-item:hover { background: rgba(201,169,110,0.04); }
.framework-letter {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--accent-gold);
  width: 52px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}
.framework-text {
  font-size: 1rem;
  color: var(--text-secondary);
}
.framework-text strong {
  color: var(--text-primary);
  font-weight: 500;
}
.framework-closing {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 520px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 5 — OPTIONS / CHOOSE — WITH PHOTOS
═══════════════════════════════════════════════════════════════ */
.section-options {
  background: var(--bg-deep);
}
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}

.option-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.option-card--featured {
  border-color: var(--accent-gold);
}

.option-card-badge {
  position: absolute;
  top: 0;
  left: 28px;
  background: var(--accent-gold);
  color: #0a0a0a;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 3px 3px;
  z-index: 5;
}

/* Photo on top of each card */
.option-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.option-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s var(--ease);
}
.option-card:hover .option-card-img {
  transform: scale(1.06);
}
.option-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(0,0,0,0.6) 100%
  );
}

.option-card-body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.option-card-tag {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px;
}
.option-card-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 12px;
}
.option-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.option-card-list {
  flex: 1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.option-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.option-card-list li i {
  color: var(--accent-gold);
  font-size: 0.72rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Purchase note beneath card CTA buttons */
.card-purchase-note {
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 6 — INCLUDED
═══════════════════════════════════════════════════════════════ */
.section-included {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 12px 0 48px;
}
.included-item {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 3px;
  transition: border-color 0.25s, transform 0.25s;
}
.included-item:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}
.included-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(201,169,110,0.08);
  border: 1px solid var(--border-card);
  border-radius: 2px;
  color: var(--accent-gold);
  font-size: 1rem;
  margin-bottom: 18px;
}
.included-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 8px;
}
.included-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.included-closing {
  text-align: center;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.included-closing p {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 500px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 7 — RENEWAL
═══════════════════════════════════════════════════════════════ */
.section-renewal { background: var(--bg-deep); }
.renewal-inner {
  max-width: 680px;
  padding: 56px 48px;
  border: 1px solid var(--border-card);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(201,169,110,0.04) 0%, transparent 100%);
  position: relative;
}
.renewal-inner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  border-radius: 4px 0 0 4px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 8 — TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.section-testimonials {
  background: var(--bg-raised);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.testimonials-intro {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 40px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--accent-gold);
  font-size: 0.78rem;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 300;
}
.testimonial-author {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.testimonial-source {
  color: var(--accent-gold);
  opacity: 0.7;
}

/* ─── TESTIMONIALS: expanded row ───────────────────────────── */
.testimonials-grid--more {
  margin-top: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.45s ease,
              margin-top 0.4s ease;
}
.testimonials-grid--more.expanded {
  max-height: 1200px;
  opacity: 1;
  margin-top: 20px;
}

/* 4th solo card: span all 3 cols on desktop, centered */
.testimonials-card--solo {
  grid-column: 1 / -1;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

/* ─── REVIEWS TOGGLE BUTTON ─────────────────────────────────── */
.reviews-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.reviews-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.25s var(--ease),
              border-color 0.25s var(--ease),
              background 0.25s var(--ease);
}
.reviews-toggle-btn:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  background: rgba(201, 169, 110, 0.05);
}
.reviews-toggle-count {
  color: var(--accent-gold);
  opacity: 0.75;
}
.reviews-toggle-icon {
  font-size: 0.65rem;
  color: var(--accent-gold);
  transition: transform 0.4s var(--ease);
}
.reviews-toggle-btn[aria-expanded="true"] .reviews-toggle-icon {
  transform: rotate(180deg);
}
.reviews-toggle-btn[aria-expanded="true"] .reviews-toggle-label {
  /* swap label text via JS */
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 9 — ABOUT — REAL PHOTO
═══════════════════════════════════════════════════════════════ */
.section-about { background: var(--bg-deep); }

.about-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  flex-shrink: 0;
}
.about-image-frame {
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1px solid var(--border-card);
  border-radius: 3px;
  pointer-events: none;
  z-index: 0;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  border: 1px solid var(--border-card);
  position: relative;
  z-index: 1;
  display: block;
}

.about-content .section-headline { margin-top: 8px; }
.about-content .section-body { max-width: 100%; }
.about-content .btn { margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════════
   SECTION 10 — FAQ
═══════════════════════════════════════════════════════════════ */
.section-faq {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.faq-list {
  margin-top: 12px;
  max-width: 760px;
}
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--accent-gold); }
.faq-question[aria-expanded="true"] { color: var(--accent-gold); }

.faq-icon {
  color: var(--accent-gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 22px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 11 — FINAL CTA
═══════════════════════════════════════════════════════════════ */
.section-final-cta {
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,169,110,0.08) 0%, transparent 70%),
    var(--bg-deep);
  text-align: center;
}
.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.final-cta-eyebrow {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 16px;
}
.final-cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 24px;
}
.final-cta-body {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-cta-micro {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 52px 0 36px;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-card);
  margin-bottom: 4px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-white);
}
.footer-tagline {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0;
}
.footer-links a {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--accent-gold); }
.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   STICKY MOBILE CTA BAR
═══════════════════════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 20px 16px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn-sticky { width: 100%; display: block; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE HAMBURGER
═══════════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE MENU DRAWER
═══════════════════════════════════════════════════════════════ */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 299;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu-overlay.open { opacity: 1; }

.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: var(--bg-dark);
  border-left: 1px solid var(--border-card);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 0 0 32px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}
.mobile-menu-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-white);
}
.mobile-menu-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,169,110,0.08);
  border: 1px solid var(--border-card);
  border-radius: 2px;
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
  flex: 1;
}
.mobile-nav-link {
  display: block;
  padding: 14px 28px;
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover {
  color: var(--accent-gold);
  padding-left: 36px;
}
.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 28px 0;
}

/* ═══════════════════════════════════════════════════════════════
   FADE-IN SCROLL ANIMATIONS
═══════════════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════════
   BODY LOCK
═══════════════════════════════════════════════════════════════ */
body.menu-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-py: 72px; }

  .nav-links  { display: none; }
  .btn-nav    { display: none; }

  .options-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .included-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .stat-item { padding: 12px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --section-py: 60px; }

  .hero-content { padding: 110px 20px 90px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 340px; }

  .photo-break { height: clamp(260px, 70vw, 400px); }
  .photo-break-quote { font-size: 1.25rem; }

  .framework-item { padding: 16px 18px; gap: 16px; }
  .framework-letter { font-size: 2rem; width: 40px; }

  .option-card-body { padding: 24px 22px 28px; }
  .option-card-img-wrap { height: 180px; }

  .included-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .renewal-inner { padding: 36px 26px; }

  .final-cta-btns { flex-direction: column; align-items: center; }
  .final-cta-btns .btn { width: 100%; max-width: 340px; }

  .stats-inner { flex-wrap: wrap; }
  .stat-item {
    min-width: 50%;
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--border-subtle); }
  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .footer-links { gap: 18px; }

  /* Show sticky mobile bar */
  .sticky-cta { display: block; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — VERY SMALL (≤ 380px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero-headline   { font-size: 2.4rem; }
  .section-headline { font-size: 1.9rem; }
  .option-card-body { padding: 20px 18px 24px; }
  .framework-item  { padding: 14px 14px; }
}
