:root {
  /* ============================================
     PALETA OFICIAL — BEATRIZ GAUDIO
     ============================================ */
  /* Cores base */
  --bg-cream: #F0E2D9;
  /* Branco Amendoado — fundo principal */
  --bg-cream-deep: #E8D5C8;
  /* shade de Branco Amendoado */
  --bg-ivory: #F7F2EF;
  /* Areia Clara — fundo secundário */
  --ink-deep: #3D402D;
  /* Carvão Vegetal — texto / escuro */
  --ink-soft: #51553D;
  /* Verde Musgo — texto secundário */

  /* Verdes */
  --olive-deep: #3D402D;
  /* Carvão Vegetal */
  --olive: #51553D;
  /* Verde Musgo Profundo */
  --sage: #A2A68A;
  /* Sálvia Suave */
  --sage-soft: #C2C5AE;
  /* tint de Sálvia */

  /* Quentes */
  --terracotta: #B8683F;
  /* tint de Terracota Queimada */
  --terracotta-deep: #995330;
  /* Terracota Queimada */
  --gold: #C58940;
  /* Ocre Dourado */
  --gold-soft: #DBAE73;
  /* tint de Ocre */

  /* Utilitários */
  --white: #FFFFFF;
  --line: rgba(61, 64, 45, 0.14);
  --line-soft: rgba(61, 64, 45, 0.07);

  /* Gradientes */
  --grad-warm: linear-gradient(135deg, #F0E2D9 0%, #F7F2EF 50%, #E8D5C8 100%);
  --grad-deep: linear-gradient(180deg, #3D402D 0%, #51553D 100%);
  --grad-olive: linear-gradient(135deg, #3D402D 0%, #51553D 55%, #A2A68A 100%);
  --grad-terra: linear-gradient(135deg, #B8683F 0%, #995330 100%);
  --grad-gold: linear-gradient(135deg, #C58940 0%, #DBAE73 50%, #C58940 100%);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Theme Defaults (to be overridden by section classes) */
  --theme-text: var(--ink-deep);
  --theme-text-soft: var(--ink-soft);
  --theme-accent: var(--terracotta-deep);
  --theme-line: var(--line);
  --theme-bg: var(--bg-cream);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--theme-text);
  background: var(--theme-bg);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Premium Base ---------- */
.premium-layout {
  position: relative;
  overflow-x: hidden;
}

.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: overlay;
}

::selection {
  background: var(--terracotta);
  color: var(--bg-ivory);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--theme-text);
  background: var(--theme-bg);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

/* ---------- Reusable Layout ---------- */
.wrap {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow {
  max-width: 720px;
}

.wrap-wide {
  max-width: 1180px;
}

.center {
  text-align: center;
}

/* ---------- Section Theme Patterns ---------- */
.section {
  padding: 120px 0;
  position: relative;
  color: var(--theme-text);
}

.section-light {
  --theme-text: var(--ink-deep);
  --theme-text-soft: var(--ink-soft);
  --theme-accent: var(--terracotta-deep);
  --theme-line: var(--line);
}
.section-cream { --theme-bg: var(--bg-cream); background: var(--bg-cream); }
.section-ivory { --theme-bg: var(--bg-ivory); background: var(--bg-ivory); }

.section-dark {
  --theme-text: var(--bg-ivory);
  --theme-text-soft: rgba(247, 242, 239, 0.75);
  --theme-accent: var(--gold-soft);
  --theme-line: rgba(247, 242, 239, 0.15);
}

.section-deep { --theme-bg: var(--ink-deep); background: var(--ink-deep); }
.section-olive { --theme-bg: var(--grad-olive); background: var(--grad-olive); }
.qualify { --theme-bg: var(--grad-deep); background: var(--grad-deep); } /* Inherits section-dark logic if added to HTML */

/* ---------- Typography Patterns ---------- */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--theme-accent);
  margin-bottom: 24px;
  display: inline-block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--theme-text);
}

h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
}

.h-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--theme-accent);
}

.h-italic.strong-accent {
  font-weight: 700;
}

p {
  color: var(--theme-text-soft);
}

p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--terracotta);
  margin: 48px auto;
}

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 56px auto;
  color: var(--terracotta);
}

.divider-ornament::before,
.divider-ornament::after {
  content: '';
  height: 1px;
  width: 70px;
  background: currentColor;
  opacity: 0.5;
}

.divider-ornament svg {
  width: 20px;
  height: 20px;
}

/* ---------- CTA Buttons ---------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 38px;
  background: var(--ink-deep);
  color: var(--bg-ivory);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2, .8, .2, 1), box-shadow 0.35s ease, background 0.35s ease;
  box-shadow: 0 14px 30px -12px rgba(26, 20, 16, 0.45);
}

.cta-btn .arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(.2, .8, .2, 1);
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: var(--terracotta-deep);
  box-shadow: 0 22px 40px -14px rgba(158, 90, 55, 0.55);
}

.cta-btn:hover .arrow {
  transform: translateX(6px);
}

.cta-btn.gold {
  background: var(--grad-terra);
  color: var(--bg-ivory);
  box-shadow: 0 18px 38px -14px rgba(194, 114, 74, 0.55);
}

.cta-btn.gold:hover {
  background: var(--ink-deep);
  box-shadow: 0 22px 44px -16px rgba(26, 20, 16, 0.6);
}

.cta-btn.outline {
  background: transparent;
  color: var(--bg-ivory);
  border: 1px solid rgba(245, 239, 230, 0.4);
  box-shadow: none;
}

.cta-btn.outline:hover {
  background: var(--bg-ivory);
  color: var(--ink-deep);
  border-color: var(--bg-ivory);
}

.micro-note {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.micro-note.on-dark {
  color: var(--bg-ivory);
  opacity: 0.6;
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--ink-deep);
  color: var(--bg-ivory);
  padding: 12px 24px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}

.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 160, 80, 0.18), transparent);
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.topbar span {
  position: relative;
  z-index: 1;
}

.topbar strong {
  color: var(--gold-soft);
  font-weight: 600;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--grad-warm);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 160, 80, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSlow 14s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -250px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(143, 164, 122, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSlow 18s ease-in-out infinite alternate-reverse;
}

@keyframes floatSlow {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(40px, -30px);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(26, 20, 16, 0.08);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--olive-deep);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero h1 {
  max-width: 14ch;
  margin: 0 auto 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.25s forwards;
}

.hero h1 .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta-deep);
  display: block;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 44px;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--ink-soft);
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-cta-wrap {
  opacity: 0;
  animation: fadeUp 0.9s 0.55s forwards;
}

.hero-trust {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 56px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink-deep);
  line-height: 1;
}

.trust-item .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--olive);
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image placeholder for Beatriz portrait — appears below hero */
.hero-portrait {
  margin: 80px auto 0;
  max-width: 360px;
  position: relative;
  opacity: 0;
  animation: fadeUp 1.2s 0.85s forwards;
}

.portrait-frame {
  position: relative;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--grad-olive);
  box-shadow: 0 30px 60px -20px rgba(61, 74, 42, 0.4);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
}

.portrait-deco {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terracotta);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.portrait-deco.left {
  left: -90px;
  top: 30%;
  transform: rotate(-90deg);
  transform-origin: right center;
}

.portrait-deco.right {
  right: -90px;
  top: 70%;
  transform: rotate(90deg);
  transform-origin: left center;
}

/* ---------- Manifesto Section ---------- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-cream {
  background: var(--bg-cream);
}

.section-ivory {
  background: var(--bg-ivory);
}

/* ---------- Section Layouts (Legacy compatibility) ---------- */
.section-deep {
}

.section-olive {
}

.manifesto p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1.45;
  margin-bottom: 32px;
  color: var(--ink-deep);
  max-width: none;
}

.manifesto p.italic {
  font-style: italic;
  font-weight: 300;
  color: var(--theme-accent);
}

.manifesto p:last-child {
  margin-bottom: 0;
}

/* ---------- Qualification (the SIM checklist) ---------- */
.qualify {
  background: var(--grad-deep);
  position: relative;
  overflow: hidden;
}

.qualify::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(201, 160, 80, 0.10) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(194, 114, 74, 0.10) 0%, transparent 40%);
}

.qualify .wrap {
  position: relative;
  z-index: 2;
}

.qualify h2 {
  text-align: center;
  margin-bottom: 16px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.qualify .lead {
  text-align: center;
  color: var(--gold-soft);
  margin-bottom: 56px;
  font-style: italic;
}

.qualify-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 auto;
  max-width: 720px;
}

.qualify-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 30px;
  background: rgba(245, 239, 230, 0.04);
  border: 1px solid rgba(245, 239, 230, 0.1);
  border-radius: 16px;
  transition: all 0.35s ease;
  cursor: default;
}

.qualify-item:hover {
  background: rgba(201, 160, 80, 0.08);
  border-color: rgba(201, 160, 80, 0.35);
  transform: translateX(8px);
}

.qualify-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: all 0.35s ease;
}

.qualify-item:hover .qualify-check {
  background: var(--gold);
}

.qualify-check svg {
  width: 16px;
  height: 16px;
  color: var(--ink-deep);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.qualify-item:hover .qualify-check svg {
  opacity: 1;
}

.qualify-item p {
  color: var(--theme-text-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.qualify-conclusion {
  text-align: center;
  margin-top: 48px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--gold-soft);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

/* ---------- Story / What nobody tells you ---------- */
.story-text p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.story-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5em;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 8px 14px 0 0;
  color: var(--terracotta-deep);
}

.story-text p strong {
  color: var(--ink-deep);
  font-weight: 600;
}

.story-text .pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--theme-accent);
  text-align: center;
  margin: 56px auto;
  max-width: 26ch;
  line-height: 1.35;
  position: relative;
  padding: 28px 0;
}

.story-text .pull::before,
.story-text .pull::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: var(--terracotta);
}

.story-text .pull::before {
  top: 0;
}

.story-text .pull::after {
  bottom: 0;
}

/* ---------- About Beatriz ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--grad-olive);
  box-shadow: 0 40px 80px -30px rgba(61, 74, 42, 0.5);
}

.about-photo img {
  width: 100%;
  height: 100%;
}

.about-photo .badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--bg-ivory);
  color: var(--ink-deep);
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.3);
}

.about-content h2 {
  margin-bottom: 28px;
}

.about-content p {
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.about-content p strong {
  color: var(--ink-deep);
  font-weight: 600;
}

.about-credentials {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.cred {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-soft);
}

.cred svg {
  width: 18px;
  height: 18px;
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ---------- Turning point ---------- */
.turning {
  background:
    radial-gradient(ellipse at top, rgba(143, 164, 122, 0.18) 0%, transparent 60%),
    var(--bg-ivory);
}

.turning .wrap {
  max-width: 760px;
}

.turning .eyebrow {
  text-align: center;
  display: block;
}

.turning h2 {
  text-align: center;
  margin-bottom: 48px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.turning p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.turning p strong {
  color: var(--ink-deep);
  font-weight: 600;
}

/* ---------- Phases — the 3 pillars ---------- */
.phases-intro {
  text-align: center;
  margin: 0 auto 80px;
  width: 100%;
}

.phases-intro h2 {
  max-width: 25ch;
  margin: 0 auto 20px;
}

.phases {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.phase {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 48px 56px;
  background: var(--bg-ivory);
  border-radius: 24px;
  border: 1px solid var(--theme-line);
  transition: all 0.45s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  overflow: hidden;
  color: var(--ink-deep); /* Phase cards always use dark text for contrast on ivory */
  --theme-text: var(--ink-deep);
  --theme-text-soft: var(--ink-soft);
  --theme-accent: var(--terracotta-deep);
  width: 100%;
  max-width: 880px;
}

.phase::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--terracotta);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(.2, .8, .2, 1);
}

.phase:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(26, 20, 16, 0.18);
  border-color: transparent;
}

.phase:hover::before {
  transform: scaleY(1);
}

.phase:nth-child(2)::before {
  background: var(--olive);
}

.phase:nth-child(3)::before {
  background: var(--gold);
}

.phase-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 88px;
  line-height: 0.85;
  color: var(--terracotta);
  background: var(--grad-terra);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.phase:nth-child(2) .phase-num {
  background: var(--grad-olive);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.phase:nth-child(3) .phase-num {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.phase h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: 16px;
  font-weight: 500;
}

.phase h3 .label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 600;
  margin-bottom: 12px;
  font-style: normal;
}

.phase:nth-child(2) h3 .label {
  color: var(--olive);
}

.phase:nth-child(3) h3 .label {
  color: var(--terracotta-deep);
}

.phase p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.bonus {
  margin-top: 32px; /* Matched to phases gap */
  padding: 56px;
  background: var(--grad-olive);
  border-radius: 24px;
  color: var(--bg-ivory);
  position: relative;
  overflow: hidden;
  max-width: 880px; 
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.bonus::before {
  content: 'BÔNUS';
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--gold-soft);
  padding: 6px 14px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
}

.bonus h3 {
  color: var(--bg-ivory);
  margin-bottom: 16px;
  max-width: 24ch;
  font-style: italic;
  font-weight: 400;
}

.bonus p {
  color: rgba(245, 239, 230, 0.9);
  font-size: 16px;
  line-height: 1.7;
  max-width: 72ch;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: var(--bg-cream-deep);
}

.testimonials-section .section-head {
  text-align: center;
  margin-bottom: 72px;
}

.testimonials-section h2 {
  max-width: 18ch;
  margin: 0 auto;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}

.testimonials-video {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.video-short-wrap {
  position: relative;
  width: 320px;
  height: 568px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.video-short-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.testimonial {
  background: var(--bg-ivory);
  padding: 48px 52px;
  border-radius: 20px;
  position: relative;
  border: 1px solid var(--line-soft);
  transition: all 0.4s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(26, 20, 16, 0.2);
}

.testimonial .quote-mark {
  position: absolute;
  top: 24px;
  left: 36px;
  font-family: var(--font-display);
  font-size: 110px;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.18;
  font-weight: 600;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-deep);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-olive);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.author-avatar::before {
  content: 'F';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-ivory);
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
}

.testimonial:nth-child(2) .author-avatar::before {
  content: 'C';
  background: var(--grad-terra);
}

.testimonial:nth-child(2) .author-avatar {
  background: var(--grad-terra);
}

.testimonial:nth-child(3) .author-avatar::before {
  content: 'M';
}

.author-info {
  font-size: 14px;
}

.author-info .name {
  font-weight: 600;
  color: var(--ink-deep);
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.author-info .meta {
  color: var(--olive);
  font-style: italic;
}

/* ---------- Included items ---------- */
.included-section {
  background: var(--ink-deep);
  color: var(--bg-ivory);
}

.included-section h2 {
  color: var(--bg-ivory);
}

.included-section .section-head {
  text-align: center;
  margin-bottom: 64px;
}

.included-section h2 {
  max-width: 20ch;
  margin: 0 auto;
}

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

.inc-item {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: rgba(245, 239, 230, 0.04);
  border: 1px solid rgba(245, 239, 230, 0.08);
  border-radius: 14px;
  transition: all 0.35s ease;
}

.inc-item:hover {
  background: rgba(201, 160, 80, 0.08);
  border-color: rgba(201, 160, 80, 0.3);
  transform: translateY(-3px);
}

.inc-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--grad-terra);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-ivory);
}

.inc-icon svg {
  width: 18px;
  height: 18px;
}

.inc-item h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--bg-ivory);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.inc-item p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(245, 239, 230, 0.65);
  margin: 0;
}

/* ---------- Investment / Cost section ---------- */
.investment {
  background: var(--bg-ivory);
  text-align: center;
}

.investment .wrap {
  max-width: 960px;
}

.investment h2 {
  font-style: italic;
  font-weight: 300;
  max-width: 20ch;
  margin: 0 auto 40px;
}

.investment .big-question {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--terracotta-deep);
  margin: 56px auto 40px;
  max-width: 32ch;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
}

.investment p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 22px;
  color: var(--ink-soft);
  text-align: left;
}

.investment p.center-text {
  text-align: center;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

.investment .closing {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--ink-deep);
  margin: 48px auto 0;
  font-weight: 500;
  text-align: center;
  font-style: italic;
  max-width: 25ch;
  line-height: 1.4;
}

/* ---------- Conversation invitation ---------- */
.invitation {
  background: var(--grad-olive);
  color: var(--bg-ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.invitation::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  right: -100px;
  bottom: -100px;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 160, 80, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(245, 239, 230, 0.08) 0%, transparent 40%);
}

.invitation .wrap {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.invitation h2 {
  color: var(--bg-ivory);
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

.invitation h2 .accent {
  font-style: italic;
  color: var(--gold-soft);
}

.invitation p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245, 239, 230, 0.88);
  margin-bottom: 22px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Final CTA — reserve ---------- */
.final-cta {
  background:
    radial-gradient(ellipse at top, rgba(194, 114, 74, 0.15) 0%, transparent 60%),
    var(--bg-cream);
  text-align: center;
  padding: 140px 0;
}

.final-cta .vacancy-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--bg-ivory);
  border: 1px solid var(--terracotta);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta-deep);
  margin-bottom: 32px;
}

.final-cta .vacancy-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

.final-cta h2 {
  max-width: 22ch;
  margin: 0 auto 28px;
  font-style: italic;
  font-weight: 400;
}

.final-cta .lead {
  max-width: 50ch;
  margin: 0 auto 48px;
  color: var(--ink-soft);
}

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--bg-ivory);
}

.faq-section .section-head {
  text-align: center;
  margin-bottom: 64px;
}

.faq-section h2 {
  max-width: 20ch;
  margin: 0 auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-cream);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item.open {
  border-color: var(--terracotta);
  background: var(--bg-ivory);
  box-shadow: 0 14px 40px -20px rgba(194, 114, 74, 0.3);
}

.faq-q {
  width: 100%;
  padding: 26px 32px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 500;
  color: var(--ink-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.3s ease;
}

.faq-q:hover {
  color: var(--terracotta-deep);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--bg-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(.2, .8, .2, 1);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--ink-deep);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.2, .8, .2, 1);
}

.faq-item.open .faq-a {
  max-height: 600px;
}

.faq-a-inner {
  padding: 0 32px 28px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 16px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-deep);
  color: rgba(245, 239, 230, 0.7);
  padding: 60px 0 36px;
  text-align: center;
}

.footer-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--bg-ivory);
  margin-bottom: 12px;
}

.footer-name img {
  height: 48px;
  width: auto;
  display: inline-block;
  object-fit: unset;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(245, 239, 230, 0.6);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

.footer-meta {
  font-size: 12px;
  color: rgba(245, 239, 230, 0.4);
  letter-spacing: 0.05em;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(.2, .8, .2, 1), transform 0.9s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2, .8, .2, 1);
}

.reveal-stagger.in>*:nth-child(1) {
  transition-delay: 0.05s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(2) {
  transition-delay: 0.15s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(3) {
  transition-delay: 0.25s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(4) {
  transition-delay: 0.35s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(5) {
  transition-delay: 0.45s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(6) {
  transition-delay: 0.55s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(7) {
  transition-delay: 0.65s;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(8) {
  transition-delay: 0.75s;
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .section {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-photo {
    max-width: 380px;
    margin: 0 auto;
  }

  .phase {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 36px 28px;
  }

  .phase-num {
    font-size: 64px;
  }

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

  .portrait-deco {
    display: none;
  }

  .testimonial {
    padding: 36px 28px;
  }

  .bonus {
    padding: 36px 28px;
  }

  .investment p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .section {
    padding: 64px 0;
  }

  .cta-btn {
    padding: 18px 28px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Lead Modal & Form ---------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 20, 16, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(.2, .8, .2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-cream);
  width: 100%;
  max-width: 540px;
  padding: 64px;
  border-radius: 32px;
  position: relative;
  transform: translateY(40px);
  transition: transform 0.6s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.4);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--terracotta);
}

.modal-header {
  text-align: center;
  margin-bottom: 40px;
}

.modal-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 20px;
  line-height: 1.25;
}

.modal-header p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-deep);
}

.form-group input {
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-ivory);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-deep);
  transition: all 0.3s ease;
  width: 100%;
}

.form-group input:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(194, 114, 74, 0.1);
}

/* Customizing intl-tel-input */
.iti { width: 100%; }
.iti__country-list { 
  background-color: var(--bg-ivory); 
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.full-width {
  width: 100%;
  justify-content: center;
}

.form-privacy {
  font-size: 11px;
  text-align: center;
  color: var(--olive);
  opacity: 0.7;
  margin-top: 12px;
}

@media (max-width: 600px) {
  .modal-content {
    padding: 40px 24px;
    border-radius: 20px;
    margin: 16px;
  }
  
  .modal-header h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 560px) {
  .hero-trust {
    gap: 24px 32px;
  }

  .qualify-item {
    padding: 22px;
  }

  .testimonial {
    padding: 32px 24px;
  }

  .testimonial .quote-mark {
    font-size: 80px;
    top: 16px;
    left: 24px;
  }

  .faq-q {
    padding: 22px 24px;
    font-size: 1rem;
  }

  .faq-a-inner {
    padding: 0 24px 24px;
  }

  .invitation,
  .final-cta {
    padding: 80px 0;
  }

  .story-text p:first-of-type::first-letter {
    font-size: 3.5em;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-stagger>* {
    opacity: 1 !important;
    transform: none !important;
  }
}