/* =========================================================
   home.css — Sober Worthy Free homepage
   Page-unique styles only. Design tokens, reset, base
   typography, the shared NAV (.op-home-nav) and FOOTER
   (.op-footer) all live in base.css. See AGENTS.md §6.
   Class prefix: .op-swf-*  (unique to the homepage)
   ========================================================= */

/* Homepage runs edge-to-edge dark/ivory sections; keep the
   body backdrop dark so overscroll never flashes ivory. */
body { background: var(--color-black); }

/* Image placeholder base (gray boxes awaiting real imagery) */
.op-swf-placeholder {
  background: #c8c4be;
  display: flex;
  align-items: center;
  justify-content: center;
}
.op-swf-placeholder span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(13,11,8,0.45);
}

/* =============================================
   SECTION 1 — HERO
============================================= */
.op-swf-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: var(--color-black);
  background-image: url('/images/swf_hero_v2.jpg');
  background-size: auto 110%;
  background-position: 55% 10%;
  background-repeat: no-repeat;
}
.op-swf-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,0.55)  0%,
    rgba(10,8,5,0.35) 14%,
    rgba(10,8,5,0.45) 40%,
    rgba(10,8,5,0.72) 68%,
    rgba(10,8,5,0.94) 88%,
    rgba(10,8,5,1.00) 100%
  );
  z-index: 1;
}

.op-swf-hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 280px 24px 140px;
  max-width: 1100px;
  margin: 0 auto;
}
.op-swf-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248,241,224,0.95);
  text-shadow: 0 1px 12px rgba(10,8,5,0.55);
  margin-bottom: 52px;
  display: block;
}
.op-swf-hero__name {
  font-family: var(--font-display);
  font-weight: 300;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 80px;
  width: 100%;
}
.op-swf-hero__name .line-sober   { display: block; font-size: clamp(70px, 12.5vw, 148px); }
.op-swf-hero__name .line-worthy  { display: block; font-size: clamp(70px, 12.5vw, 148px); font-style: italic; }
.op-swf-hero__name .line-free    { display: block; font-size: clamp(70px, 12.5vw, 148px); }
.op-swf-hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
  max-width: 720px;
  margin: 0 auto 40px;
}
.op-swf-hero__subhead {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.7;
  color: rgba(245,238,220,0.75);
  max-width: 680px;
  margin: 0 auto 52px;
}
.op-swf-hero__ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.op-swf-cta-primary {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 0.5px solid rgba(255,255,255,0.50);
  padding: 13px 30px;
  transition: background 0.25s;
  display: inline-block;
}
.op-swf-cta-primary:hover { background: rgba(255,255,255,0.09); }
.op-swf-cta-secondary {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(238,225,198,0.72);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(238,225,198,0.30);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.op-swf-cta-secondary:hover { color: rgba(238,225,198,1); border-color: rgba(238,225,198,0.6); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.op-swf-hero__eyebrow { animation: fadeUp 0.9s ease both; animation-delay: 0.25s; }
.op-swf-hero__name    { animation: fadeUp 1.0s ease both; animation-delay: 0.45s; }
.op-swf-hero__tagline { animation: fadeUp 0.9s ease both; animation-delay: 0.65s; }
.op-swf-hero__subhead { animation: fadeUp 0.9s ease both; animation-delay: 0.80s; }
.op-swf-hero__ctas    { animation: fadeUp 0.9s ease both; animation-delay: 0.95s; }

@media (max-width: 768px) {
  .op-swf-hero__content { padding: 180px 24px 100px; }
  .op-swf-hero__subhead { font-size: 16px; }
  .op-swf-hero__ctas { flex-direction: column; gap: 20px; }
}

/* =============================================
   SECTION 2 — THE MOVEMENT
============================================= */
.op-swf-mvmt {
  background: var(--color-ivory);
  padding: var(--section-padding) var(--section-padding-h);
  text-align: center;
}
.op-swf-mvmt__eyebrow {
  font-family: var(--font-body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--color-eyebrow);
  margin-bottom: var(--eyebrow-margin);
  display: block;
}
.op-swf-mvmt__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-dark);
  max-width: 900px;
  margin: 0 auto 64px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.op-swf-mvmt-reveal .word {
  display: inline;
  color: #c8c4be;
  transition: color 1.8s ease;
}
.op-swf-mvmt-reveal .word.is-lit { color: var(--color-dark); }
.op-swf-mvmt-reveal .word.ital { font-style: italic; font-weight: 300; }

.op-swf-mvmt__body {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-dark);
  max-width: 720px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}
.op-swf-mvmt__body p + p { margin-top: 28px; }

.op-swf-mvmt__questions {
  max-width: 720px;
  margin: 48px auto 56px;
  text-align: center;
  list-style: none;
}
.op-swf-mvmt__questions li {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(13,11,8,0.78);
  padding: 10px 0;
}

.op-swf-mvmt__payoff {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  max-width: 720px;
  margin: 96px auto 0;
}
.op-swf-mvmt__payoff .line { display: block; margin-bottom: 12px; }
.op-swf-mvmt__payoff .line:last-child { margin-bottom: 0; }
.op-swf-mvmt__payoff .ital { font-style: italic; font-weight: 400; }

@media (max-width: 768px) {
  .op-swf-mvmt { padding: 80px 24px; }
  .op-swf-mvmt__questions li { font-size: 18px; }
}

/* =============================================
   SECTION 3 — BEGIN HERE
============================================= */
.op-swf-begin {
  background: var(--color-ivory);
  padding: var(--section-padding) var(--section-padding-h);
  text-align: center;
  border-top: 0.5px solid var(--color-divider);
}
.op-swf-begin__eyebrow {
  font-family: var(--font-body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--color-eyebrow);
  margin-bottom: var(--eyebrow-margin);
  display: block;
}
.op-swf-begin__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-dark);
  max-width: 860px;
  margin: 0 auto 96px;
  letter-spacing: -0.02em;
}
.op-swf-begin__headline .line { display: block; }
.op-swf-begin__headline .ital { font-style: italic; font-weight: 300; }

.op-swf-begin__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.op-swf-begin__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.op-swf-begin__card-img {
  width: 100%;
  height: 390px;
  margin-bottom: 48px;
  object-fit: cover;
}
/* Wheel+Guide card: keep it full-bleed (cover) but anchor the crop to
   the left edge, which shifts the visible image right so the dark
   Companion Guide and its words stay fully in frame. */
.op-swf-begin__card-img--wheel {
  object-position: left center;
}
.op-swf-begin__card-rule {
  width: 100%;
  height: 0.5px;
  background: rgba(13,11,8,0.35);
  margin-bottom: 48px;
}
.op-swf-begin__card-label {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  line-height: 1.6;
  margin-bottom: 28px;
  display: block;
}
.op-swf-begin__card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-dark);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 320px;
}
.op-swf-begin__card-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-dark);
  letter-spacing: 0.02em;
  max-width: 320px;
  margin-bottom: 40px;
  flex-grow: 1;
}
.op-swf-begin__card-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  border: 0.5px solid rgba(13,11,8,0.50);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 320px;
  line-height: 1.8;
  transition: background 0.25s, color 0.25s;
}
.op-swf-begin__card-cta:hover { background: var(--color-dark); color: var(--color-ivory); }

@media (max-width: 768px) {
  .op-swf-begin { padding: 80px 24px; }
  .op-swf-begin__grid { grid-template-columns: 1fr; gap: 56px; }
  .op-swf-begin__card-img { height: 360px; }
  .op-swf-begin__headline { margin-bottom: 72px; }
}

/* =============================================
   SECTION 4 — THE SELF-WORTH WHEEL©
   Zone 1: black/ivory split with overlapping image
============================================= */
.op-swf-wheel {
  display: flex;
  align-items: stretch;
  min-height: 820px;
  position: relative;
  overflow: visible;
}
.op-swf-wheel__content {
  width: 62%;
  background: var(--color-black);
  padding: var(--section-padding) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.op-swf-wheel__eyebrow {
  font-family: var(--font-body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: rgba(245,235,210,0.50);
  margin-bottom: var(--eyebrow-margin);
  display: block;
}
.op-swf-wheel__headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
  max-width: 520px;
}
.op-swf-wheel__headline .ital { font-style: italic; }
.op-swf-wheel__body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,238,220,0.70);
  letter-spacing: 0.02em;
  max-width: 520px;
}
.op-swf-wheel__body p + p { margin-top: 28px; }
.op-swf-wheel__cta { align-self: flex-start; margin-top: 44px; }


.op-swf-wheel__image-wrap {
  flex: 1;
  background: var(--color-ivory);
}
.op-swf-wheel__image-overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 52%;
  width: 38%;
  height: 640px;
  z-index: 20;
  overflow: hidden;
}
.op-swf-wheel__image-overlay .op-swf-placeholder,
.op-swf-wheel__image-overlay .op-swf-wheel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .op-swf-wheel { flex-direction: column; }
  .op-swf-wheel__content { width: 100%; padding: 80px 24px; }
  .op-swf-wheel__image-wrap {
    min-height: 420px;
    background-image: url('/images/swf_wheel_flatlay.jpg');
    background-size: cover;
    background-position: center;
  }
  .op-swf-wheel__image-overlay { display: none; }
}

/* Zone 2 — six domains grid on ivory */
.op-swf-wheel-z2 {
  background: var(--color-ivory);
  padding: var(--section-padding) var(--section-padding-h) 48px;
  text-align: center;
}
.op-swf-wheel-z2__intro {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-dark);
  letter-spacing: 0.02em;
  max-width: 720px;
  margin: 0 auto 96px;
}
.op-swf-wheel-z2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid rgba(13,11,8,0.25);
  border-left: 1px solid rgba(13,11,8,0.25);
  text-align: center;
}
.op-swf-wheel-z2__cell {
  padding: 64px 40px;
  border-right: 1px solid rgba(13,11,8,0.25);
  border-bottom: 1px solid rgba(13,11,8,0.25);
}
.op-swf-wheel-z2__domain {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 20px;
  display: block;
}
.op-swf-wheel-z2__domain::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto 24px;
}
.op-swf-wheel-z2__facets {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--color-dark);
  display: block;
}

@media (max-width: 768px) {
  .op-swf-wheel-z2 { padding: 80px 24px 48px; }
  .op-swf-wheel-z2__grid { grid-template-columns: 1fr; }
  .op-swf-wheel-z2__cell { padding: 48px 24px; }
}

/* Zone 3 — closing question + CTA */
.op-swf-wheel-z3 {
  background: var(--color-ivory);
  padding: 96px var(--section-padding-h) var(--section-padding);
  text-align: center;
}
.op-swf-wheel-z3__lead {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-dark);
  letter-spacing: 0.02em;
  max-width: 720px;
  margin: 0 auto 48px;
}
.op-swf-wheel-z3__question {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  max-width: 860px;
  margin: 0 auto 64px;
}
.op-swf-wheel-z3__question .ital { font-style: italic; font-weight: 300; }
.op-swf-wheel-z3__question .word.ital { font-style: italic; font-weight: 300; }
.op-swf-wheel-z3__cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(13,11,8,0.35);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.op-swf-wheel-z3__cta:hover { color: var(--color-gold); border-color: var(--color-gold); }

@media (max-width: 768px) {
  .op-swf-wheel-z3 { padding: 72px 24px 80px; }
}

/* =============================================
   SECTION 5 — WHAT FREEDOM CAN LOOK LIKE
============================================= */
.op-swf-freedom {
  position: relative;
  background-color: #2a2620;
  background-image: url('/images/swf_freedom.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: var(--section-padding) var(--section-padding-h);
  text-align: center;
  overflow: hidden;
}
.op-swf-freedom__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,6,4,0.90);
  z-index: 0;
}
.op-swf-freedom__inner { position: relative; z-index: 1; }
.op-swf-freedom__eyebrow {
  font-family: var(--font-body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: rgba(245,235,210,0.60);
  margin-bottom: var(--eyebrow-margin);
  display: block;
}
.op-swf-freedom__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 860px;
  margin: 0 auto 64px;
}
.op-swf-freedom__headline .line { display: block; }
.op-swf-freedom__headline .ital { font-style: italic; }
.op-swf-freedom__body {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(245,238,220,0.78);
  max-width: 720px;
  margin: 0 auto;
}
.op-swf-freedom__body p + p { margin-top: 28px; }

.op-swf-freedom__list {
  max-width: 720px;
  margin: 48px auto 56px;
  text-align: center;
  list-style: none;
}
.op-swf-freedom__list li {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
}

.op-swf-freedom__payoff {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 720px;
  margin: 96px auto 0;
}
.op-swf-freedom__payoff .line { display: block; }
.op-swf-freedom__payoff .ital { font-style: italic; font-weight: 400; }

@media (max-width: 768px) {
  .op-swf-freedom { padding: 80px 24px; }
}

/* =============================================
   SECTION 6 — CREATED BY OLGA PHOENIX
============================================= */
.op-swf-olga {
  background: var(--color-ivory);
  padding: var(--section-padding) var(--section-padding-h) 48px;
}
.op-swf-olga__grid {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 96px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}
.op-swf-olga__image {
  position: relative;
  /* 100px offset = eyebrow line (~20px) + 80px eyebrow margin,
     so the image top sits even with the headline */
  margin-top: 100px;
}
.op-swf-olga__image .op-swf-placeholder,
.op-swf-olga__image .op-swf-olga__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: 50% 25%;
}
.op-swf-olga__eyebrow {
  font-family: var(--font-body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--color-eyebrow);
  margin-bottom: var(--eyebrow-margin);
  display: block;
}
.op-swf-olga__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  max-width: 860px;
  margin-bottom: 64px;
}
.op-swf-olga-reveal .word {
  display: inline;
  color: #c8c4be;
  transition: color 1.8s ease;
}
.op-swf-olga-reveal .word.is-lit { color: var(--color-dark); }
.op-swf-olga-reveal .word.ital { font-style: italic; font-weight: 300; }
.op-swf-olga__body {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  max-width: 720px;
}
.op-swf-olga__body p + p { margin-top: 28px; }

.op-swf-olga__milestones {
  max-width: 720px;
  margin: 48px 0;
  list-style: none;
}
.op-swf-olga__milestones li {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  padding: 6px 0;
}

/* Zone 2 — mirrored split: image left, copy right */
.op-swf-olga-z2 {
  background: var(--color-ivory);
  padding: 48px var(--section-padding-h) 48px;
}
.op-swf-olga-z2__grid {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 96px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}
.op-swf-olga-z2__image {
  position: relative;
}
.op-swf-olga-z2__image .op-swf-placeholder,
.op-swf-olga-z2__image .op-swf-olga-z2__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}
.op-swf-olga-z2__learned {
  max-width: 720px;
  margin: 0 0 56px;
  text-align: left;
  list-style: none;
}
.op-swf-olga-z2__learned li {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(13,11,8,0.78);
  padding: 10px 0;
}
.op-swf-olga-z2__body {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  max-width: 720px;
  margin: 0;
}
.op-swf-olga-z2__body p + p { margin-top: 28px; }
/* Zone 3 — centered payoff close */
.op-swf-olga-z3 {
  background: var(--color-ivory);
  padding: 96px var(--section-padding-h) var(--section-padding);
  text-align: center;
}
.op-swf-olga-z3__payoff {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.6vw, 60px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  max-width: 860px;
  margin: 0 auto 64px;
}
.op-swf-olga-z3__payoff .line { display: block; }
.op-swf-olga-z3__payoff .ital { font-style: italic; font-weight: 300; }
.op-swf-olga-z3__cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(13,11,8,0.35);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.op-swf-olga-z3__cta:hover { color: var(--color-gold); border-color: var(--color-gold); }

@media (max-width: 768px) {
  .op-swf-olga { padding: 80px 24px 24px; }
  .op-swf-olga__grid { grid-template-columns: 1fr; gap: 56px; }
  .op-swf-olga__image { height: 420px; margin-top: 0; }
  .op-swf-olga__image .op-swf-placeholder { position: static; min-height: 0; height: 420px; }
  .op-swf-olga-z2 { padding: 24px 24px; }
  .op-swf-olga-z2__grid { grid-template-columns: 1fr; gap: 56px; }
  .op-swf-olga-z2__image { height: 420px; order: 2; }
  .op-swf-olga-z2__image .op-swf-placeholder,
  .op-swf-olga-z2__image .op-swf-olga-z2__img { position: static; min-height: 0; height: 420px; }
  .op-swf-olga-z2__learned li { font-size: 18px; }
  .op-swf-olga-z3 { padding: 72px 24px 80px; }
}

/* =============================================
   SECTION 7 — WHAT WE BELIEVE
============================================= */
.op-swf-beliefs {
  position: relative;
  background-color: #2a2620;
  background-image: url('/images/swf_freedom.jpg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  padding: var(--section-padding) var(--section-padding-h);
  overflow: hidden;
}
.op-swf-beliefs__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,6,4,0.90);
  z-index: 0;
}
.op-swf-beliefs__inner { position: relative; z-index: 1; }
.op-swf-beliefs__eyebrow {
  font-family: var(--font-body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: rgba(245,235,210,0.80);
  margin-bottom: var(--eyebrow-margin);
  display: block;
}
.op-swf-beliefs__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 860px;
  margin: 0 0 80px;
}
.op-swf-beliefs__title .ital { font-style: italic; }
.op-swf-beliefs__title .word.ital { font-style: italic; }
.op-swf-beliefs__rule {
  border: none;
  border-top: 0.5px solid rgba(255,255,255,0.35);
  margin: 0;
  width: 100%;
}
.op-swf-beliefs__item {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 36px 0;
  min-height: 160px;
}
.op-swf-beliefs__number {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  min-width: 44px;
  flex-shrink: 0;
}
.op-swf-beliefs__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.15;
  text-transform: uppercase;
}
.op-swf-beliefs__text .ital {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .op-swf-beliefs { padding: 80px 24px; }
  .op-swf-beliefs__item { gap: 20px; min-height: 0; }
}

/* =============================================
   SECTION 8 — THE WHEEL IS MEANT TO TRAVEL
============================================= */
.op-swf-travel {
  background: var(--color-ivory);
  padding: var(--section-padding) var(--section-padding-h);
  text-align: center;
}
.op-swf-travel__eyebrow {
  font-family: var(--font-body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--color-eyebrow);
  margin-bottom: var(--eyebrow-margin);
  display: block;
}
.op-swf-travel__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  max-width: 860px;
  margin: 0 auto 64px;
}
.op-swf-travel__headline .ital { font-style: italic; font-weight: 300; }
.op-swf-travel__list {
  max-width: 720px;
  margin: 48px auto 56px;
  text-align: center;
  list-style: none;
}
.op-swf-travel__list li {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(13,11,8,0.78);
  padding: 10px 0;
}
.op-swf-travel__body {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  max-width: 720px;
  margin: 0 auto 64px;
}
.op-swf-travel__body p + p { margin-top: 28px; }
.op-swf-travel__cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(13,11,8,0.35);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.op-swf-travel__cta:hover { color: var(--color-gold); border-color: var(--color-gold); }

@media (max-width: 768px) {
  .op-swf-travel { padding: 80px 24px; }
  .op-swf-travel__list li { font-size: 18px; }
}

/* =============================================
   SECTION 9 — THE ROAD AHEAD
============================================= */
.op-swf-road {
  background-color: #2a2620;
  background-image: linear-gradient(rgba(8,6,4,0.90), rgba(8,6,4,0.90)), url('/images/swf_freedom.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: var(--section-padding) var(--section-padding-h);
  text-align: center;
}
.op-swf-road__eyebrow {
  font-family: var(--font-body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: rgba(245,235,210,0.50);
  margin-bottom: var(--eyebrow-margin);
  display: block;
}
.op-swf-road__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 860px;
  margin: 0 auto 64px;
}
.op-swf-road__headline .ital { font-style: italic; }
.op-swf-road__body {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(245,238,220,0.72);
  max-width: 720px;
  margin: 0 auto;
}
.op-swf-road__list {
  max-width: 720px;
  margin: 48px auto 56px;
  text-align: center;
  list-style: none;
}
.op-swf-road__list li {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.80);
  padding: 10px 0;
}
.op-swf-road__bridge {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(245,238,220,0.72);
  max-width: 720px;
  margin: 0 auto 64px;
}
.op-swf-road__cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 0.5px solid rgba(255,255,255,0.50);
  padding: 13px 30px;
  transition: background 0.25s;
  display: inline-block;
}
.op-swf-road__cta:hover { background: rgba(255,255,255,0.09); }

@media (max-width: 768px) {
  .op-swf-road { padding: 80px 24px; }
}

/* =============================================
   SECTION 10 — FINAL INVITATION
============================================= */
.op-swf-final {
  background: var(--color-ivory);
  padding: var(--section-padding) var(--section-padding-h);
  text-align: center;
  position: relative;
}
.op-swf-final__eyebrow {
  font-family: var(--font-body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--color-eyebrow);
  margin-bottom: var(--eyebrow-margin);
  display: block;
}
.op-swf-final__stage {
  display: grid;
  grid-template-columns: 270px 1fr 270px;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}
.op-swf-final__img {
  width: 270px;
  min-width: 270px;
  height: 460px;
  min-height: 460px;
  align-self: center;
  object-fit: cover;
}
.op-swf-final__center {
  container-type: inline-size;
  min-width: 0;
}
.op-swf-final__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 12cqw, 50px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}
.op-swf-final__line { white-space: nowrap; }
.op-swf-final__line { display: block; margin-bottom: 28px; }
.op-swf-final__line:last-child { margin-bottom: 0; }
.op-swf-final__headline .reg  { font-style: normal; }
.op-swf-final__headline .ital { font-style: italic; }
.op-swf-final__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-dark);
  max-width: 560px;
  margin: 0 auto 52px;
}
.op-swf-final__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.op-swf-final__btn-primary {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  border: 0.5px solid rgba(13,11,8,0.50);
  padding: 14px 32px;
  transition: background 0.25s, color 0.25s;
}
.op-swf-final__btn-primary:hover {
  background: var(--color-dark);
  color: var(--color-ivory);
}
.op-swf-final__btn-secondary {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: underline;
  text-decoration-color: rgba(13,11,8,0.35);
  text-underline-offset: 5px;
  text-decoration-thickness: 0.5px;
  transition: color 0.2s;
}
.op-swf-final__btn-secondary:hover { color: var(--color-gold); }

@media (max-width: 768px) {
  .op-swf-final { padding: 80px 24px; }
  .op-swf-final__line { white-space: normal; }
  .op-swf-final__stage { grid-template-columns: 1fr; }
  .op-swf-final__img { display: none; }
  .op-swf-final__buttons { flex-direction: column; gap: 20px; }
}

/* =============================================
   SCROLL-REVEAL HEADLINE VARIANTS
   (word-by-word lighting, driven by js/home.js)
============================================= */
/* Begin Here headline (ivory) */
.op-swf-begin-reveal .word { display: inline; color: #c8c4be; transition: color 1.8s ease; }
.op-swf-begin-reveal .word.is-lit { color: var(--color-dark); }

/* Wheel split headline (dark) */
.op-swf-wheelhead-reveal .word { display: inline; color: rgba(255,255,255,0.30); transition: color 1.8s ease; }
.op-swf-wheelhead-reveal .word.is-lit { color: #ffffff; }

/* Wheel closing question (ivory) */
.op-swf-wheelq-reveal .word { display: inline; color: #c8c4be; transition: color 1.8s ease; }
.op-swf-wheelq-reveal .word.is-lit { color: var(--color-dark); }

/* Freedom headline (dark) */
.op-swf-freedom-reveal .word { display: inline; color: rgba(255,255,255,0.30); transition: color 1.8s ease; }
.op-swf-freedom-reveal .word.is-lit { color: #ffffff; }

/* Beliefs title (dark) */
.op-swf-beliefs-reveal .word { display: inline; color: rgba(255,255,255,0.30); transition: color 1.8s ease; }
.op-swf-beliefs-reveal .word.is-lit { color: #ffffff; }

/* Travel headline (ivory) */
.op-swf-travel-reveal .word { display: inline; color: #c8c4be; transition: color 1.8s ease; }
.op-swf-travel-reveal .word.is-lit { color: var(--color-dark); }

/* Road headline (dark) */
.op-swf-road-reveal .word { display: inline; color: rgba(255,255,255,0.30); transition: color 1.8s ease; }
.op-swf-road-reveal .word.is-lit { color: #ffffff; }
