/* ============================================================
   True North Effect - shared site shell
   Candlelit navy: warm, enveloping, premium. Gold = brass/warm light.
   ============================================================ */

:root {
  /* SPEAKEASY - deep espresso-brown ground, gilt brass, aged-ivory paper.
     We keep the --navy variable NAMES (the pages reference them everywhere)
     but retune them to a warm dark-brown family so nothing breaks. */
  --navy: #2a221b;        /* warm dark espresso (was navy) */
  --navy-dark: #1f1813;   /* deeper */
  --navy-deep: #1a1612;   /* the deep brown-black you chose */
  --navy-mid: #b89550;    /* muted bronze for mid tones */
  --navy-light: #efe6d6;  /* warm light for tints on dark */

  /* Brass / gilt - reads like gold leaf on dark wood */
  --accent: #c9a661;
  --accent-soft: #ddbf86;
  --accent-deep: #a3823f;
  --accent-light: #f6ecd8;

  /* Warm neutrals - cards are aged ivory, not bleached cream */
  --text: #211b14;
  --text-secondary: #4d4334;
  --text-light: #837664;
  --border: #e4d8c2;
  --bg: #fbf6ec;          /* aged ivory card */
  --bg-soft: #f4ebd9;     /* parchment inset */
  --warm-bg: #f1e6d1;
  --warm-border: #e6d9bf;
  --success: #1c6b50;
  --success-light: #e2f1e9;

  --shell-max: 1140px;
  --nav-h: 68px;
}

/* The site background: a deep candlelit navy gradient with a warm glow,
   so the hero white text and gold accents (designed for a dark ground) sing. */
.tne-body {
  margin: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  min-height: 100vh;
  background:
    radial-gradient(1600px 480px at 50% -160px, rgba(201,166,97,0.14), transparent 72%),
    radial-gradient(120% 130% at 50% 42%, transparent 50%, rgba(0,0,0,0.34) 100%),
    linear-gradient(180deg, #1c1610 0%, #141009 52%, #0e0b07 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* ---------------- NAV ---------------- */
.tne-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 22, 18, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(201, 166, 97, 0.28);
}
.tne-nav-inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tne-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.tne-brand-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
}
.tne-brand-mark em { color: var(--accent); font-style: italic; }
.tne-brand-tag {
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 238, 224, 0.55);
}
.tne-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tne-links a {
  display: inline-block;
  padding: 9px 14px;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  color: rgba(245, 238, 224, 0.8);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.tne-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.tne-links a.active { color: var(--accent); }
.tne-cta {
  margin-left: 8px;
  padding: 10px 20px !important;
  background: var(--accent);
  color: #2a221b !important;
  font-weight: 500;
  border-radius: 6px;
  letter-spacing: 0.04em;
  transition: background 0.2s !important;
}
.tne-cta:hover { background: var(--accent-soft) !important; }

.tne-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.tne-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: 0.2s;
}

@media (max-width: 860px) {
  .tne-burger { display: flex; }
  .tne-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(26, 22, 18, 0.97);
    backdrop-filter: blur(12px);
    padding: 8px 16px 16px;
    border-bottom: 1px solid rgba(205,171,109,0.22);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }
  .tne-links.open { max-height: 460px; }
  .tne-links a { padding: 13px 12px; border-radius: 8px; }
  .tne-cta { margin: 8px 0 0; text-align: center; }
}

/* ---------------- FOOTER ---------------- */
.tne-footer {
  border-top: 1px solid rgba(201, 166, 97, 0.28);
  background: rgba(20, 16, 13, 0.6);
  margin-top: 40px;
}
.tne-footer-inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 52px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.tne-footer-brand .tne-brand-mark { font-size: 24px; }
.tne-footer-note {
  font-size: 14.5px;
  color: rgba(245, 238, 224, 0.6);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 300px;
}
.tne-footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 500;
}
.tne-footer-col ul { list-style: none; margin: 0; padding: 0; }
.tne-footer-col li { margin-bottom: 11px; }
.tne-footer-col a {
  font-size: 13.5px;
  color: rgba(245, 238, 224, 0.72);
  text-decoration: none;
  transition: color 0.18s;
}
.tne-footer-col a:hover { color: var(--accent); }
.tne-footer-bottom {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 20px 24px 36px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.tne-footer-bottom p {
  font-size: 13.5px;
  color: rgba(245, 238, 224, 0.45);
  margin: 0;
}
.tne-footer-bottom .divider-dot { color: var(--accent); margin: 0 8px; }

@media (max-width: 760px) {
  .tne-footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Page content sits above the fixed background */
.tne-main { position: relative; z-index: 1; }

/* ============================================================
   LUXE MOTION - subtle, slow, purposeful (added)
   ============================================================ */

/* Respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Scroll fade-and-rise: the expensive-feeling one */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
/* staggered children */
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* Composed hero entrance on load */
@keyframes tneRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tne-enter > * { opacity: 0; animation: tneRise 1.2s cubic-bezier(0.22,1,0.36,1) forwards; }
.tne-enter > *:nth-child(1) { animation-delay: 0.15s; }
.tne-enter > *:nth-child(2) { animation-delay: 0.35s; }
.tne-enter > *:nth-child(3) { animation-delay: 0.55s; }
.tne-enter > *:nth-child(4) { animation-delay: 0.75s; }
.tne-enter > *:nth-child(5) { animation-delay: 0.95s; }

/* Subtle breathing candlelight glow behind everything */
.tne-glow { display: none; }
@keyframes tneBreathe {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

/* Elegant brass underline that draws itself on hover (nav + text links) */
.tne-links a, .tne-footer-col a {
  position: relative;
}
.tne-links a::after, .tne-footer-col a::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.tne-footer-col a::after { left: 0; right: 0; bottom: -2px; }
.tne-links a:hover::after, .tne-footer-col a:hover::after { transform: scaleX(1); }

/* Cards lift slowly and deepen shadow */
.plan-card, .printable-card, .bundle-card {
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.5s cubic-bezier(0.22,1,0.36,1) !important;
}

/* Buttons: smooth, slow */
.tne-cta, .btn-gold, .btn-navy {
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease !important;
}
.btn-gold:hover, .btn-navy:hover { transform: translateY(-1px); }

/* ============================================================
   ELEVATION PASS - editorial polish, craft, refinement
   ============================================================ */

/* Crisper, more editorial display type using the book's serif */
.hero h1, .section-header-title, .printable-section-title,
.plan-title, .printable-title, .bundle-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
  letter-spacing: 0.005em;
}

/* Hero: more dramatic scale + refined spacing */
.hero { padding: 130px 24px 110px !important; }
.hero h1 { font-weight: 300 !important; line-height: 1.1 !important; letter-spacing: 0.01em !important; }
.hero-eyebrow { letter-spacing: 0.32em !important; opacity: 0.65 !important; font-size: 10.5px !important; }

/* Refined section eyebrow rule - a thin brass line that feels intentional */
.section-header::before, .printable-section-header::before {
  content: '';
  display: block;
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 0 auto 22px;
}

/* Cards: deeper, warmer, more crafted; richer shadow + finer border */
.plan-card, .printable-card {
  border: 1px solid rgba(201,166,97,0.16) !important;
  box-shadow: 0 18px 50px -28px rgba(0,0,0,0.55) !important;
  background: linear-gradient(180deg, #fefcf7 0%, #fbf6ec 100%) !important;
}
.plan-card.featured {
  border: 1px solid rgba(201,166,97,0.42) !important;
  box-shadow: 0 24px 64px -30px rgba(0,0,0,0.6) !important;
}
.plan-card:hover, .printable-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 30px 70px -28px rgba(0,0,0,0.62) !important;
}

/* Gold buttons: subtle gradient + glow on hover, like lit foil */
.btn-gold, .tne-cta {
  background: linear-gradient(135deg, #d4b06d 0%, #c9a661 50%, #b89550 100%) !important;
  border: none !important;
  letter-spacing: 0.14em !important;
  box-shadow: 0 6px 22px -10px rgba(201,166,97,0.5) !important;
}
.btn-gold:hover, .tne-cta:hover {
  box-shadow: 0 10px 30px -8px rgba(201,166,97,0.7) !important;
  transform: translateY(-2px) !important;
}

/* Outline buttons on dark: refined brass hairline */
.btn-navy {
  border: 1px solid rgba(201,166,97,0.45) !important;
  letter-spacing: 0.14em !important;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1) !important;
}
.btn-navy:hover {
  background: rgba(201,166,97,0.08) !important;
  border-color: var(--accent) !important;
  transform: translateY(-2px) !important;
}

/* Section price: more refined */
.plan-price, .printable-price, .bundle-amount {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 500 !important;
}

/* Nav: a touch more breathing room + refined active state */
.tne-links a { letter-spacing: 0.02em; transition: color 0.35s ease; }

/* Smooth the scroll for the whole experience */
html { scroll-behavior: smooth; }

/* A faint hairline under the nav so it feels anchored on the dark */
.tne-nav, header.tne-nav, .nav, nav {
  border-bottom: 1px solid rgba(201,166,97,0.12);
}

/* ============================================================
   TYPOGRAPHY POLISH - lighter, airier, more luxe
   ============================================================ */

/* Display headings: lighter weight + air. Cormorant sings when it's light and spacious. */
.section-header-title, .printable-section-title {
  font-weight: 300 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.12 !important;
}
.plan-title {
  font-size: 30px !important;
  font-weight: 400 !important;
  letter-spacing: 0.008em !important;
  line-height: 1.18 !important;
}
.printable-title { font-size: 23px !important; font-weight: 400 !important; line-height: 1.22 !important; }
.bundle-title { font-size: 24px !important; font-weight: 400 !important; line-height: 1.25 !important; }

/* The session/featured card heading specifically - give it air so numbers don't read heavy */
.bundle-left .bundle-title, .plan-card .plan-title { letter-spacing: 0.01em !important; }

/* Body copy: ensure nothing is too small to read comfortably (min ~16px) */
.plan-body, .printable-body, .bundle-body, .plan-concept, .section-header-body,
.printable-section-body, .hero p {
  font-size: 17.5px !important;
  line-height: 1.7 !important;
  color: var(--text-secondary);
}
.plan-concept { font-style: italic; color: var(--accent-deep) !important; font-size: 16.5px !important; }

/* Includes lists: a hair larger + more line height for readability */
.plan-includes li { font-size: 14.5px !important; line-height: 1.5 !important; }

/* Eyebrows / tags: refined tracking, not too tiny */
.plan-tag, .printable-tag, .bundle-eyebrow, .hero-eyebrow {
  font-size: 12.5px !important;
  letter-spacing: 0.22em !important;
}

/* Prices: elegant and generous */
.plan-price { font-size: 38px !important; font-weight: 400 !important; }
.printable-price { font-size: 26px !important; }
.bundle-amount { font-size: 34px !important; }

/* Body font: standardize on DM Sans for warmth (drop the Inter/DM Sans split feeling) */
.tne-body { font-family: 'EB Garamond', Georgia, serif; font-size: 18.5px; line-height: 1.65; }

/* Catch the headings missed earlier: addon-title + quiz-title -> elegant light serif */
.addon-title, .quiz-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
  font-weight: 400 !important;
  font-size: 27px !important;
  letter-spacing: 0.01em !important;
  line-height: 1.22 !important;
  color: #2a221b !important;
}
.addon-concept, .quiz-concept {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 17.5px !important;
  font-style: italic !important;
}
.addon-eyebrow, .quiz-eyebrow {
  font-size: 12.5px !important;
  letter-spacing: 0.22em !important;
}
.addon-price { font-family: 'Cormorant Garamond', serif !important; font-weight: 400 !important; }


/* WARM BODY COPY - EB Garamond from the book, for personal feel */
body, .tne-body, p, li {
  font-family: 'EB Garamond', Georgia, serif;
}
.plan-body, .printable-body, .bundle-body, .section-header-body,
.printable-section-body, .hero p, .addon-body, .quiz-body {
  font-family: 'EB Garamond', Georgia, serif !important;
  font-size: 18.5px !important;
  line-height: 1.72 !important;
  font-weight: 400 !important;
}
.plan-includes li { font-family: 'EB Garamond', Georgia, serif !important; font-size: 17.5px !important; line-height: 1.55 !important; }
/* Keep functional UI elements (nav, buttons, eyebrows, tags) in clean sans for contrast */
.tne-nav, .tne-links, .tne-links a, .btn-gold, .btn-navy, .tne-cta,
.plan-tag, .printable-tag, .bundle-eyebrow, .hero-eyebrow,
.addon-eyebrow, .quiz-eyebrow {
  font-family: 'DM Sans', -apple-system, sans-serif !important;
}

/* ============================================================
   PRODUCT CARD WITH ART (boxed edition)
   ============================================================ */
/* The boxed-edition book card: book as elegant hero on top */
.plan-card--book {
  text-align: left;
  padding-top: 50px !important;
  background: #2a221b !important;
  border: 1.5px solid #c9a661 !important;
  position: relative;
  overflow: visible;
}
.plan-book-art {
  display: flex;
  justify-content: center;
  margin: 0 auto 28px;
}
.plan-book-art img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,0.45));
}
/* Ensure all text inside the dark featured card is readable (cream/ivory) */
.plan-card.featured .plan-body,
.plan-card.featured .plan-includes li {
  color: rgba(245, 238, 224, 0.85) !important;
}
.plan-card.featured .plan-concept {
  color: #c9a661 !important;
}
.plan-card.featured .plan-price-note {
  color: rgba(245, 238, 224, 0.6) !important;
}
.plan-card.featured .plan-price {
  color: #f5eee0 !important;
}
.plan-card.featured .plan-includes li::marker { color: #c9a661; }

/* Ensure plan-includes text is readable on cream cards (was light/grey) */
.plan-includes li {
  color: #4d4334 !important;
  opacity: 1 !important;
}
.plan-includes li::marker { color: var(--accent); }

/* Tighten the gap between Resources hero and first section */
.tne-main { padding-top: 0 !important; }

/* ============================================================
   LUXE ROTATING REMINDER BAND (replaces session sales card)
   ============================================================ */
.reminder-band {
  margin: 80px auto;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}
.reminder-rule {
  height: 1px;
  margin: 0 auto;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.65;
}
.reminder-stage {
  position: relative;
  min-height: 100px;
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reminder-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(8px);
  width: 100%;
  max-width: 640px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(245, 238, 224, 0.82);
  letter-spacing: 0.01em;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.22,1,0.36,1),
              transform 1.6s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.reminder-line a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,166,97,0.4);
  transition: border-color 0.4s ease, color 0.4s ease;
}
.reminder-line a:hover {
  color: var(--accent-soft);
  border-color: var(--accent);
}
.reminder-line.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
  pointer-events: auto;
}
@media (max-width: 640px) {
  .reminder-line { font-size: 18px; }
  .reminder-stage { min-height: 130px; }
}

/* ============================================================
   ROTATING WHO-I-WORK-WITH CARD
   ============================================================ */
.rotating-card {
  position: relative;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.rot-line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: 0.005em;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.4s cubic-bezier(0.22,1,0.36,1),
              transform 1.4s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.rot-line.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 640px) {
  .rot-line { font-size: 19px; }
  .rotating-card { min-height: 170px; }
}

/* ============================================================
   RESOURCES COHESION - tighten the page flow
   ============================================================ */
.section-header { margin-top: 56px !important; margin-bottom: 22px !important; }
.printable-section { margin-top: 48px !important; padding: 36px 40px !important; }
.printable-grid { gap: 22px !important; }
.plan-grid { gap: 22px !important; align-items: stretch !important; }
.plan-card { padding: 32px 32px !important; }
.printable-card { padding: 28px 28px !important; }

/* Equal-height cards so keepsake + printable look balanced */
.plan-grid { display: grid !important; }
.plan-card { display: flex !important; flex-direction: column !important; }
.plan-card .btn-gold, .plan-card .btn-navy { margin-top: auto; }

/* ============================================================
   CONTACT PAGE WARMTH - subtle radial warmth at top
   ============================================================ */
body.contact-page,
.tne-body.contact-page {
  background:
    radial-gradient(1200px 700px at -10% 110%, rgba(201,166,97,0.10), transparent 65%),
    radial-gradient(1200px 700px at 110% 110%, rgba(201,166,97,0.10), transparent 65%),
    radial-gradient(120% 130% at 50% 50%, transparent 55%, rgba(0,0,0,0.42) 100%),
    linear-gradient(180deg, #1a1410 0%, #110d09 50%, #0c0905 100%) !important;
  background-attachment: fixed !important;
}

/* ============================================================
   ANNUAL PLAN HERO LAYOUT (full-width hero + printable strip)
   ============================================================ */
.annual-hero {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(165deg, #221a13 0%, #1a140e 100%);
  border: 1.5px solid #c9a661;
  border-radius: 16px;
  padding: 56px 56px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), inset 0 1px 0 rgba(201,166,97,0.10);
  position: relative;
  overflow: visible;
}
.annual-hero::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 56px;
  background: linear-gradient(135deg, #d4b06d 0%, #c9a661 50%, #b89550 100%);
  color: #1a1612;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 4px;
  box-shadow: 0 6px 18px -6px rgba(201,166,97,0.5);
}
.annual-hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.annual-hero-art img {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(0,0,0,0.55));
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.annual-hero:hover .annual-hero-art img { transform: translateY(-3px); }
.annual-hero-content { min-width: 0; }
.annual-hero-content .plan-tag { color: #c9a661; }
.annual-hero-content .plan-accent { width: 32px; height: 1px; background: #c9a661; margin-bottom: 18px; }
.annual-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 12px;
  letter-spacing: 0.005em;
}
.annual-hero-content .plan-concept {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: #c9a661;
  line-height: 1.45;
  margin-bottom: 18px;
}
.annual-hero-content .plan-body {
  color: rgba(245,238,224,0.88) !important;
  font-family: 'EB Garamond', Georgia, serif !important;
  font-size: 16.5px !important;
  line-height: 1.72 !important;
}
.annual-hero-content .plan-includes {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
}
.annual-hero-content .plan-includes li {
  color: rgba(245,238,224,0.78) !important;
  font-size: 14.5px !important;
  padding: 6px 0 6px 18px;
  position: relative;
  font-family: 'EB Garamond', Georgia, serif !important;
}
.annual-hero-content .plan-includes li::before {
  content: '·';
  position: absolute; left: 4px; top: 2px;
  color: #c9a661;
  font-size: 22px;
  line-height: 1;
}
.annual-hero-content .plan-price-row {
  display: flex; align-items: baseline; gap: 14px;
  margin: 14px 0 22px;
}
.annual-hero-content .plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px !important;
  color: #ffffff !important;
  font-weight: 400;
}
.annual-hero-content .plan-price-note { color: rgba(245,238,224,0.55) !important; }
@media (max-width: 820px) {
  .annual-hero { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .annual-hero-art img { max-width: 240px; }
  .annual-hero::before { left: 32px; }
}

/* THE PRINTABLE STRIP - small, quiet companion below the hero */
.annual-printable-strip {
  margin-top: 18px;
  background: linear-gradient(180deg, #fefcf7 0%, #fbf6ec 100%);
  border: 1px solid #e4d8c2;
  border-radius: 12px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px -16px rgba(0,0,0,0.4);
  transition: box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.annual-printable-strip:hover {
  box-shadow: 0 18px 44px -16px rgba(0,0,0,0.5);
  transform: translateY(-1px);
}
.annual-printable-meta { flex: 1; min-width: 260px; }
.annual-printable-strip .printable-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a3823f;
  margin-bottom: 6px;
}
.annual-printable-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #2a221b;
  margin: 0 0 4px;
  line-height: 1.25;
}
.annual-printable-body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 16.5px;
  color: #4d4334;
  line-height: 1.6;
  margin: 0;
}
.annual-printable-cta {
  display: flex; align-items: center; gap: 18px;
  flex-shrink: 0;
}
.annual-printable-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #2a221b;
}
.annual-printable-strip .printable-price-note {
  font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: #a3823f;
}

/* ============================================================
   LUXE MOTION PASS - restrained, intentional touches
   ============================================================ */

/* Hero title brass underline that draws itself in on load */
.hero h1::after,
.section-header-title::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a661, transparent);
  margin: 18px auto 0;
  animation: tneDraw 1.6s 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}
.section-header-title::after { margin: 14px 0 0; max-width: 100px; }
@keyframes tneDraw {
  to { width: 80px; }
}

/* Cards lift more confidently on hover (was very subtle) */
.plan-card:hover, .printable-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 36px 80px -30px rgba(0,0,0,0.7) !important;
}

/* Inline italic for prices everywhere - they should feel like pulls, not labels */
.plan-price, .printable-price, .bundle-amount, .quiz-price, .annual-hero-content .plan-price, .annual-printable-price {
  font-style: normal;
}

/* Eyebrows get a tiny brass dot before them, draws attention without shouting */
.hero-eyebrow::before,
.plan-tag::before,
.printable-tag::before,
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  margin-top: -2px;
}

/* Brass dot pulse - very subtle breathing for one-time accents (used sparingly) */
@keyframes tnePulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.15); }
}
.hero-eyebrow::before {
  animation: tnePulse 3.2s ease-in-out infinite;
}

/* ============================================================
   HOMEPAGE: WHO + QUIZ ROW (side-by-side, 60/40 asymmetric)
   ============================================================ */
.who-quiz-row {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 24px;
  margin: 48px 0;
  align-items: stretch;
}
.who-quiz-row .card,
.who-quiz-row .quiz-nudge {
  margin: 0 !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.who-quiz-row .rotating-card {
  flex: 1;
  min-height: 160px;
}
.who-quiz-row .quiz-card-side {
  display: flex;
  flex-direction: column;
}
.who-quiz-row .quiz-card-side .nudge-body {
  flex: 1;
}
.who-quiz-row .quiz-card-side .btn-gold {
  margin-top: auto;
  align-self: flex-start;
}
@media (max-width: 820px) {
  .who-quiz-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Quiz card headline tightens slightly when in the side-by-side row */
.who-quiz-row .quiz-card-side .section-title {
  font-size: clamp(22px, 2.4vw, 26px) !important;
  line-height: 1.25 !important;
}
.who-quiz-row .who-card .section-title {
  font-size: clamp(22px, 2.4vw, 26px) !important;
  line-height: 1.25 !important;
}

/* ============================================================
   FACELIFT - Elevated who+quiz row: dark + cream, intentional
   ============================================================ */
.who-quiz-row--elevated {
  margin: 72px 0 !important;
  gap: 28px !important;
}

/* WHO card: deep speakeasy dark with brass moments */
.who-card--dark {
  background: linear-gradient(165deg, #1a140e 0%, #100c08 100%) !important;
  border: 1px solid rgba(201,166,97,0.20) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,0.55), inset 0 1px 0 rgba(201,166,97,0.06) !important;
  padding: 56px 52px !important;
  position: relative;
  overflow: hidden;
}
/* Subtle bottom-corner candlelight on the dark card */
.who-card--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(440px 280px at 15% 110%, rgba(201,166,97,0.10), transparent 60%),
    radial-gradient(440px 280px at 85% 110%, rgba(201,166,97,0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.who-card--dark > * { position: relative; z-index: 1; }

/* Rebrand the eyebrow and headline INSIDE the dark card */
.who-card--dark .eyebrow {
  color: #c9a661 !important;
}
.who-card--dark .eyebrow::before {
  background: #c9a661 !important;
}
.who-card--dark .section-title {
  color: #ffffff !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* Rotating lines on dark - more luxurious */
.who-card--dark .rot-line {
  color: rgba(245,238,224,0.92) !important;
  font-size: 22px !important;
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.005em;
}

/* QUIZ card: cream, but with more craft (deeper shadow, finer border, brass accent) */
.who-quiz-row--elevated .quiz-card-side {
  background: linear-gradient(180deg, #fefcf7 0%, #f9f3e6 100%) !important;
  border: 1px solid rgba(201,166,97,0.32) !important;
  border-radius: 14px !important;
  padding: 56px 44px !important;
  box-shadow: 0 28px 70px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.6) !important;
  position: relative;
  overflow: hidden;
}
/* Faint brass inset top-left ornament on cream card for craft */
.who-quiz-row--elevated .quiz-card-side::before {
  content: '';
  position: absolute;
  top: 24px; left: 24px;
  width: 22px; height: 1px;
  background: var(--accent);
  opacity: 0.7;
}
.who-quiz-row--elevated .quiz-card-side::after {
  content: '';
  position: absolute;
  bottom: 24px; right: 24px;
  width: 22px; height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

/* The quiz CTA button gets a confident moment */
.who-quiz-row--elevated .quiz-card-side .btn-gold {
  padding: 14px 36px !important;
  margin-top: 20px !important;
}

/* MOBILE: stack and reduce padding so it doesn't feel like two giant boxes */
@media (max-width: 820px) {
  .who-card--dark { padding: 40px 28px !important; }
  .who-quiz-row--elevated .quiz-card-side { padding: 40px 28px !important; }
  .who-quiz-row--elevated { margin: 48px 0 !important; }
}

/* ============================================================
   NORTH ARROW ORNAMENT - used sparingly as brand punctuation
   ============================================================ */
.tne-arrow {
  display: inline-block;
  width: 14px;
  height: 16px;
  vertical-align: middle;
  color: var(--accent);
  opacity: 0.85;
}
.tne-arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 64px auto;
  max-width: 480px;
  color: var(--accent);
}
.tne-arrow-divider::before,
.tne-arrow-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,166,97,0.5), transparent);
}
.tne-arrow-divider .tne-arrow {
  width: 18px;
  height: 20px;
  opacity: 0.9;
}

/* ============================================================
   EDITORIAL PACING - more breathing room across pages
   ============================================================ */
.tne-main > .page-wrap > .section-wrap > .section-header,
.tne-main > .page-wrap > .section-header {
  margin-top: 80px !important;
}
.tne-main > .page-wrap:first-child {
  /* lets first section sit closer to hero, doesn't get the 80px push */
}

/* ============================================================
   SCROLL REVEAL - composed entrance for the who+quiz moment
   ============================================================ */
.tne-reveal-arrow {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.1s cubic-bezier(0.22,1,0.36,1), transform 1.1s cubic-bezier(0.22,1,0.36,1);
}
.tne-reveal-arrow.in {
  opacity: 1;
  transform: translateY(0);
}
.tne-reveal-row {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s cubic-bezier(0.22,1,0.36,1) 0.25s, transform 1.2s cubic-bezier(0.22,1,0.36,1) 0.25s;
}
.tne-reveal-row.in {
  opacity: 1;
  transform: translateY(0);
}
/* Reduced motion users: skip the animation */
@media (prefers-reduced-motion: reduce) {
  .tne-reveal-arrow, .tne-reveal-row {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   RITUAL SECTION - Monthly Reset + Quarterly Pause + Bundle
   Same dark family as the Annual Plan hero, smaller scale
   ============================================================ */
.ritual-section {
  margin-top: 72px;
}
.ritual-header {
  margin-bottom: 32px;
  max-width: 580px;
}
.ritual-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.ritual-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  margin-top: -2px;
}
.ritual-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.18;
  margin: 0 0 14px;
  letter-spacing: 0.005em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.ritual-body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 17.5px;
  color: rgba(239, 230, 214, 0.82);
  line-height: 1.72;
  margin: 0;
}
.ritual-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 22px 0 0;
  opacity: 0.7;
}

.ritual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
@media (max-width: 760px) {
  .ritual-grid { grid-template-columns: 1fr; }
}

.ritual-card {
  background: linear-gradient(170deg, #1a140e 0%, #110d09 100%);
  border: 1px solid rgba(201,166,97,0.22);
  border-radius: 12px;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201,166,97,0.06);
  transition: box-shadow 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1), border-color 0.6s ease;
}
.ritual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 240px at 50% 130%, rgba(201,166,97,0.08), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.ritual-card > * { position: relative; z-index: 1; }
.ritual-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,166,97,0.38);
  box-shadow: 0 32px 70px rgba(0,0,0,0.6), inset 0 1px 0 rgba(201,166,97,0.1);
}

.ritual-card-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.ritual-card-rule {
  width: 24px;
  height: 1px;
  background: var(--accent);
  margin: 14px 0 18px;
  opacity: 0.7;
}
.ritual-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: 0.005em;
}
.ritual-card-concept {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16.5px;
  color: var(--accent);
  line-height: 1.45;
  margin: 0 0 16px;
}
.ritual-card-body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 16.5px;
  color: rgba(245,238,224,0.84);
  line-height: 1.68;
  margin: 0 0 22px;
  flex: 1;
}
.ritual-card-foot {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.ritual-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
}
.ritual-card-price-note {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 13.5px;
  color: rgba(201,166,97,0.85);
  letter-spacing: 0.04em;
}

/* Outlined gold button - quieter than filled, perfect for dark cards */
.btn-gold-outline {
  display: inline-block;
  padding: 11px 26px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.btn-gold-outline:hover {
  background: rgba(201,166,97,0.10);
  border-color: #dcc07f;
  color: #f5eee0;
  transform: translateY(-1px);
}

/* The bundle row sits as a slightly elevated dark card with brass border - anchors the section */
.bundle-row {
  margin-top: 28px;
  background: linear-gradient(165deg, #221a13 0%, #15100c 100%);
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 28px 70px rgba(0,0,0,0.55), inset 0 1px 0 rgba(201,166,97,0.10);
  position: relative;
}
.bundle-row .bundle-left { flex: 1; min-width: 280px; }
.bundle-row .bundle-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}
.bundle-row .bundle-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 8px;
}
.bundle-row .bundle-body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 14.5px;
  color: rgba(245,238,224,0.78);
  line-height: 1.6;
  margin: 0;
}
.bundle-row .bundle-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.bundle-row .bundle-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
}
.bundle-row .bundle-savings {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 14.5px;
  color: var(--accent);
  margin-bottom: 8px;
}
.bundle-row .btn-gold {
  padding: 12px 28px;
}

@media (max-width: 640px) {
  .ritual-card { padding: 30px 26px; }
  .bundle-row { padding: 26px 24px; flex-direction: column; align-items: flex-start; }
  .bundle-row .bundle-right { align-items: flex-start; }
}

/* ============================================================
   HOMEPAGE HERO - Full-bleed cinematic (Option C)
   ============================================================ */
.lc-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h, 68px)); /* pull up under the nav for true full-bleed */
  padding-top: var(--nav-h, 68px);
}
.lc-hero-bg { position: absolute; inset: 0; z-index: 0; }
.lc-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.lc-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,13,9,0.78) 0%, rgba(16,12,8,0.62) 45%, rgba(12,9,5,0.94) 100%);
}
.lc-hero-inner {
  position: relative; z-index: 1;
  max-width: 760px;
  padding: 0 32px;
}
.lc-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 26px;
}
.lc-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.06;
  color: #fff;
  margin: 0 0 26px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 36px rgba(0,0,0,0.55);
}
.lc-hero h1 em { font-style: italic; color: var(--accent); }
.lc-hero p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(245,238,224,0.92);
  max-width: 520px;
  margin: 0 auto 38px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}
.lc-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* gentle scroll cue at the bottom */
.lc-scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 22px; height: 26px;
  color: rgba(201,166,97,0.7);
  animation: lcBob 2.4s ease-in-out infinite;
}
.lc-scroll-cue svg { width: 100%; height: 100%; }
@keyframes lcBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%      { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* MOBILE: keep face visible, strengthen overlay for text legibility */
@media (max-width: 720px) {
  .lc-hero { min-height: 90vh; }
  .lc-hero-bg img { object-position: center 18%; }
  .lc-hero-bg::after {
    background: linear-gradient(180deg, rgba(18,13,9,0.62) 0%, rgba(16,12,8,0.55) 38%, rgba(12,9,5,0.96) 100%);
  }
  .lc-btns { flex-direction: column; align-items: stretch; }
  .lc-btns a { text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .lc-scroll-cue { animation: none; }
}

/* ============================================================
   HOMEPAGE - Editorial, luxe, conversion-minded (full rebuild)
   ============================================================ */

/* Shared homepage type tokens */
.home-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
}
.home-eyebrow.centered { text-align: center; }
.home-eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--accent);
  margin-right: 12px;
  vertical-align: middle;
  margin-top: -3px;
}
.home-eyebrow.centered::before { display: none; }
.home-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  color: #fff;
  line-height: 1.16;
  margin: 0 0 22px;
  letter-spacing: 0.005em;
}
.home-h2.centered { text-align: center; }

/* --- HERO --- */
.home-hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 130px 32px 96px;
  text-align: center;
}
.home-hero-arrow {
  width: 20px; height: 24px;
  color: var(--accent);
  margin: 0 auto 32px;
  display: block;
  opacity: 0.9;
}
.home-hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 32px;
}
.home-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(46px, 7.5vw, 92px);
  line-height: 1.04;
  color: #fff;
  margin: 0 0 30px;
  letter-spacing: 0.01em;
}
.home-hero h1 em { font-style: italic; color: var(--accent); }
.home-hero-sub {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
  color: rgba(245,238,224,0.82);
  max-width: 500px;
  margin: 0 auto 18px;
}
.home-hero-positioning {
  font-family: 'Jost', 'DM Sans', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a661;
  margin: 0 auto 40px;
}
.home-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* full-width editorial hairline */
.home-rule {
  max-width: 1180px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,166,97,0.32), transparent);
}

/* --- THE WORK --- */
.home-work {
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 72px;
  align-items: center;
}
.home-work-text p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18.5px;
  line-height: 1.8;
  color: rgba(245,238,224,0.8);
  margin: 0 0 18px;
}
.home-work-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}
.home-work-photo img { width: 100%; height: 100%; object-fit: cover; }

.link-arrow {
  display: inline-block;
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,166,97,0.4);
  padding-bottom: 3px;
  transition: all 0.4s ease;
}
.link-arrow span { transition: margin 0.4s ease; margin-left: 4px; }
.link-arrow:hover { color: var(--accent-soft); border-color: var(--accent); }
.link-arrow:hover span { margin-left: 10px; }

/* --- WHO THIS IS FOR --- */
.home-who {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  text-align: center;
}
.home-who-head { margin-bottom: 10px; }
.home-rotating {
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 56px;
  max-width: 680px;
}
.home-rot {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) translateY(8px);
  width: 100%;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 300;
  color: rgba(245,238,224,0.92);
  line-height: 1.4;
  letter-spacing: 0.005em;
  padding: 0 20px;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.22,1,0.36,1), transform 1.4s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.home-rot.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
  pointer-events: auto;
}

/* self-select paths */
.home-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
  text-align: left;
}
.home-path {
  padding: 38px 34px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}
.home-path:first-child {
  background: linear-gradient(165deg, #221a13 0%, #15100c 100%);
  border: 1.5px solid var(--accent);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201,166,97,0.1);
}
.home-path:last-child {
  background: linear-gradient(180deg, #fefcf7 0%, #f7efe1 100%);
  border: 1px solid rgba(201,166,97,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.home-path-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.home-path:first-child .home-path-label { color: var(--accent); }
.home-path:last-child .home-path-label { color: var(--accent-deep); }
.home-path-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 12px;
}
.home-path:first-child .home-path-title { color: #fff; }
.home-path:last-child .home-path-title { color: #2a221b; }
.home-path-body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0 0 24px;
  flex: 1;
}
.home-path:first-child .home-path-body { color: rgba(245,238,224,0.82); }
.home-path:last-child .home-path-body { color: #4d4334; }
.home-path .btn-gold, .home-path .btn-outline-gold { align-self: flex-start; }

/* outline gold button (for cream card) */
.btn-outline-gold {
  display: inline-block;
  padding: 13px 30px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-deep);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.btn-outline-gold:hover {
  background: rgba(201,166,97,0.12);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
}

/* --- QUIET CREDIBILITY --- */
.home-trust {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 40px 90px;
  text-align: center;
}
.home-trust-arrow {
  width: 18px; height: 22px;
  color: var(--accent);
  margin: 0 auto 26px;
  display: block;
  opacity: 0.85;
}
.home-trust-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.5;
  color: rgba(245,238,224,0.88);
  margin: 0;
  letter-spacing: 0.005em;
}

/* --- WARM BOOKING CLOSE --- */
.home-close {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 40px 120px;
  text-align: center;
  position: relative;
}
.home-close-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(38px, 5.5vw, 64px);
  color: #fff;
  line-height: 1.08;
  margin: 0 0 24px;
}
.home-close-body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(245,238,224,0.82);
  max-width: 540px;
  margin: 0 auto 38px;
}
.btn-lg { padding: 16px 42px !important; font-size: 13.5px !important; }
.home-close-or {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 16.5px;
  color: rgba(245,238,224,0.6);
  margin: 28px 0 0;
}
.home-close-or a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,166,97,0.4);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}
.home-close-or a:hover { color: var(--accent-soft); border-color: var(--accent); }

/* --- MOBILE --- */
@media (max-width: 860px) {
  .home-hero { padding: 84px 24px 60px; }
  .home-work {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 64px 24px;
    text-align: center;
  }
  .home-work-text .home-eyebrow { text-align: center; }
  .home-work-text .home-eyebrow::before { display: none; }
  .home-work-photo { max-width: 300px; margin: 0 auto; order: -1; }
  .home-who { padding: 60px 24px 80px; }
  .home-paths { grid-template-columns: 1fr; gap: 18px; }
  .home-hero-btns { flex-direction: column; align-items: stretch; }
  .home-hero-btns a { text-align: center; }
}

/* ============================================================
   SAFETY: never let .reveal content stay invisible if JS fails
   ============================================================ */
/* If JavaScript is disabled entirely, show everything */
.no-js .reveal { opacity: 1 !important; transform: none !important; }
/* Respect reduced motion: no fade, just show */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   ANCHOR LINK OFFSET - so jumped-to sections clear the fixed nav
   ============================================================ */
#annual-plan, #alignment-check, #rituals, #start-here {
  scroll-margin-top: 100px;
}

/* Permission line - quiet, intimate aside near the booking ask */
.home-path-permission {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--accent);
  margin: 0 0 22px;
  padding-left: 14px;
  border-left: 1px solid rgba(201,166,97,0.4);
  opacity: 0.92;
}

/* ============================================================
   GLOW SYSTEM - animated brass dots + the word "Effect"
   Added per request: more of the glowing dots, and a glowing
   "Effect" in the wordmark. Honors prefers-reduced-motion.
   ============================================================ */
@keyframes tneGlowDot {
  0%, 100% { background: var(--accent);
    box-shadow: 0 0 3px rgba(201,166,97,0.45), 0 0 7px rgba(201,166,97,0.20); }
  50%      { background: var(--accent-soft);
    box-shadow: 0 0 8px rgba(221,191,134,0.95), 0 0 16px rgba(221,191,134,0.55); }
}
@keyframes tneGlowText {
  0%, 100% { color: var(--accent); text-shadow: 0 0 5px rgba(201,166,97,0.30); }
  50%      { color: var(--accent-soft);
    text-shadow: 0 0 13px rgba(221,191,134,0.85), 0 0 26px rgba(221,191,134,0.40); }
}
@keyframes tneGlowChar {
  0%, 100% { color: var(--accent); text-shadow: 0 0 3px rgba(201,166,97,0.40); }
  50%      { color: var(--accent-soft); text-shadow: 0 0 10px rgba(221,191,134,0.90); }
}

/* The wordmark: make "Effect" glow, in nav and footer, every page */
.tne-brand-mark em { color: var(--accent); animation: tneGlowText 4.6s ease-in-out infinite; }

/* Circular brass accent dots glow (homepage "who this is for", utility dots) */
.tne-body .feeling-dot,
.tne-body .glow-dot,
.tne-body .credential-dot { background: var(--accent); animation: tneGlowDot 4s ease-in-out infinite; }

/* Stagger them so they breathe out of sync, more alive */
.tne-body .feelings-grid .feeling-item:nth-child(2n) .feeling-dot { animation-delay: 1.1s; }
.tne-body .feelings-grid .feeling-item:nth-child(3n) .feeling-dot { animation-delay: 2.2s; }
.tne-body .glow-dot:nth-child(2n) { animation-delay: 1.3s; }

/* Text middot dividers (footers, meta lines) glow */
.tne-body .divider-dot { color: var(--accent); animation: tneGlowChar 4.6s ease-in-out infinite; }
.tne-body .divider-dot:nth-of-type(2n) { animation-delay: 1.5s; }

/* A standalone glowing dot you can drop anywhere as an accent */
.glow-dot { display:inline-block; width:6px; height:6px; border-radius:50%;
  background:var(--accent); vertical-align:middle; }

/* Cover art inside keepsake product cards */
.keepsake-art { width:100%; max-width:172px; margin:0 auto 22px; display:block; }
.keepsake-art img { width:100%; height:auto; display:block;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.45)); }

@media (prefers-reduced-motion: reduce) {
  .tne-brand-mark em, .tne-body .feeling-dot, .tne-body .glow-dot,
  .tne-body .credential-dot, .tne-body .divider-dot { animation: none !important; }
}

/* The Collection card with slipcase art */
.collection-row .bundle-art { flex:0 0 auto; }
.collection-row .bundle-art img { width:200px; max-width:40vw; height:auto; display:block;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.45)); }
@media (max-width:640px){ .collection-row .bundle-art img { width:170px; margin:0 auto 8px; } }
