/* ============================================
   THE END OF SELF-ABANDONMENT — FUNNEL CSS
   ============================================ */

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

/* BRAND TOKENS */
:root {
  --ivory:       #F6F3EC;
  --sand:        #E8DFCF;
  --linen:       #F3EEE7;
  --charcoal:    #2A2A2A;
  --taupe:       #6B5E52;
  --emerald:     #0D4D44;
  --gold:        #CBAA6A;
  --seafoam:     #DCE6DB;
  --border:      #DDD5C8;
  --max-content: 700px;
}

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

/* ============================================
   NAVBAR (shared with main site)
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2.5rem;
  background: rgba(246,243,236,0.97);
  border-bottom: 1px solid #CBAA6A;
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.nav-wordmark {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #2A2A2A;
  white-space: nowrap;
}
.nav-logo { text-decoration: none; color: inherit; }
.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2A2A2A;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: #CBAA6A; }
.nav-links .nav-cta {
  border: 1px solid #2A2A2A;
  padding: 0.55rem 1.2rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links .nav-cta:hover {
  color: #CBAA6A !important;
  border-color: #CBAA6A !important;
}
/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #2A2A2A;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
body.nav-open .nav-toggle span:first-child {
  transform: translateY(8.5px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.nav-open .nav-toggle span:last-child {
  transform: translateY(-8.5px) rotate(-45deg);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 198;
}
.nav-overlay.open { display: block; }
@media (max-width: 768px) {
  .navbar { padding: 0 1.4rem; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: #F6F3EC;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.8rem;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #2A2A2A !important;
    text-transform: none;
  }
  .nav-links .nav-cta {
    border: none;
    padding: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #CBAA6A !important;
    text-transform: none;
  }
  .nav-toggle { display: flex; }
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

/* TYPOGRAPHY */
.display, h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.15;
}

.eyebrow {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}

.pull-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.4;
  font-weight: 300;
}

/* SECTIONS */
.funnel-section {
  padding: 100px 24px;
}

.funnel-section--linen    { background: var(--linen); }
.funnel-section--sand     { background: var(--sand); }
.funnel-section--seafoam  { background: var(--seafoam); }
.funnel-section--emerald  { background: var(--emerald); color: #F6F3EC; }
.funnel-section--ivory    { background: var(--ivory); }

.section-inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.section-inner--narrow { max-width: 640px; margin: 0 auto; }
.section-inner--wide   { max-width: 900px; margin: 0 auto; }

/* GOLD GLYPH DIVIDER */
.glyph-divider {
  display: block;
  text-align: center;
  color: var(--gold);
  font-size: 1rem;
  margin: 2rem 0;
  letter-spacing: 0.3em;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid currentColor;
  background: transparent;
  padding: 18px 36px;
  border-radius: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  text-align: center;
}

.btn--ivory {
  color: #F6F3EC;
  border-color: #F6F3EC;
}
.btn--ivory:hover {
  background: rgba(246,243,236,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.btn--gold-fill {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn--gold-fill:hover {
  background: #b8944f;
  border-color: #b8944f;
  color: var(--charcoal);
}

.btn--gold-outline {
  color: var(--gold);
  border-color: var(--gold);
  background: transparent;
}
.btn--gold-outline:hover {
  background: rgba(203,170,106,0.1);
}

.btn--charcoal-outline {
  color: var(--charcoal);
  border-color: var(--charcoal);
  background: transparent;
}
.btn--charcoal-outline:hover {
  background: rgba(42,42,42,0.06);
}

.btn--full { display: block; width: 100%; }

/* GOLD RULE */
.gold-rule {
  border: none;
  border-top: 1px solid var(--gold);
  width: 80px;
  margin: 2.5rem auto;
}

/* ============================================
   PAGE 1 — HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__eyebrow {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2rem;
}

.hero__headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: #F6F3EC;
  margin-bottom: 2rem;
}

.hero__sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(246,243,236,0.85);
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ============================================
   PAGE 1 — WHO IT'S FOR GRID
   ============================================ */

.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.for-card {
  background: #F6F3EC;
  border: 1px solid var(--border);
  padding: 2rem;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--charcoal);
}

/* ============================================
   PAGE 1 — WHAT'S INSIDE GRID
   ============================================ */

.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.inside-card {
  background: #F6F3EC;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.5rem;
}

.inside-card--emerald-top {
  border-top-color: var(--emerald);
}

.inside-card__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.inside-card__title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.75rem;
}

.inside-card__body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--taupe);
}

/* THE SOUND BLOCK */
.sound-block {
  background: var(--emerald);
  padding: 3.5rem 2.5rem;
  margin-top: 3rem;
  text-align: center;
}

.sound-block__label {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}

.sound-block__headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #F6F3EC;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.sound-block__body {
  font-size: 0.9rem;
  color: rgba(246,243,236,0.75);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   PAGE 1 — GUIDES
   ============================================ */

.guides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2.5rem;
  align-items: start;
}

.guide-photo {
  width: 100%;
  object-fit: cover;
  display: block;
  margin-bottom: 1.5rem;
  filter: grayscale(20%) sepia(10%);
}

.guide-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

/* ============================================
   PAGE 1 — PRICING
   ============================================ */

.price-box {
  background: var(--emerald);
  color: #F6F3EC;
  max-width: 520px;
  margin: 2.5rem auto 0;
  padding: 3rem 2.5rem;
  text-align: center;
}

.price-box__label {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.price-box__price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-box__sub {
  font-size: 0.85rem;
  color: rgba(246,243,236,0.65);
  margin-bottom: 2rem;
}

.price-box__includes {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  color: rgba(246,243,236,0.9);
  line-height: 2;
}

.price-box__includes li::before {
  content: '✦ ';
  color: var(--gold);
  font-size: 0.7rem;
}

.price-box__subtext {
  font-size: 0.75rem;
  color: rgba(246,243,236,0.45);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ============================================
   PROGRESS BAR (Pages 2 & 3)
   ============================================ */

.progress-bar {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.progress-step {
  display: flex;
  align-items: center;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  white-space: nowrap;
}

.progress-step--active {
  color: var(--gold);
}

.progress-step--done {
  color: var(--charcoal);
}

.progress-sep {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 12px;
  flex-shrink: 0;
}

/* ============================================
   UPSELL BOX (Pages 2 & 3)
   ============================================ */

.upsell-box {
  background: var(--emerald);
  color: #F6F3EC;
  padding: 2.5rem;
  margin: 2rem 0;
}

.upsell-box__label {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.upsell-box__price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.upsell-box__total {
  font-size: 0.85rem;
  color: rgba(246,243,236,0.6);
  margin-bottom: 1.5rem;
}

.upsell-box__includes {
  list-style: none;
  font-size: 0.9rem;
  color: rgba(246,243,236,0.9);
  line-height: 2;
  margin-bottom: 0;
}

.upsell-box__includes li::before {
  content: '✦ ';
  color: var(--gold);
  font-size: 0.7rem;
}

.upsell-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thankyou-page {
  background: var(--emerald);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.thankyou-inner {
  max-width: 640px;
  width: 100%;
  text-align: center;
  color: #F6F3EC;
}

.thankyou-glyph {
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 2rem;
}

.thankyou-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #F6F3EC;
  margin-bottom: 2rem;
}

.thankyou-body {
  font-size: 0.95rem;
  color: rgba(246,243,236,0.8);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.next-steps {
  text-align: left;
  margin-top: 2.5rem;
}

.next-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.next-step__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.next-step__title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}

.next-step__body {
  font-size: 0.9rem;
  color: rgba(246,243,236,0.8);
  line-height: 1.75;
}

.thankyou-footer {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246,243,236,0.35);
  margin-top: 3rem;
  line-height: 2;
}

/* ============================================
   FOOTER (Page 1)
   ============================================ */

.funnel-footer {
  text-align: center;
  padding: 2rem 24px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  background: var(--ivory);
  border-top: 1px solid var(--border);
}

/* ============================================
   UPSELL PAGE WRAPPER
   ============================================ */

.upsell-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.upsell-main {
  flex: 1;
  padding: 80px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.upsell-inner {
  max-width: 620px;
  width: 100%;
}

.upsell-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.upsell-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}

.upsell-note {
  font-size: 0.82rem;
  color: var(--taupe);
  text-align: center;
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */

@media (max-width: 768px) {
  .funnel-section { padding: 60px 20px; }

  html, body { overflow-x: hidden; max-width: 100%; }

  .section-inner,
  .section-inner--narrow,
  .section-inner--wide {
    max-width: 100%;
    padding: 0;
  }

  /* Hero: top padding accounts for fixed 72px navbar */
  .hero { padding: 120px 20px 60px; min-height: 90vh; }

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

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

  .guides-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__headline {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .price-box {
    padding: 2rem 1.5rem;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .price-box__price { font-size: 3rem; }

  .upsell-box {
    padding: 2rem 1.5rem;
  }

  .progress-bar {
    padding: 12px 16px;
    gap: 0;
  }

  .progress-step {
    font-size: 0.65rem;
  }

  .progress-sep {
    width: 20px;
    margin: 0 6px;
  }

  .btn {
    padding: 16px 24px;
    min-height: 48px;
  }

  .btn--full {
    width: 100%;
  }

  .sound-block {
    padding: 2.5rem 1.5rem;
  }

  .funnel-footer { padding: 2rem 20px; letter-spacing: 0.1em; }

  /* Prevent any horizontal overflow */
  body { overflow-x: hidden; }
}

/* ============================================
   TOUCH UP — GUIDE PHOTO OVERRIDES
   ============================================ */

/* vo-touchup-111: guide photo (Paige) */
.vo-touchup-111 {
  width: 418px !important;
  height: 350px !important;
  margin-top: 0px !important;
  object-position: 50% 10% !important;
}
@media (max-width: 1100px) {
  .vo-touchup-111 {
    width: 100% !important;
    height: 350px !important;
    object-position: 50% 18% !important;
  }
}
@media (max-width: 768px) {
  .vo-touchup-111 {
    width: 100% !important;
    height: 300px !important;
    object-position: 50% 18% !important;
  }
}
@media (max-width: 480px) {
  .vo-touchup-111 {
    width: 100% !important;
    height: 260px !important;
    object-position: 50% 18% !important;
  }
}

/* vo-touchup-117: guide photo (Josh) */
.vo-touchup-117 {
  width: 418px !important;
  height: 350px !important;
  object-position: 50% 18% !important;
}
@media (max-width: 1100px) {
  .vo-touchup-117 {
    width: 100% !important;
    height: 350px !important;
    object-position: 50% 30% !important;
  }
}
@media (max-width: 768px) {
  .vo-touchup-117 {
    width: 100% !important;
    height: 300px !important;
    object-position: 50% 30% !important;
  }
}
@media (max-width: 480px) {
  .vo-touchup-117 {
    width: 100% !important;
    height: 260px !important;
    object-position: 50% 30% !important;
  }
}

@media (max-width: 480px) {
  .funnel-section { padding: 50px 16px; }
  .hero { padding: 100px 16px 50px; }
  .hero__headline { font-size: 2rem; }
  .progress-step { font-size: 0.6rem; letter-spacing: 0.08em; }
  .progress-sep { width: 16px; margin: 0 4px; }
  .upsell-main { padding: 48px 16px 60px; }
  .upsell-headline { font-size: 2rem; }
  .upsell-box { padding: 1.8rem 1.2rem; }
  .price-box { padding: 2rem 1.2rem; }
  .price-box__price { font-size: 2.8rem; }
  .btn { padding: 14px 20px; font-size: 0.85rem; }
}
