/* ============================================
   THE UNDOING METHOD — BESPOKE STYLES
   ============================================ */

/* --- DESIGN TOKENS --- */
:root {
  --ivory:        #F5EFE6;
  --sand:         #EDE0CF;
  --linen:        #EDE4D6;
  --espresso:     #1E1A16;
  --taupe:        #5C4A3A;
  --sage-mist:    #7A9E8A;
  --seafoam:      #C4D9CE;
  --emerald:      #2C4A3E;
  --gold:         #C9A96E;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-eyebrow: 'Tenor Sans', Arial, sans-serif;
  --font-body:    'Inter', Arial, sans-serif;
  --max-content:  1100px;
  --max-text:     700px;
  --pad-desktop:  120px;
  --pad-mobile:   80px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--espresso);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- UTILITY --- */
.eyebrow {
  font-family: var(--font-eyebrow);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--espresso);
  opacity: 0.7;
  margin-bottom: 1.4rem;
}
.eyebrow.centered { text-align: center; }
.gold-eyebrow { color: var(--gold); }
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--sage-mist);
  margin: 2rem auto;
}
.centered-rule { margin: 2.5rem auto; }

/* Star separator */
.star-sep {
  text-align: center;
  color: var(--sage-mist);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 2rem 0;
  background: var(--ivory);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2.5rem;
  transition: background 0.3s ease, border-color 0.3s ease;
  background: rgba(245,239,230,0.97);
  border-bottom: 1px solid var(--gold);
  backdrop-filter: blur(12px);
  opacity: 1;
}
.navbar.visible { opacity: 1; }
.navbar.scrolled {
  background: rgba(245,239,230,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--gold);
}
.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: var(--font-eyebrow);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--espresso);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.navbar.scrolled .nav-wordmark { color: var(--espresso); }
.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso);
  transition: color 0.2s ease;
}
.navbar.scrolled .nav-links a { color: var(--espresso); }
.nav-links a:hover { color: var(--gold); }

/* Nav CTA button */
.nav-links .nav-cta {
  border: 1px solid var(--espresso);
  padding: 0.55rem 1.2rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.navbar.scrolled .nav-links .nav-cta {
  border-color: var(--espresso);
  color: var(--espresso);
}
.nav-links .nav-cta:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !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: var(--espresso);
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
.navbar.scrolled .nav-toggle span { background: var(--espresso); }

/* Hamburger → X animation when nav is open */
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);
}

/* Mobile overlay — transparent tap-target behind open menu */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 198;
}
.nav-overlay.open { display: block; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a3040;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 35, 0.45);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 860px;
}
.hero-wordmark {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-logo-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-logo-img {
  width: auto;
  height: auto;
  max-width: 600px;
  max-height: 200px;
  object-fit: contain;
  /* Invert to white so it reads on the dark hero image */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.hero-rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2.8rem;
  opacity: 0.7;
}
.hero-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: #F5F0E8;
  margin-bottom: 2rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.18);
}
.hero-sub {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin-bottom: 3.5rem;
}
.btn-hero {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  border: 1px solid rgba(246,243,236,0.7);
  color: var(--ivory);
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.btn-hero:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================
   INTRO MANIFESTO
   ============================================ */
.intro {
  background: var(--ivory);
  padding: 150px 2rem;
}
.intro-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--espresso);
  letter-spacing: 0.04em;
}
.intro-body {
  font-family: var(--font-body);
  font-size: 1.155rem;
  line-height: 1.9;
  color: var(--taupe);
  font-weight: 300;
  text-align: center;
}

/* ============================================
   THREE PILLARS
   ============================================ */
.pillars {
  background: var(--sand);
  padding: var(--pad-desktop) 2rem;
}
.pillars-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: start;
}
.pillar {
  padding: 0 3.5rem;
  text-align: center;
}
.pillar-divider {
  background: rgba(122,158,138,0.22);
  min-height: 240px;
  align-self: stretch;
}
.pillar-icon {
  margin: 0 auto 2rem;
  width: 48px;
  height: 48px;
}
.pillar-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--espresso);
  margin-bottom: 1rem;
}
.pillar-body {
  font-family: var(--font-body);
  font-size: 1.045rem;
  line-height: 1.85;
  color: var(--taupe);
  font-weight: 300;
}

/* ============================================
   IMAGE BREAK
   ============================================ */
.image-break {
  width: 100%;
  height: 60vh;
  min-height: 320px;
  overflow: hidden;
  display: block;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: filter 0.4s ease;
}
.image-break:hover img { filter: brightness(1.02); }

/* ============================================
   THE METHOD
   ============================================ */
.method {
  background: var(--ivory);
  padding: var(--pad-desktop) 2rem;
}
.method-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}
.method-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.22;
  color: var(--espresso);
  margin-bottom: 1.8rem;
}
.method-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--taupe);
  font-weight: 300;
}
.method-list { list-style: none; }
.method-item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.3);
}
.method-item:first-child { border-top: 1px solid rgba(201,169,110,0.3); }
.method-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  padding-top: 0.1rem;
  min-width: 2rem;
}
.method-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.method-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--espresso);
  letter-spacing: 0.03em;
}
.method-sub {
  font-family: var(--font-eyebrow);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--seafoam);
  padding: var(--pad-desktop) 2rem;
}
.testimonials-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 3rem;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--espresso);
  letter-spacing: 0.02em;
  max-width: 640px;
  padding: 2.5rem 0;
}
.star-sep-inline {
  color: var(--sage-mist);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

/* ============================================
   EDITORIAL IMAGE PAIR
   ============================================ */
.image-pair {
  display: flex;
  width: 100%;
  background: var(--sand);
}
.image-pair-left {
  width: 60%;
  overflow: hidden;
  height: 65vh;
  min-height: 360px;
}
.image-pair-right {
  width: 40%;
  overflow: hidden;
  height: 65vh;
  min-height: 360px;
}
.image-pair-left img,
.image-pair-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 0.4s ease;
}
.image-pair-left:hover img,
.image-pair-right:hover img { filter: brightness(1.02); }
.image-pair + .star-sep { background: var(--sand); }


/* ============================================
   BIO — THE GUIDE
   ============================================ */
.bio {
  background: var(--ivory);
  padding: var(--pad-desktop) 2rem;
}
.bio-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.bio-image {
  overflow: hidden;
}
.bio-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center top;
  transition: filter 0.4s ease;
}
.bio-image:hover img { filter: brightness(1.02); }
.bio-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--espresso);
  margin-bottom: 0.4rem;
}
.bio-title {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 2rem;
}
.bio-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--taupe);
  font-weight: 300;
  margin-bottom: 2rem;
}
.bio-close {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--espresso);
  letter-spacing: 0.03em;
  margin-bottom: 1.8rem;
}
.bio-link {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color 0.2s ease;
  border-bottom: 1px solid rgba(61,107,85,0.3);
  padding-bottom: 2px;
}
.bio-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ============================================
   OFFERS — ENTRY POINTS
   ============================================ */
.offers {
  background: linear-gradient(160deg, #f5ead6 0%, #ede3d0 45%, #e8e0d4 100%);
  padding: var(--pad-desktop) 2rem;
}
.offers-inner {
  max-width: var(--max-content);
  margin: 0 auto;
}
.offers-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--espresso);
  text-align: center;
  margin-bottom: 0.8rem;
}
.offers-sub {
  font-family: var(--font-body);
  font-size: 1.045rem;
  line-height: 1.8;
  color: var(--taupe);
  font-weight: 300;
  text-align: center;
  margin-bottom: 4rem;
}
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.offers-grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.offers-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.offer-block {
  padding: 3rem 2.4rem;
  border: 1px solid rgba(201,169,110,0.25);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: rgba(255,250,242,0.88);
  position: relative;
}
.offers-grid-4 .offer-block + .offer-block { border-left: none; }
.offer-block + .offer-block { border-left: none; }
/* ============================================
   CONNECTION CALL SECTION
   ============================================ */
.connection-call {
  padding: 6rem 2rem;
  background: var(--cream);
  text-align: center;
}
.connection-call-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.connection-call-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--espresso);
  margin: 0;
}
.connection-call-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--taupe);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.connection-call-card {
  width: 100%;
  max-width: 480px;
  padding: 3rem 2.4rem;
  border: 1px solid rgba(201,169,110,0.35);
  background: rgba(201,169,110,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
  margin-top: 1rem;
}
.connection-call-card .offer-label { color: var(--taupe); }
.connection-call-card .offer-price { color: var(--taupe); font-size: 1.4rem; letter-spacing: 0.08em; }
.connection-call-card .offer-sub-line { color: var(--taupe); }
.connection-call-card .offer-desc { color: var(--taupe); line-height: 1.7; }

.offer-block.offer-free {
  background: rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.35);
}
.offer-block.offer-featured {
  background: linear-gradient(160deg, #2C4A3E 0%, #3D6652 100%);
  border-color: #2C4A3E;
}
.offer-label {
  font-family: var(--font-eyebrow);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}
.offer-featured .offer-label { color: rgba(245,240,232,0.55); }
.offer-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1;
}
.offer-price-mo {
  font-size: 1.1rem;
  opacity: 0.8;
}
.offer-featured .offer-price { color: var(--gold); }
.offer-sub-line {
  font-family: var(--font-eyebrow);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}
.offer-featured .offer-sub-line { color: rgba(245,240,232,0.62); }
.offer-desc {
  font-family: var(--font-body);
  font-size: 1.01rem;
  line-height: 1.8;
  color: var(--taupe);
  font-weight: 300;
  flex-grow: 1;
}
.offer-featured .offer-desc { color: rgba(245,240,232,0.78); }
.offer-free .offer-label { color: var(--taupe); }
.offer-free .offer-price { color: var(--taupe); font-size: 1.4rem; letter-spacing: 0.08em; }
.offer-free .offer-sub-line { color: var(--taupe); }
.offer-free .offer-desc { color: var(--taupe); }

/* Offer tags */
.offer-tag {
  display: inline-block;
  font-family: var(--font-eyebrow);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  align-self: flex-start;
  margin-bottom: 0.2rem;
}
.offer-tag-gold {
  background: rgba(201,169,110,0.18);
  border-color: var(--gold);
  color: var(--gold);
}

/* Buttons */
.btn-outline {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border: 1px solid var(--espresso);
  color: var(--espresso);
  font-family: var(--font-eyebrow);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  transition: color 0.3s, border-color 0.3s;
  align-self: flex-start;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.btn-outline:hover { color: var(--gold); border-color: var(--gold); }
.btn-gold {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.8rem;
  border: 1px solid var(--gold);
  color: var(--espresso);
  background: var(--gold);
  font-family: var(--font-eyebrow);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  transition: opacity 0.3s;
  align-self: flex-start;
  min-height: 48px;
}
.btn-gold:hover { opacity: 0.85; }

/* ============================================
   OPT-IN
   ============================================ */
.optin {
  background: linear-gradient(160deg, #2C4A3E 0%, #3D6652 60%, #243D32 100%);
  padding: var(--pad-desktop) 2rem;
}
.optin-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.optin-eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.optin-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ivory);
  margin-bottom: 1.4rem;
}
.optin-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(245,240,232,0.82);
  font-weight: 300;
  margin-bottom: 2.8rem;
}
.optin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  position: relative;
}
.optin-form input[type="email"] {
  background: transparent;
  border: 1px solid rgba(245,240,232,0.4);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1.045rem;
  font-weight: 300;
  padding: 1rem 1.4rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  min-height: 48px;
}
.optin-form input[type="email"]::placeholder {
  color: rgba(245,240,232,0.42);
}
.optin-form input[type="email"]:focus {
  border-color: var(--gold);
}
.btn-optin {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--espresso);
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: opacity 0.3s;
  width: 100%;
  min-height: 48px;
}
.btn-optin:hover { opacity: 0.85; }
.optin-fine {
  font-family: var(--font-eyebrow);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.42);
  margin-top: 1.2rem;
}
#optinStatus {
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.4em;
}
#optinStatus.success { color: var(--gold); }
#optinStatus.error   { color: #e07070; }

/* ============================================
   CLOSING MANIFESTO
   ============================================ */
.manifesto {
  background: var(--sand);
  padding: 160px 2rem;
}
.manifesto-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.38;
  color: var(--espresso);
  letter-spacing: 0.05em;
}
.manifesto-sub {
  font-family: var(--font-eyebrow);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1E1A16;
  padding: 60px 2rem 0;
  color: var(--ivory);
}
.footer-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}
.footer-wordmark {
  font-family: var(--font-eyebrow);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.045rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.7;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-nav a,
.footer-contact a {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.62);
  transition: color 0.25s;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--gold); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-bottom {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  text-align: center;
}
.footer-bottom-rule {
  width: 100%;
  height: 1px;
  background: rgba(122,158,138,0.28);
  margin-bottom: 2rem;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(246,243,236,0.25);
  letter-spacing: 0.06em;
}

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

/* Stagger children */
.fade-in .pillar:nth-child(1) { transition-delay: 0ms; }
.fade-in .pillar:nth-child(3) { transition-delay: 100ms; }
.fade-in .pillar:nth-child(5) { transition-delay: 200ms; }
.fade-in .method-item:nth-child(1) { transition-delay: 0ms; }
.fade-in .method-item:nth-child(2) { transition-delay: 80ms; }
.fade-in .method-item:nth-child(3) { transition-delay: 160ms; }
.fade-in .method-item:nth-child(4) { transition-delay: 240ms; }
.fade-in .method-item:nth-child(5) { transition-delay: 320ms; }
.fade-in .testimonial-quote:nth-child(1) { transition-delay: 0ms; }
.fade-in .testimonial-quote:nth-child(3) { transition-delay: 100ms; }
.fade-in .testimonial-quote:nth-child(5) { transition-delay: 200ms; }

/* ============================================
   TABLET — 1100px (4-col grid becomes 2-col)
   ============================================ */
@media (max-width: 1100px) {
  .offers-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .offers-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .offers-grid-4 .offer-block + .offer-block { border-left: none; }
  .offers-grid-4 .offer-block:nth-child(n+3) { border-top: none; }
  .offers-grid-4 .offer-block:nth-child(2) { border-left: none; }
  .offers-grid-4 .offer-block:nth-child(even) { border-left: none; }
  .offers-grid-4 .offer-block:nth-child(odd):not(:first-child) { border-top: none; }
  .offers-grid-4 .offer-block:nth-child(3) { border-left: 1px solid rgba(201,169,110,0.25); }
  .offers-grid-4 .offer-block:nth-child(4) { border-left: none; }
}

/* ============================================
   MOBILE — 768px
   ============================================ */
@media (max-width: 768px) {
  .navbar { padding: 0 1.4rem; }

  /* Prevent horizontal overflow on all pages */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* Hero: ensure content clears the fixed 72px navbar */
  .hero-content { padding-top: 1rem; }

  /* Connection call section */
  .connection-call { padding: 4rem 1.5rem; }
  .connection-call-card { padding: 2.4rem 1.5rem; }

  /* Mobile nav links become part of overlay */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--ivory);
    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: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--espresso) !important;
    text-transform: none;
  }
  .nav-links .nav-cta {
    border: none;
    padding: 0;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--gold) !important;
    text-transform: none;
  }
  .nav-toggle { display: flex; }

  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-sub { font-size: 0.65rem; }

  /* Intro section */
  .intro { padding: var(--pad-mobile) 1.5rem; }
  .intro-body { font-size: 1rem; }
  .pull-quote { font-size: clamp(1.4rem, 5vw, 1.9rem); }

  .star-sep { padding: 1.5rem 0; }

  .pillars { padding: var(--pad-mobile) 1.5rem; }
  .pillars-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .pillar { padding: 0; }
  .pillar-divider { display: none; }

  .image-break { height: 45vh; }

  .method { padding: var(--pad-mobile) 1.5rem; }
  .method-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .testimonials { padding: var(--pad-mobile) 1.5rem; }
  .testimonial-quote { font-size: clamp(1.1rem, 4.5vw, 1.4rem); padding: 2rem 0; }

  .image-pair { flex-direction: column; }
  .image-pair-left,
  .image-pair-right {
    width: 100%;
    height: 50vw;
    min-height: 220px;
  }

  .bio { padding: var(--pad-mobile) 1.5rem; }
  .bio-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .bio-image img { height: 420px; }

  /* Prevent offer-block button overflow */
  .btn-outline, .btn-gold {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Ensure offers grid items don't overflow */
  .offer-block { min-width: 0; overflow: hidden; }

  .offers { padding: var(--pad-mobile) 1.5rem; }
  .offers-grid,
  .offers-grid-4 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .offers-grid-3 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  /* Featured block last on mobile (natural order) */
  .offer-featured { order: 4; }
  .offer-block + .offer-block { border-left: 1px solid rgba(201,169,110,0.25); border-top: none; }
  .offer-block { padding: 2.4rem 1.8rem; }

  .optin { padding: var(--pad-mobile) 1.5rem; }

  .manifesto { padding: 100px 1.5rem; }
  .manifesto-quote { font-size: clamp(1.7rem, 6vw, 2.4rem); }

  .footer { padding: 60px 1.5rem 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }

  /* Nav logo image: constrain on mobile */
  .nav-wordmark img { max-width: 160px !important; max-height: 50px !important; }

  /* Ensure image-break doesn't overflow */
  .image-break { height: 40vw; min-height: 200px; }

  /* Method section text */
  .method-body { font-size: 1rem; }

  /* Optin form full width */
  .optin-form { width: 100%; }
}

/* ============================================
   MOBILE — 480px
   ============================================ */
@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .pull-quote { font-size: 1.4rem; }
  .manifesto-quote { font-size: 1.7rem; }
  .method-heading { font-size: 1.9rem; }
  .bio-name { font-size: 2rem; }
  .offers-heading { font-size: 1.8rem; }
  .optin-heading { font-size: 2rem; }
  .connection-call { padding: 3.5rem 1.2rem; }
  .connection-call-card { padding: 2rem 1.2rem; }
  .btn-outline, .btn-gold { align-self: stretch; text-align: center; justify-content: center; }

  /* Hero logo: scale down on small phones */
  .hero-logo-img { max-width: 85vw; max-height: 120px; }

  /* Nav logo: tighter on small phones */
  .nav-wordmark img { max-width: 130px !important; max-height: 44px !important; }

  /* Offer blocks: tighter padding on small phones */
  .offer-block { padding: 2rem 1.2rem; }

  /* Program card padding */
  .program-card { padding: 2rem 1.2rem; }

  /* Image break smaller on tiny screens */
  .image-break { height: 35vw; min-height: 160px; }

  /* Manifesto section padding */
  .manifesto { padding: 70px 1.2rem; }

  /* Optin section padding */
  .optin { padding: 60px 1.2rem; }

  /* Footer tighter */
  .footer { padding: 50px 1.2rem 0; }
}
/* ============================================
   TOUCH UP — RESPONSIVE OVERRIDES
   ============================================ */

/* vo-touchup-183: FREE badge (no margin-left on any size) */
.vo-touchup-183 {
  margin-left: 0 !important;
  font-size: 15px;
}

/* 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;
  }
}

/* vo-touchup-108, 74, 65: eyebrow font sizes */
.vo-touchup-108.vo-touchup-108 { font-size: 16px; }
.vo-touchup-74.vo-touchup-74   { font-size: 14px; }
.vo-touchup-65.vo-touchup-65   { font-size: 14px; }
@media (max-width: 768px) {
  .vo-touchup-108.vo-touchup-108 { font-size: 15px; }
  .vo-touchup-74.vo-touchup-74   { font-size: 13px; }
  .vo-touchup-65.vo-touchup-65   { font-size: 13px; }
}
@media (max-width: 480px) {
  .vo-touchup-108.vo-touchup-108 { font-size: 14px; }
  .vo-touchup-74.vo-touchup-74   { font-size: 12px; }
  .vo-touchup-65.vo-touchup-65   { font-size: 12px; }
}

/* vo-touchup-27: hero button font */
.vo-touchup-27.vo-touchup-27 {
  font-family: 'Cantata One', Georgia, serif;
}
