/* ============================================================
   JUANMA CANCELA — Inteligencia Emocional
   Rediseño web · Editorial / pausa consciente
   ============================================================ */

/* ---- Design tokens ---- */
:root {
  /* Palette (strict, per brief) */
  --bg: #f1f0f0;          /* warm light gray */
  --ink: #1a1a1a;         /* charcoal / near-black */
  --muted: #888888;       /* mid gray */
  --terra: #a3506a;       /* terracotta accent (tweakable) */
  --terra-soft: color-mix(in oklab, var(--terra) 12%, var(--bg));
  --white: #ffffff;
  --line: color-mix(in oklab, var(--ink) 12%, var(--bg));
  --line-strong: color-mix(in oklab, var(--ink) 22%, var(--bg));

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif; /* tweakable */
  --sans: "Work Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Density / negative space (tweakable scale 0.8–1.35) */
  --space-scale: 1;
  --section-pad: calc(clamp(4.5rem, 11vh, 9rem) * var(--space-scale));
  --block-gap: calc(clamp(2.5rem, 5vw, 4.5rem) * var(--space-scale));

  /* Layout */
  --container: 1180px;
  --reading: 680px;
  --radius: 4px;

  /* Illustrations toggle */
  --illus-display: flex;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.serif-italic, em, .em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
p { text-wrap: pretty; }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3.5rem);
}
section { padding-block: var(--section-pad); }
.section-divider { border-top: 1px solid var(--line); }

/* Editorial section label  e.g.  "02 — A quién acompaño" */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 1.6rem;
}
.eyebrow .num { color: var(--muted); font-variant-numeric: tabular-nums; }
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--terra);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}
.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  line-height: 1.6;
  color: var(--ink);
  max-width: var(--reading);
}
.muted { color: var(--muted); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95rem 1.6rem;
  font-family: var(--sans);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  min-height: 48px;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
  text-align: center;
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--terra);
  color: #fff;
}
.btn-primary:hover { background: color-mix(in oklab, var(--terra) 85%, #000); }
.btn-outline {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--terra); color: var(--terra); }
.btn-ghost { color: var(--terra); padding-inline: 0; min-height: auto; }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn-light {
  background: #fff; color: var(--ink);
  white-space: normal;
}
.btn-light:hover { background: rgba(255,255,255,.88); }

/* link with arrow inline */
.tlink {
  color: var(--terra);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}
.tlink .arrow { transition: transform .25s ease; }
.tlink:hover .arrow { transform: translateX(4px); }

/* ============================================================
   PLACEHOLDERS  (photos + folk-art illustrations)
   ============================================================ */
.ph {
  position: relative;
  background-color: #e7e5e3;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 11px,
    color-mix(in oklab, var(--ink) 6%, transparent) 11px,
    color-mix(in oklab, var(--ink) 6%, transparent) 12px
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph-label {
  font-family: ui-monospace, "SF Mono", "Roboto Mono", Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: color-mix(in oklab, var(--ink) 55%, transparent);
  background: rgba(241,240,240,.78);
  padding: 0.5em 0.85em;
  border-radius: 3px;
  text-align: center;
  max-width: 80%;
  line-height: 1.4;
}

/* folk-art terracotta illustration placeholder (toggleable) */
.illus {
  display: var(--illus-display);
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--terra-soft);
  color: var(--terra);
  position: relative;
}
.illus svg { width: 26px; height: 26px; }
.illus::after {
  content: attr(data-illus);
  position: absolute;
  inset: 0;
  display: var(--illus-tag, none);
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 0.5rem;
  color: var(--terra);
  text-align: center;
  padding: 4px;
  background: var(--terra-soft);
  border: 1px dashed var(--terra);
  border-radius: 50%;
  line-height: 1.2;
}

/* hand-drawn signature scribble placeholder */
.scribble-ph {
  font-family: ui-monospace, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  border: 1px dashed var(--line-strong);
  border-radius: 3px;
  padding: 0.4em 0.7em;
  display: inline-block;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 74px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.brand .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--terra); display: inline-block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.nav-links a {
  font-size: 0.93rem;
  color: var(--ink);
  position: relative;
  padding-block: 4px;
  transition: color .2s ease;
  white-space: nowrap;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--terra);
  transition: width .25s ease;
}
.nav-links a:not(.btn):hover { color: var(--terra); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-cta { padding: 0.6rem 1.15rem !important; min-height: 40px; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 74px 0 auto 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem clamp(1.25rem, 5vw, 3.5rem) 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform: translateY(-120%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  z-index: 99;
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.6rem;
  padding-block: 0.55rem;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 1.4rem; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: calc(var(--section-pad) * 0.75); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.hero h1 em { color: var(--terra); }
.hero-sub {
  font-size: clamp(1.12rem, 1.7vw, 1.4rem);
  color: color-mix(in oklab, var(--ink) 75%, var(--bg));
  max-width: 30ch;
  margin-top: 1.8rem;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.6rem;
}
.hero-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
}
.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta .item { }
.hero-meta .k { font-family: var(--serif); font-size: 1.4rem; }
.hero-meta .v { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.02em; }

/* ============================================================
   "A QUIÉN ACOMPAÑO"
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.accompany-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}
.accompany-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 1.05rem;
  border-top: 1px solid var(--line);
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  font-family: var(--serif);
  line-height: 1.3;
}
.accompany-list li:last-child { border-bottom: 1px solid var(--line); }
.accompany-list .idx { font-family: var(--sans); font-size: 0.8rem; color: var(--terra); font-weight: 600; transform: translateY(-2px); }
.accompany-photo { aspect-ratio: 3 / 4; }

/* ============================================================
   "QUÉ TRABAJAMOS"  — card grid
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--block-gap);
}
.work-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform .3s ease, border-color .3s ease;
}
.work-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.work-card h3 { font-size: 1.5rem; }
.work-card p { color: var(--muted); font-size: 0.98rem; line-height: 1.6; }

/* ============================================================
   TRANSFORMACIÓN  (antes / después)
   ============================================================ */
.transform-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: stretch;
  margin-top: var(--block-gap);
}
.transform-col h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.transform-col.after h3 { color: var(--terra); }
.transform-col ul { display: flex; flex-direction: column; gap: 0.2rem; }
.transform-col li {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.25;
  padding-block: 0.7rem;
  color: var(--muted);
}
.transform-col.after li { color: var(--ink); }
.transform-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  align-self: center;
}
.transform-arrow svg { width: 48px; height: 48px; }

/* ============================================================
   SESIÓN 1:1
   ============================================================ */
.session {
  background: var(--white);
  border-radius: var(--radius);
}
.session-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.session-steps { margin-top: 1.8rem; display: flex; flex-direction: column; }
.session-steps li {
  display: flex; align-items: baseline; gap: 0.9rem;
  padding-block: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 1.12rem;
}
.session-steps .mark { color: var(--terra); font-family: var(--serif); font-style: italic; }
.facts {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: start;
}
.fact {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
}
.fact:last-of-type { border-bottom: none; }
.fact .illus { width: 42px; height: 42px; }
.fact .illus svg { width: 20px; height: 20px; }
.fact .k { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.fact .v { font-size: 1.05rem; font-family: var(--serif); }
.price-note {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
  line-height: 1.5;
}

/* ============================================================
   PROCESO  (timeline)
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: var(--block-gap);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 2.4rem;
}
.step::before {
  content: "";
  position: absolute;
  top: 7px; left: 0; right: 0;
  height: 1px;
  background: var(--line-strong);
}
.step .n {
  counter-increment: step;
  position: absolute;
  top: 0; left: 0;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  font-size: 0;
}
.step .label { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); }
.step h3 { font-size: 1.7rem; margin: 0.7rem 0 0.7rem; }
.step p { color: var(--muted); font-size: 0.97rem; line-height: 1.6; }
.step .illus { margin-bottom: 0.8rem; }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--block-gap);
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.testi-card .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.32rem;
  line-height: 1.45;
}
.testi-card .quote.empty { color: var(--muted); }
.testi-person { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.testi-person .ph { width: 46px; height: 46px; border-radius: 50%; flex: 0 0 auto; }
.testi-person .ph .ph-label { display: none; }
.testi-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 880px; }
.monogram {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 50%;
  background: var(--terra-soft);
  color: var(--terra);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.25rem; line-height: 1;
}
.testi-person > div:last-child { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.testi-person .name { font-weight: 600; font-size: 0.95rem; line-height: 1.3; }
.testi-person .role { font-size: 0.85rem; color: var(--muted); }
.testi-note {
  margin-top: 1.8rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-family: ui-monospace, monospace;
  border-left: 2px solid var(--terra);
  padding-left: 1rem;
}

/* ============================================================
   SOBRE MÍ
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about-text p { margin-bottom: 1.3rem; font-size: 1.08rem; color: color-mix(in oklab, var(--ink) 85%, var(--bg)); }
.about-photo { aspect-ratio: 4 / 5; position: sticky; top: 100px; }
.about-anchor {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.2;
  margin-top: 2.5rem;
  max-width: 22ch;
}
.about-anchor em { color: var(--terra); }

/* ============================================================
   PODCAST  "De Correr a Parar"
   ============================================================ */
.podcast { background: var(--white); border-radius: var(--radius); }
.podcast-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.podcast-cover { aspect-ratio: 1; }
.spotify-embed {
  margin-top: 1.8rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.spotify-embed iframe { display: block; width: 100%; }

/* ============================================================
   RECURSOS GRATUITOS
   ============================================================ */
.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--block-gap);
}
.res-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.res-card h3 { font-size: 1.45rem; }
.res-card p { color: var(--muted); font-size: 0.97rem; line-height: 1.6; flex-grow: 1; }
.inline-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.inline-form input {
  flex: 1 1 140px;
  min-width: 0;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font: inherit;
  font-size: 0.92rem;
  background: var(--bg);
  color: var(--ink);
}
.inline-form input:focus { outline: 2px solid var(--terra); outline-offset: 1px; border-color: transparent; }
.inline-form button { padding: 0.75rem 1.2rem; white-space: nowrap; }

/* ============================================================
   REGALO PDF
   ============================================================ */
.gift {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
}
.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.gift .eyebrow { color: color-mix(in oklab, var(--terra) 75%, #fff); }
.gift .eyebrow::before { background: color-mix(in oklab, var(--terra) 75%, #fff); }
.gift h2 { color: #fff; }
.gift p { color: color-mix(in oklab, var(--bg) 75%, transparent); }
.gift-form, .gift-cta { display: flex; flex-direction: column; gap: 0.85rem; max-width: 380px; align-items: flex-start; }
.gift-cta .fineprint { font-size: 0.82rem; color: color-mix(in oklab, var(--bg) 55%, transparent); }
.gift-form label { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: color-mix(in oklab, var(--bg) 65%, transparent); }
.gift-form input {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font: inherit;
  background: rgba(255,255,255,.06);
  color: #fff;
}
.gift-form input::placeholder { color: rgba(255,255,255,.4); }
.gift-form input:focus { outline: 2px solid var(--terra); outline-offset: 1px; }
.gift-form .fineprint { font-size: 0.82rem; color: color-mix(in oklab, var(--bg) 55%, transparent); font-style: normal; }
.form-msg { font-size: 0.9rem; margin-top: 0.3rem; min-height: 1.2em; }
.form-msg.ok { color: color-mix(in oklab, var(--terra) 60%, #fff); }
.form-msg.err { color: #e8a08f; }

/* ============================================================
   FAQ  (accordion)
   ============================================================ */
.faq-wrap { max-width: 820px; margin-top: var(--block-gap); }
.faq-item { border-top: 1px solid var(--line-strong); }
.faq-item:last-child { border-bottom: 1px solid var(--line-strong); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.3;
}
.faq-q .ico {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  position: relative;
  color: var(--terra);
}
.faq-q .ico::before, .faq-q .ico::after {
  content: ""; position: absolute; background: currentColor;
  top: 50%; left: 50%;
  transition: transform .3s ease;
}
.faq-q .ico::before { width: 15px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-q .ico::after { width: 1.5px; height: 15px; transform: translate(-50%,-50%); }
.faq-item.open .faq-q .ico::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
}
.faq-a-inner { padding: 0 0 1.7rem; color: var(--muted); max-width: 60ch; font-size: 1.02rem; line-height: 1.65; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.final {
  position: relative;
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  border-radius: var(--radius);
  overflow: hidden;
}
.final .ph {
  position: absolute; inset: 0; border: none; border-radius: 0;
  background-color: #2a2522;
  opacity: 0.5;
}
.final .ph .ph-label {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.25);
}
.final-inner { position: relative; z-index: 1; padding-block: clamp(4rem, 9vh, 7rem); }
.final h2 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.04;
}
.final .sub { font-size: clamp(1.1rem, 2vw, 1.4rem); color: rgba(255,255,255,.7); margin-top: 1.4rem; }
.final-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.8rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding-block: calc(var(--section-pad) * 0.7) 2.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.footer .brand { font-size: 1.5rem; margin-bottom: 1rem; }
.footer p { color: var(--muted); font-size: 0.98rem; max-width: 30ch; }
.footer .loc { margin-top: 1rem; }
.footer h4 { font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); margin-bottom: 1.2rem; }
.footer ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer ul a { color: var(--muted); font-size: 0.98rem; transition: color .2s ease; }
.footer ul a:hover { color: var(--terra); }
.footer-bottom {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal.in { animation: revealIn .65s cubic-bezier(.22,.61,.36,1) both; }
  @keyframes revealIn {
    from { transform: translateY(16px); }
    to   { transform: translateY(0); }
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .work-grid, .res-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid, .two-col, .session-grid, .about-grid, .podcast-grid, .gift-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 2.5rem; }
  .hero-photo, .accompany-photo, .about-photo, .podcast-cover { max-width: 460px; }
  .about-photo { position: static; }
  .transform-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .transform-arrow { transform: rotate(90deg); padding-block: 0.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .work-grid, .res-grid, .testi-grid, .steps { grid-template-columns: 1fr; }
  .hero-cta .btn, .final-cta .btn { width: 100%; justify-content: center; }
  .hero-meta { gap: 1.5rem; }
}

/* ============================================================
   REAL PHOTOS
   ============================================================ */
.photo { border-radius: var(--radius); overflow: hidden; background: #e7e5e3; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Testimonial screenshots — real WhatsApp captures, 3 aligned columns */
.testi-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 1.5rem;
  margin-top: var(--block-gap);
}
.testi-shots .shot {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
}
.testi-shots .shot img { width: 100%; border-radius: 7px; display: block; }
@media (max-width: 860px) { .testi-shots { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testi-shots { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* Final CTA — background photo */
.final-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.24;
  filter: grayscale(15%);
}

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
#tweaks-panel {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 290px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
  z-index: 1000;
  font-family: var(--sans);
  color: var(--ink);
  display: none;
  overflow: hidden;
}
#tweaks-panel.visible { display: block; }
.tw-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.tw-head .t { font-family: var(--serif); font-size: 1.05rem; }
.tw-close { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 1.1rem; }
.tw-close:hover { background: var(--bg); color: var(--ink); }
.tw-body { padding: 14px 16px 18px; max-height: 70vh; overflow-y: auto; }
.tw-group + .tw-group { margin-top: 18px; }
.tw-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; display: block; }
.tw-seg { display: flex; gap: 4px; background: var(--bg); border-radius: 8px; padding: 3px; }
.tw-seg button {
  flex: 1; padding: 7px 4px; border-radius: 6px; font-size: 0.78rem; font-weight: 500;
  color: var(--muted); transition: all .18s ease; white-space: nowrap;
}
.tw-seg button.active { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.1); font-weight: 600; }
.tw-swatches { display: flex; gap: 8px; }
.tw-swatch { width: 30px; height: 30px; border-radius: 50%; border: 2px solid transparent; transition: transform .15s ease; }
.tw-swatch:hover { transform: scale(1.1); }
.tw-swatch.active { border-color: var(--ink); }
.tw-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tw-toggle {
  width: 42px; height: 24px; border-radius: 999px; background: var(--line-strong); position: relative; transition: background .2s ease; flex: 0 0 auto;
}
.tw-toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .2s ease; }
.tw-toggle.on { background: var(--terra); }
.tw-toggle.on::after { transform: translateX(18px); }
.tw-slider { width: 100%; accent-color: var(--terra); }
.tw-val { font-size: 0.78rem; color: var(--muted); font-variant-numeric: tabular-nums; }
