/* ============================================================
   Sua Bússola Interna — styles.css
   Design preservado integralmente do index.html original
   ============================================================ */

:root {
  --cream:        #F4EDE1;     /* primary bg — warm cream */
  --cream-deep:   #EAE0CC;     /* deeper cream for sections */
  --sand:         #DCCFB4;     /* sand */
  --paper:        #FBF7EE;     /* paper highlight */
  --ink:          #1B1814;     /* near-black, warm */
  --ink-soft:     #3A332B;     /* soft body text */
  --ink-mute:     #6B6056;     /* muted */
  --gold:         #B89968;     /* soft gold accent */
  --gold-deep:    #8E7345;     /* deeper gold */
  --terracotta:   #C97A5B;     /* refined terracotta — hero highlight */
  --terracotta-soft: #F2DDD0;  /* tinted background, terracotta wash */
  --moss:         #6E7A5A;     /* earthy green for compass needle */
  --moss-soft:    #DCE2D2;     /* very pale moss for tinted areas */
  --sage:         #8C9778;     /* warmer muted green for accents */
  --warm-grey:    #E8E1D4;     /* warm grey, between cream and sand */
  --off-white:    #F8F2E6;     /* lighter off-white for contrast */
  --hairline:     rgba(27,24,20,0.14);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', system-ui, sans-serif;

  --max: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* ============== GRAIN / TEXTURE OVERLAY ============== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 400; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.1; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); line-height: 1.25; }

.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.eyebrow::before, .eyebrow::after {
  content: '—';
  margin: 0 0.6em;
  color: var(--gold);
  font-style: normal;
}

p { color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

/* ============== LAYOUT ============== */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  padding: clamp(70px, 11vw, 140px) 0;
  z-index: 2;
}

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(244, 237, 225, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease, padding .4s ease;
}
.nav.scrolled { border-color: var(--hairline); padding: 14px var(--gutter); }

.brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 26px; height: 26px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.brand-mark::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  width: 1px; height: 14px;
  background: var(--ink);
  transform: translate(-50%, -50%) rotate(35deg);
  transform-origin: center;
  animation: needle 8s ease-in-out infinite;
}
.brand-mark::after {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@keyframes needle {
  0%, 100% { transform: translate(-50%, -50%) rotate(20deg); }
  50%      { transform: translate(-50%, -50%) rotate(50deg); }
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 10px 22px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  transition: all .3s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); }

/* ============== HERO ============== */
.hero {
  min-height: 100vh;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #F4EDE1 0%, #EFE5D2 60%, #E8DCC2 100%);
}

/* Sky / horizon layers */
.sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.horizon {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38vh;
  min-height: 280px;
  background:
    linear-gradient(180deg,
      transparent 0%,
      rgba(232, 211, 169, 0.4) 30%,
      rgba(217, 184, 138, 0.6) 60%,
      rgba(182, 144, 96, 0.4) 100%);
}

/* Stars / dust particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.particle {
  position: absolute;
  background: rgba(255, 250, 235, 0.85);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 240, 200, 0.5);
  animation: drift linear infinite;
  opacity: 0;
}
@keyframes drift {
  0%   { transform: translate(0, 0); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.6; }
  100% { transform: translate(40vw, -30vh); opacity: 0; }
}

/* Clouds */
.cloud {
  position: absolute;
  opacity: 0.65;
  filter: drop-shadow(0 4px 0 rgba(0,0,0,0.04));
}
.cloud svg { display: block; width: 100%; height: 100%; }
.cloud-1 { top: 14%; left: -22%; width: 380px; animation: cloudFloat 95s linear infinite; }
.cloud-2 { top: 26%; left: -30%; width: 280px; animation: cloudFloat 130s linear infinite; animation-delay: -40s; opacity: 0.45; }
.cloud-3 { top: 8%;  left: -18%; width: 460px; animation: cloudFloat 160s linear infinite; animation-delay: -90s; opacity: 0.55; }
.cloud-4 { top: 38%; left: -25%; width: 220px; animation: cloudFloat 110s linear infinite; animation-delay: -25s; opacity: 0.4; }
@keyframes cloudFloat {
  0%   { transform: translateX(0); }
  100% { transform: translateX(160vw); }
}

/* Trees silhouettes */
.trees {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30vh;
  min-height: 220px;
  pointer-events: none;
  z-index: 2;
}
.tree {
  position: absolute;
  bottom: 0;
  transform-origin: bottom center;
  animation: sway ease-in-out infinite;
}
.tree svg { display: block; }

.tree-l1 { left: 5%;   width: 90px;  animation-duration: 7s; animation-delay: -2s; }
.tree-l2 { left: 12%;  width: 130px; animation-duration: 9s; }
.tree-l3 { left: 22%;  width: 70px;  animation-duration: 6s; animation-delay: -3s; opacity: 0.85; }
.tree-r1 { right: 5%;  width: 110px; animation-duration: 8s; animation-delay: -1s; }
.tree-r2 { right: 13%; width: 80px;  animation-duration: 7.5s; animation-delay: -4s; opacity: 0.9; }
.tree-r3 { right: 24%; width: 60px;  animation-duration: 6.5s; opacity: 0.8; }

@keyframes sway {
  0%, 100% { transform: rotate(-1.2deg); }
  50%      { transform: rotate(1.2deg); }
}

/* Hot air balloon */
.balloon {
  position: absolute;
  top: 30%;
  right: 14%;
  width: 70px;
  z-index: 3;
  animation: balloonFloat 12s ease-in-out infinite;
}
@keyframes balloonFloat {
  0%, 100% { transform: translateY(0) translateX(0) rotate(-2deg); }
  50%      { transform: translateY(-22px) translateX(10px) rotate(2deg); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 880px;
  padding: 0 var(--gutter);
}

.hero-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1.2s 0.2s forwards;
}

.hero h1 {
  font-weight: 400;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1.4s 0.5s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 18px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1.4s 0.9s forwards;
}

.hero-sub-lead {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--ink);
  font-weight: 500;
  margin: 0 auto 14px;
  line-height: 1.5;
  white-space: nowrap;
  opacity: 0;
  animation: fadeUp 1.4s 0.8s forwards;
}

.hero-support {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-mute);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 1.4s 1.1s forwards;
}
.hero-support span { margin: 0 0.6em; color: var(--gold); }

.hero-micro {
  font-size: 0.88rem;
  color: var(--ink-mute);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 1.4s 1.3s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* CTA button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--paper);
  background: var(--terracotta);
  padding: 18px 38px;
  border-radius: 100px;
  border: 1px solid var(--terracotta);
  cursor: pointer;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '→';
  font-size: 1.1em;
  transition: transform .35s ease;
}
.btn:hover {
  background: #B26A4D;
  border-color: #B26A4D;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(201, 122, 91, 0.45);
}
.btn:hover::after { transform: translateX(6px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 14px 30px -10px rgba(27,24,20,0.4);
}

.hero .btn {
  opacity: 0;
  animation: fadeUp 1.4s 1.5s forwards;
  margin-bottom: 30px;
}

/* Scroll cue (text removed, hairline kept as subtle visual divider) */
.scroll-cue {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0;
  animation: fadeUp 1.5s 2s forwards, scrollPulse 3s 2.5s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 22px;
  background: linear-gradient(180deg, var(--ink-mute), transparent);
}
@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ============== PAIN SECTION ============== */
.pain {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-grey) 100%);
  text-align: center;
  position: relative;
  padding-top: clamp(40px, 6vw, 80px);
}
.pain::before, .pain::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--hairline));
}
.pain::before { top: 0; }
.pain::after  { bottom: 0; transform: translateX(-50%) rotate(180deg); height: 60px; }

.pain .eyebrow { margin-bottom: 0.5rem; }

.pain-lines {
  max-width: 720px;
  margin: 0 auto;
}
.pain-q {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--ink);
  line-height: 1.4;
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
  opacity: 0;
  transform: translateY(20px);
  transition: all .9s ease;
}
.pain-q.visible { opacity: 1; transform: translateY(0); }
.pain-q:last-of-type { border: none; }

.pain-close {
  margin-top: 56px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--ink);
  font-weight: 500;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.35;
}
.pain-close em { font-style: italic; color: var(--gold-deep); font-weight: 300; }

/* ============== POSITIONING ============== */
.position {
  background: var(--paper);
  position: relative;
}
.position::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.6;
}
.position-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.position-text h2 { margin-bottom: 28px; }
.position-text p { font-size: 1.05rem; margin-bottom: 22px; color: var(--ink-soft); }

.position-list {
  list-style: none;
  margin-top: 32px;
}
.position-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
}
.position-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  margin-top: 11px;
}

.compass-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compass-ring {
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle at 30% 30%, var(--paper), var(--cream-deep));
  box-shadow: 0 30px 60px -30px rgba(27,24,20,0.25), inset 0 0 60px rgba(184,153,104,0.1);
}
.compass-ring::before {
  content: '';
  position: absolute;
  inset: 8%;
  border: 1px solid var(--hairline);
  border-radius: 50%;
}
.compass-ring::after {
  content: '';
  position: absolute;
  inset: 16%;
  border: 1px dashed var(--hairline);
  border-radius: 50%;
}
.compass-marks {
  position: absolute;
  inset: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-mute);
}
.compass-marks span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.compass-marks .n { top: 6%; }
.compass-marks .s { bottom: 6%; }
.compass-marks .e { right: 6%; top: 50%; transform: translateY(-50%); left: auto; }
.compass-marks .w { left: 6%; top: 50%; transform: translateY(-50%); }

.compass-needle {
  position: absolute;
  top: 50%; left: 50%;
  width: 4px;
  height: 60%;
  transform: translate(-50%, -50%);
  animation: needleSpin 12s ease-in-out infinite;
}
.compass-needle::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, #B23A2E, #8B2418);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.compass-needle::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(0deg, var(--ink), var(--ink-soft));
  clip-path: polygon(50% 100%, 100% 0, 0 0);
}
.compass-pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@keyframes needleSpin {
  0%, 100% { transform: translate(-50%, -50%) rotate(-15deg); }
  25%      { transform: translate(-50%, -50%) rotate(40deg); }
  60%      { transform: translate(-50%, -50%) rotate(-25deg); }
  80%      { transform: translate(-50%, -50%) rotate(15deg); }
}

/* ============== JOURNEY ============== */
.journey {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  position: relative;
  overflow: hidden;
}

.journey-header {
  text-align: center;
  margin-bottom: 90px;
}
.journey-header p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-mute);
  margin-top: 18px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.journey-path {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

/* dotted vertical path */
.journey-path::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background-image: linear-gradient(180deg, var(--gold) 50%, transparent 50%);
  background-size: 1px 12px;
  transform: translateX(-50%);
  opacity: 0.5;
}

.step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 90px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.step.visible { opacity: 1; transform: translateY(0); }

/* Inner text/marker reveal — staggered after the block becomes visible */
.step .step-text > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.step.visible .step-text > * {
  opacity: 1;
  transform: translateY(0);
}
.step.visible .step-text > *:nth-child(1) { transition-delay: 0.15s; }
.step.visible .step-text > *:nth-child(2) { transition-delay: 0.30s; }
.step.visible .step-text > *:nth-child(3) { transition-delay: 0.45s; }

.step .step-marker {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s ease 0.1s, transform 1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.1s;
}
.step.visible .step-marker {
  opacity: 1;
  transform: scale(1);
}

/* Generic .reveal rule used by other sections (position, experience, transitions, transform) */
.reveal:not(.step) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible:not(.step) {
  opacity: 1;
  transform: translateY(0);
}

.step:last-child { margin-bottom: 0; }

.step-text {
  padding: 0 20px;
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 8px;
}
.step-text h3 { margin-bottom: 12px; font-weight: 500; }
.step-text p { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.65; }

.step-marker {
  width: 56px; height: 56px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 8px 24px -8px rgba(27,24,20,0.25);
}
.step-marker::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px dashed var(--gold);
  border-radius: 50%;
  opacity: 0.5;
  animation: rotate 30s linear infinite;
}
@keyframes rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.step:nth-child(even) .step-text { text-align: right; }
.step:nth-child(odd) .step-text:nth-of-type(1) { text-align: right; }
.step:nth-child(odd) .step-text:nth-of-type(2) { text-align: left; }
.step:nth-child(even) .step-text:nth-of-type(1) { text-align: right; visibility: hidden; }
.step:nth-child(even) .step-text:nth-of-type(2) { text-align: left; }

.step:nth-child(odd) .step-text:nth-of-type(2) { visibility: hidden; }

/* Reset: cleaner alternating layout */
.step .left  { text-align: right; padding-right: 20px; }
.step .right { text-align: left; padding-left: 20px; }
.step .empty { visibility: hidden; }

/* ============== EXPERIENCE ============== */
.experience {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.95 0 0 0 0 0.85 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: 0.6;
}

.experience h2, .experience h3 { color: var(--paper); }
.experience .eyebrow { color: var(--gold); }

.experience-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.experience-header h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.experience-header p {
  color: rgba(244,237,225,0.7);
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 920px;
  margin: 0 auto;
}

.exp-card {
  padding: 44px 36px;
  background: rgba(244,237,225,0.04);
  border: 1px solid rgba(244,237,225,0.12);
  position: relative;
  transition: all .5s ease;
}
.exp-card:hover {
  background: rgba(244,237,225,0.07);
  border-color: rgba(184,153,104,0.4);
  transform: translateY(-4px);
}

.exp-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.exp-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  font-weight: 500;
}
.exp-card p {
  color: rgba(244,237,225,0.65);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============== TRANSITIONS (passages section with video) ============== */
.transitions {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
}
.transitions::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--sage);
  opacity: 0.6;
}

.transitions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: stretch;
  justify-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.transitions-grid > * {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
}
.transitions-grid > .pairs-list {
  align-self: stretch;
}

/* Right panel (video + caption) — video fills available height to match pairs list */
.transitions-media {
  display: flex;
  flex-direction: column;
}
.transitions-media .video-wrap {
  flex: 1 1 auto;
  aspect-ratio: auto;
  min-height: 100%;
}

.transitions-header {
  text-align: center;
  margin-bottom: 70px;
}
.transitions-header h2 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}
.transitions-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--ink);
  margin-top: 26px;
  line-height: 1.4;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.transitions-quote::before, .transitions-quote::after {
  content: '"';
  color: var(--terracotta);
  font-size: 1.3em;
  vertical-align: -0.15em;
  margin: 0 0.1em;
  font-style: normal;
  opacity: 0.7;
}

/* Pairs list */
.pairs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 22px 0;
  position: relative;
  height: 100%;
  min-height: 540px;
  justify-content: space-between;
}
.pairs-list::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: calc(100% - 52px);
  background: linear-gradient(180deg,
    transparent 0%,
    var(--hairline) 12%,
    var(--hairline) 88%,
    transparent 100%);
}

.pair-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 16px 28px;
  position: relative;
  flex: 1 1 auto;
}
.pair-row:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 28px; right: 28px;
  height: 1px;
  background: var(--hairline);
  opacity: 0.5;
}

.pair-from {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-mute);
  text-align: right;
  letter-spacing: 0.005em;
}
.pair-to {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--ink);
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.005em;
}
/* Animated traveling dot between paired words */
.pair-arrow {
  width: 56px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.pair-arrow::before {
  /* faint guide track */
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: var(--hairline);
  transform: translateY(-50%);
  opacity: 0.6;
}
.pair-arrow::after {
  /* the traveling dot — always visible, gently slides left → right */
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(201, 122, 91, 0.14);
  animation: dotTravel 5.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes dotTravel {
  0%   { left: 0;                     opacity: 0.45; }
  10%  { left: 0;                     opacity: 1; }
  50%  { left: calc(50% - 3.5px);     opacity: 1; }
  90%  { left: calc(100% - 7px);      opacity: 1; }
  100% { left: calc(100% - 7px);      opacity: 0.45; }
}
/* Stagger each row's dot so they don't pulse in unison */
.pair-row:nth-child(1) .pair-arrow::after { animation-delay: 0s; }
.pair-row:nth-child(2) .pair-arrow::after { animation-delay: 0.5s; }
.pair-row:nth-child(3) .pair-arrow::after { animation-delay: 1.0s; }
.pair-row:nth-child(4) .pair-arrow::after { animation-delay: 1.5s; }
.pair-row:nth-child(5) .pair-arrow::after { animation-delay: 2.0s; }
.pair-row:nth-child(6) .pair-arrow::after { animation-delay: 2.5s; }
.pair-row:nth-child(7) .pair-arrow::after { animation-delay: 3.0s; }
.pair-row:nth-child(8) .pair-arrow::after { animation-delay: 3.5s; }
.pair-row:nth-child(9) .pair-arrow::after { animation-delay: 4.0s; }

/* Video wrap */
.video-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -30px rgba(27, 24, 20, 0.35),
    0 8px 20px -10px rgba(201, 122, 91, 0.15);
  border: 1px solid rgba(255,255,255,0.5);
  background: var(--cream-deep);
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
  min-height: 320px;
  isolation: isolate;
}
.video-wrap video,
.video-wrap .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  background: transparent;
}
.video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 14px;
  box-shadow: inset 0 0 60px rgba(27,24,20,0.15);
  z-index: 2;
}

.video-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 22px;
  letter-spacing: 0.01em;
}

/* ============== TRANSFORMATION ============== */
.transform {
  background:
    radial-gradient(ellipse at 50% 0%, #2A231C 0%, #1B1814 70%);
  text-align: center;
  position: relative;
}
.transform::before {
  /* warm grain to keep dark surface from feeling flat */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.95 0 0 0 0 0.85 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}
.transform .wrap { position: relative; z-index: 2; }
.transform .eyebrow { color: var(--gold); }
.transform-header h2 { color: var(--paper); }

.transform-header { margin-bottom: 70px; }

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.compare-col {
  padding: 50px 36px;
  text-align: left;
  position: relative;
  border-radius: 18px;
}
.compare-before {
  background: rgba(255, 248, 235, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}
.compare-after {
  background: rgba(255, 248, 235, 0.95);
  border: 1px solid var(--terracotta);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.20),
    0 0 0 1px rgba(201, 122, 91, 0.20);
}

.compare-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
  margin-bottom: 28px;
  display: block;
}
.compare-after .compare-label { color: var(--terracotta); }

.compare-list {
  list-style: none;
}
.compare-list li {
  padding: 14px 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
  font-weight: 500;
}
.compare-list li:last-child { border: none; }

.compare-before .compare-list li { color: var(--ink-mute); font-style: italic; font-weight: 400; }

.arrow-divider {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.arrow-divider svg { width: 40px; height: 40px; }

/* ============== FINAL CTA ============== */
.final {
  background:
    radial-gradient(ellipse at center top, var(--cream-deep) 0%, var(--cream) 60%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-illustration {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 180px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.final-content { position: relative; z-index: 3; max-width: 760px; margin: 0 auto; }

.final h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 28px;
}
.final h2 em { font-style: italic; color: var(--gold-deep); font-weight: 300; }

.final-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-soft);
  margin-bottom: 50px;
  line-height: 1.6;
}

.final-meta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.85rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.final-meta span { display: flex; align-items: center; gap: 8px; }
.final-meta .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

/* ============== FOOTER ============== */
footer {
  background: var(--ink);
  color: rgba(244,237,225,0.6);
  padding: 60px var(--gutter) 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}
footer .brand { color: var(--paper); justify-content: center; margin-bottom: 18px; }
footer .brand-mark { border-color: var(--paper); }
footer .brand-mark::before { background: var(--paper); }
footer p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 30px;
  color: rgba(244,237,225,0.5);
}
.foot-line {
  border-top: 1px solid rgba(244,237,225,0.12);
  padding-top: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(244,237,225,0.4);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 880px) {
  .position-grid { grid-template-columns: 1fr; gap: 50px; }
  .compass-visual { max-width: 360px; margin: 0 auto; }
  .exp-grid { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; gap: 24px; }
  .compare-col { padding: 36px 28px; }
  .arrow-divider svg { transform: rotate(90deg); }

  .step { grid-template-columns: 1fr; gap: 18px; text-align: left !important; }
  .step .left, .step .right { text-align: left !important; padding: 0; }
  .step .empty { display: none; }
  .step-marker { margin: 0 auto; }
  .journey-path::before { left: 28px; }
  .step { padding-left: 60px; }
  .step-marker { position: absolute; left: 0; top: 0; }

  .balloon { right: 8%; width: 50px; }
  .cloud-1, .cloud-2, .cloud-3, .cloud-4 { width: 60vw !important; }

  /* Keep trees inside safe zone on smaller screens */
  .tree-l1 { left: 8%;  width: 70px; }
  .tree-l2 { left: 18%; width: 100px; }
  .tree-l3 { left: 30%; width: 56px; }
  .tree-r1 { right: 8%;  width: 86px; }
  .tree-r2 { right: 19%; width: 64px; }
  .tree-r3 { right: 32%; width: 50px; }

  .transitions-grid { grid-template-columns: 1fr; gap: 50px; align-items: center; }
  .transitions-media .video-wrap { min-height: 0; aspect-ratio: 4 / 5; }
  .video-wrap { max-width: 380px; aspect-ratio: 4 / 5; }
  .pairs-list { min-height: 0; height: auto; padding: 14px 0; }
  .pair-row { padding: 12px 18px; gap: 14px; }
  .pair-from, .pair-to { font-size: 0.98rem; }
  .pair-arrow { width: 44px; }
}

@media (max-width: 540px) {
  .brand { font-size: 1.1rem; }
  .hero-eyebrow { font-size: 0.9rem; }
  section { padding: 60px 0; }
  .pain-q { font-size: 1.25rem; padding: 20px 0; }
  .scroll-cue { font-size: 0.7rem; }
  .final-meta { flex-direction: column; gap: 14px; }

  .pair-row { padding: 11px 14px; gap: 10px; }
  .pair-from, .pair-to { font-size: 0.9rem; }
  .pair-arrow { width: 32px; }
  .video-wrap { max-width: 100%; aspect-ratio: 1 / 1.1; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
