:root {
    --black: #0a0907;
    --deep: #111009;
    --surface: #1a1710;
    --gold: #736b57;
    --gold-light: #e8c97a;
    --gold-dim: rgba(201,168,76,0.18);
    --cream: #f0e8d8;
    --muted: #ada59a;
    --white: #faf5ec;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
  }

  /* ─── NOISE TEXTURE OVERLAY ─────────────────────────── */
  body::before {
    content: '';
    position: fixed;
    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.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
  }

  /* ─── NAV ─────────────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.63), transparent);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-decoration: none;
    max-height: 45px;
    margin-right: 8px;
    line-height: 1;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 9px 22px;
    font-size: 0.72rem !important;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: background 0.3s, color 0.3s !important;
  }

  .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
  }

/* ─── HERO NEW ────────────────────────────────────────────── */

.hero-cta-context {
  max-width: 540px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(232, 224, 212, 0.65);
  margin-bottom: 24px;
}

.hero-cta-footnote {
  margin-top: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(232, 224, 212, 0.4);
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: rgba(200, 169, 110, 0.2);
  border: 1px solid rgba(200, 169, 110, 0.2);
  margin-bottom: 36px;
  max-width: 640px;
}

.hero-service-item {
  flex: 1 1 140px;
  background: #0f0e0c;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.2s ease;
}

.hero-service-item:hover {
  background: rgba(200, 169, 110, 0.08);
}

.hero-service-item span { font-size: 1rem; }

.hero-service-item p {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text, #e8e0d4);
}

.hero-journal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(200, 169, 110, 0.2);
  max-width: 640px;
}

.hero-journal-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8a96e;
  border: 1px solid rgba(200, 169, 110, 0.3);
  padding: 4px 10px;
  white-space: nowrap;
}

.hero-journal-text {
  flex: 1;
  min-width: 220px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(232, 224, 212, 0.6);
}

.hero-journal-text strong {
  color: #e8e0d4;
  font-weight: 500;
}

.hero-journal-link {
  color: #c8a96e;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 169, 110, 0.3);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}

.hero-journal-link:hover {
  color: #d4b87a;
  border-color: #c8a96e;
}

  /* ─── HERO ────────────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 10vw 100px;
    position: relative;
    overflow: hidden;
  }

  .hero-orb {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    top: -100px;
    right: -200px;
    pointer-events: none;
  }

  .hero-orb2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    bottom: 50px;
    left: -100px;
    pointer-events: none;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 14vw, 13rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.4s;
  }

  .hero h1 span { color: var(--gold); }

  .hero-sub {
    margin-top: 40px;
    max-width: 560px;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--muted);
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.65s;
  }

  .hero-sub em { color: var(--cream); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.15em; }

  .hero-actions {
    margin-top: 52px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.85s;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 16px 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
  }

  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(240,232,216,0.25);
    padding: 16px 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.3s, color 0.3s;
  }

  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 10vw;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.2s;
  }

  .scroll-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  /* ─── DIVIDER ─────────────────────────────────────────── */
  .divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 48px;
  }

  .divider-left { margin-left: 0; }

  /* ─── SECTION BASE ────────────────────────────────────── */
  section {
    padding: 100px 10vw;
    position: relative;
  }

  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
  }

  h2.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 32px;
  }

  h2.section-title em {
    color: var(--gold);
    font-style: italic;
  }

  h3.subsection {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin: 48px 0 16px;
  }

  p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 680px;
    margin-bottom: 20px;
    line-height: 1.85;
  }

  p strong { color: var(--cream); font-weight: 500; }
  p em { color: var(--cream); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.08em; }

  /* ─── ABOUT / LISTEN UP ───────────────────────────────── */
  .listen-up {
    background: var(--deep);
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }

  .listen-up .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .listen-up .right-col blockquote {
    border-left: 2px solid var(--gold);
    padding-left: 28px;
    margin: 40px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.5;
  }

  /* ─── CUT TO IT ──────────────────────────────────────── */
  .cut-to-it { background: var(--black); }

  .butterfly-quote {
    background: var(--surface);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 48px 56px;
    margin: 56px 0;
    max-width: 720px;
    position: relative;
  }

  .butterfly-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    color: var(--gold);
    line-height: 1;
    opacity: 0.25;
  }

  .butterfly-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    max-width: none;
    margin-bottom: 0;
    line-height: 1.6;
  }

  /* ─── FAILURE ─────────────────────────────────────────── */
  .failure {
    background: var(--deep);
    border-top: 1px solid rgba(201,168,76,0.08);
  }

  .failure-list {
    margin: 32px 0;
    padding: 0;
    list-style: none;
  }

  .failure-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    color: var(--muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .failure-list li::before {
    content: '—';
    color: var(--gold);
    flex-shrink: 0;
  }

  .failure-list li strong { color: var(--cream); }

  /* ─── THE TRUTH ───────────────────────────────────────── */
  .truth {
    background: var(--black);
    overflow: hidden;
  }

  .truth-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .truth-trio {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .truth blockquote {
    border-left: 2px solid var(--gold);
    padding-left: 28px;
    margin: 40px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.5;
  }

  .trio-item {
    padding: 28px 0;
    border-bottom: 1px solid rgba(201,168,76,0.12);
  }

  .trio-item:first-child { border-top: 1px solid rgba(201,168,76,0.12); }

  .trio-item strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 6px;
  }

  .trio-item span {
    font-size: 0.9rem;
    color: var(--muted);
  }

  /* ─── THE RESET ────────────────────────────────────────── */
  .the-reset {
    background: var(--deep);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }

  .reset-book-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }

  .reset-book-visual {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .book-mockup {
    width: 240px;
    height: 320px;
    background: linear-gradient(135deg, #1a1208 0%, #2d2010 40%, #1a1208 100%);
    border: 1px solid var(--gold);
    position: relative;
    box-shadow: 8px 8px 0 rgba(201,168,76,0.15), 16px 16px 40px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 28px;
    text-align: center;
  }

  .book-mockup::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--gold);
    opacity: 0.6;
  }

  .book-ornament {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    margin-bottom: 20px;
    position: relative;
    opacity: 0.7;
  }

  .book-ornament::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid var(--gold);
    opacity: 0.5;
  }

  .book-title-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    line-height: 1.1;
  }

  .book-subtitle-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 8px;
  }

  .book-author {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 24px;
  }

  .reset-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
  }

  .reset-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    align-items: start;
  }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: rgba(201,168,76,0.25);
    line-height: 1;
  }

  .step-content strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 4px;
  }

  .step-content span {
    font-size: 0.88rem;
    color: var(--muted);
  }

  /* ─── TURNING POINT ───────────────────────────────────── */
  .turning-point { background: var(--deep); }

  .tp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 48px;
  }

  /* ─── THREE PILLARS ───────────────────────────────────── */
  .pillars { background: var(--black); }

  .pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }

  .pillar {
    background: var(--surface);
    padding: 48px 36px;
    position: relative;
    transition: background 0.3s;
    cursor: default;
  }

  .pillar:hover { background: #201e14; }

  .pillar-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: rgba(201,168,76,0.1);
    line-height: 1;
    margin-bottom: 20px;
  }

  .pillar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
  }

  .pillar p {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 0;
  }

  .pillar-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .pillar:hover .pillar-bar { transform: scaleX(1); }

  /* ─── WHO IT'S FOR ────────────────────────────────────── */
  .for-you {
    background: var(--deep);
    overflow: hidden;
  }

  .for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 60px;
    max-width: 900px;
  }

  .for-item {
    padding: 28px 32px;
    background: var(--surface);
    font-size: 0.9rem;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    line-height: 1.7;
  }

  .for-item::before {
    content: '✦';
    color: var(--gold);
    flex-shrink: 0;
    font-size: 0.7rem;
    margin-top: 4px;
  }

  .for-cta-box {
    margin-top: 60px;
    background: var(--gold-dim);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 48px 48px;
    max-width: 700px;
  }

  .for-cta-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--cream);
    max-width: none;
    margin-bottom: 28px;
  }

  /* ─── WHAT WE DO ──────────────────────────────────────── */
  .what-we-do {
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,0.08);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2px;
    margin-top: 48px;
    max-width: 1100px;
  }

  .service-item {
    background: var(--surface);
    padding: 32px 28px;
  }

  .service-icon {
    font-size: 1.4rem;
    margin-bottom: 12px;
    opacity: 0.8;
  }

  .service-item strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: var(--cream);
    margin-bottom: 6px;
  }

  .service-item span {
    font-size: 0.78rem;
    color: var(--muted);
  }

  /* ─── HOW WE WORK ─────────────────────────────────────── */
  .how-we-work { background: var(--deep); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }

  .process-step {
    padding: 44px 36px;
    background: var(--surface);
    position: relative;
  }

  .process-step .p-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(201,168,76,0.08);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 24px;
  }

  .process-step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
  }

  .process-step p {
    font-size: 0.88rem;
    margin-bottom: 0;
  }

  /* ─── TESTIMONIALS ────────────────────────────────────── */
  .testimonials { background: var(--black); }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }

  .testi {
    background: var(--surface);
    padding: 44px 36px;
  }

  .testi-stars {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
  }

  .testi blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .testi cite {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
  }

  /* ─── CROSSROADS / OPTION ─────────────────────────────── */
  .crossroads {
    background: var(--deep);
    border-top: 1px solid rgba(201,168,76,0.12);
  }

  .options-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 60px;
  }

  .option-box { padding: 56px 48px; }
  .option-box.bad { background: var(--surface); opacity: 0.7; }
  .option-box.good { background: var(--black); border: 1px solid rgba(201,168,76,0.3); }

  .option-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    margin-bottom: 24px;
    display: block;
  }

  .option-box.bad .option-label { color: var(--muted); }
  .option-box.good .option-label { color: var(--gold); }

  .option-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
  }

  .option-box.bad h3 { color: var(--muted); }
  .option-box.good h3 { color: var(--white); }

  .option-list { list-style: none; padding: 0; }

  .option-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(201,168,76,0.06);
    font-size: 0.88rem;
    display: flex;
    gap: 12px;
    color: var(--muted);
  }

  .option-box.bad .option-list li::before { content: '✗'; color: rgba(201,168,76,0.3); }
  .option-box.good .option-list li::before { content: '✓'; color: var(--gold); }

  /* ─── FINAL CTA ───────────────────────────────────────── */
  .final-cta {
    background: var(--black);
    text-align: center;
    padding: 120px 10vw;
  }

  .final-cta .big-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white);
    margin: 32px 0;
  }

  .final-cta .big-text span { color: var(--gold); }

  .final-cta p {
    max-width: 520px;
    margin: 0 auto 40px;
    text-align: center;
  }

  /* ─── FOOTER (ORIGINAL — preserved for reference) ─────── */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 48px 10vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  footer .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    color: var(--gold);
  }

  footer p {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0;
    max-width: none;
  }

  footer .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  footer .footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
  }

  footer .footer-links a:hover { color: var(--gold); }

  /* ─── ANIMATIONS ──────────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes scrollPulse {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.4); opacity: 0.5; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── RESPONSIVE ──────────────────────────────────────── */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    section { padding: 70px 6vw; }

    .listen-up .two-col,
    .truth-inner,
    .tp-grid,
    .reset-book-layout,
    .options-split { grid-template-columns: 1fr; gap: 40px; }

    .pillar-grid,
    .process-steps,
    .testi-grid { grid-template-columns: 1fr; }

    .for-grid { grid-template-columns: 1fr; }

    footer { flex-direction: column; align-items: flex-start; }
  }

/* ═══ NAV BASE ═══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.nav-logo { height: 40px; width: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.7; }

.nav-cta {
  background: #fff;
  color: #000 !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover { background: #e0e0e0 !important; opacity: 1 !important; }

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

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: #0a0a0a;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0,0,0,0.4);
    box-sizing: border-box;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a { font-size: 1.1rem; }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }
  .nav-overlay.active { display: block; }
}

/* ═══ RESET PRODUCTS ═══ */
.reset-book-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.reset-book-visual { flex: 0 0 320px; }
.reset-steps-col { flex: 1; }

.book-carousel {
  position: relative;
  width: 260px;
  margin: 0 auto;
  user-select: none;
}

.book-carousel-track {
  position: relative;
  width: 100%;
  height: 360px;
}

.book-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.book-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.book-slide.exit-left {
  opacity: 0;
  transform: translateX(-40px);
}

.book-slide img {
  width: 200px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  display: block;
}

.book-label {
  display: block;
  margin-top: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8a96e;
}

.book-prev, .book-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(200, 169, 110, 0.4);
  color: #c8a96e;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.book-prev { left: -42px; }
.book-next { right: -42px; }

.book-prev:hover, .book-next:hover {
  background: rgba(200, 169, 110, 0.15);
  border-color: #c8a96e;
}

.book-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.book-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.book-dot.active { background: #c8a96e; }

.book-slide a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.book-cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #111;
  background: linear-gradient(to bottom, #f7ca00, #f0ac00);
  border: 1px solid #c8a000;
  padding: 7px 16px;
  border-radius: 20px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.book-slide a:hover .book-cta {
  background: linear-gradient(to bottom, #f0d000, #e8a800);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  border-color: #b08800;
}

.book-slide a:hover img { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9); }

@media (max-width: 768px) {
  .reset-book-layout { flex-direction: column; }

  .reset-book-visual {
    flex: unset;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
}


/* ═══════════════════════════════════════════════════════════
   FOOTER — EXPANDED
   Replace the old footer block above with this
   ═══════════════════════════════════════════════════════════ */

footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 72px 10vw 0;
  display: block; /* override old flex */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 48px 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

/* Brand column */
.footer-brand .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 14px;
  max-width: none;
}

.footer-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 280px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Column headings */
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

/* Nav links */
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold); }

/* Resources / blog posts */
.footer-resource {
  margin-bottom: 16px;
}

.footer-resource a {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  line-height: 1.45;
  transition: color 0.2s;
}

.footer-resource a:hover { color: var(--gold); }

.footer-resource-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
}

/* Journal strip */
.footer-journal-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  flex-wrap: wrap;
}

.footer-journal-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-journal-badge {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 10px;
  white-space: nowrap;
}

.footer-journal-text {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-journal-text strong {
  color: var(--cream);
  font-weight: 500;
}

.footer-journal-cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.35);
  padding: 10px 22px;
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s;
  flex-shrink: 0;
}

.footer-journal-cta:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0;
  max-width: none;
}

.footer-legal {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-legal a {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--gold); }

/* Footer responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
}

@media (max-width: 580px) {
  footer { padding: 56px 6vw 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-journal-strip { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════════
   BLOG — INDEX + POST PAGES
   ═══════════════════════════════════════════════════════════ */

/* Blog hero */
.blog-hero {
  padding: 160px 10vw 80px;
  background: var(--deep);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.blog-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.blog-hero h1 span { color: var(--gold); }

.blog-hero p {
  max-width: 520px;
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}

/* Blog filter tabs */
.blog-filters {
  padding: 32px 10vw;
  background: var(--black);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.blog-filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(201,168,76,0.15);
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-dim);
}

/* Blog grid */
.blog-index {
  padding: 72px 10vw 100px;
  background: var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Blog card */
.blog-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 0.25s;
  position: relative;
}

.blog-card:hover { background: #201e14; }

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

.blog-card-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.blog-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.blog-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
  max-width: none;
  flex: 1;
}

.blog-card-footer {
  padding: 20px 32px;
  border-top: 1px solid rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card-meta {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  opacity: 0.6;
}

.blog-card-arrow {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.blog-card:hover .blog-card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Featured card — spans 2 cols */
.blog-card.featured {
  grid-column: span 2;
}

.blog-card.featured .blog-card-inner { padding: 48px 44px 36px; }

.blog-card.featured h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.blog-card.featured p { font-size: 0.9rem; }

/* Blog post page */
.post-hero {
  padding: 160px 10vw 72px;
  background: var(--deep);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  max-width: 100%;
}

.post-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.post-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 24px;
}

.post-meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
}

/* Post body */
.post-body {
  padding: 80px 10vw 100px;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: start;
}

.post-content { max-width: 700px; }

.post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin: 52px 0 20px;
  line-height: 1.2;
}

.post-content h2:first-child { margin-top: 0; }

.post-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 36px 0 14px;
}

.post-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 22px;
  max-width: none;
}

.post-content p strong { color: var(--cream); }

.post-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 28px;
  margin: 36px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

.post-content ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.post-content ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  gap: 14px;
}

.post-content ul li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* Post sidebar */
.post-sidebar { position: sticky; top: 120px; }

.sidebar-box {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 32px 28px;
  margin-bottom: 24px;
}

.sidebar-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
}

.sidebar-links a:hover { color: var(--gold); }

/* Post CTA box */
.post-cta-box {
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 32px 28px;
}

.post-cta-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: none;
}

/* Blog responsive */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card.featured { grid-column: span 2; }
  .post-body { grid-template-columns: 1fr; gap: 60px; }
  .post-sidebar { position: static; }
}

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: span 1; }
  .blog-filters { padding: 24px 6vw; }
  .blog-index { padding: 48px 6vw 80px; }
  .blog-hero, .post-hero { padding: 140px 6vw 60px; }
  .post-body { padding: 56px 6vw 80px; }
}