/* ============================================================
   MAYA SINCLAIR — Coaching de fuerza (Gym)
   Bebas Neue display + coral cálido
   ============================================================ */

:root {
  /* Palette — warm off-white, coral accent, sunny yellow pop */
  --cream:      #fbf7f4;
  --cream-2:    #f4ece6;
  --paper:      #ffffff;
  --ink:        #1a1614;
  --ink-soft:   #56504c;
  --ink-mute:   #6f665f;   /* accessible muted (>=4.5:1 on cream & white) */
  --line:       #ece4dd;
  --bronze:     #ff5a47;    /* bright coral: large fills / graphics only */
  --coral-text: #cf3a26;    /* accessible coral for TEXT, links, labels */
  --bronze-dk:  #e8412e;
  --bronze-tint:#ffe1db;
  --yellow:     #ffcf3d;
  --noir:       #17110f;

  /* Type */
  --serif: "Bebas Neue", "Archivo", sans-serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 80px);
  --section-y: clamp(90px, 12vw, 180px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Aliases so the shared booking modal (booking.css/js) themes correctly */
  --ink-faint:    var(--ink-mute);
  --hairline:     var(--line);
  --hairline-soft: rgba(26, 22, 20, 0.06);
  --bronze-deep:  var(--coral-text);
  --bronze-soft:  var(--bronze-tint);
  --font-ui:      var(--sans);
  --font-display: var(--serif);
  --ease-lux:     var(--ease);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

::selection { background: var(--bronze); color: var(--paper); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral-text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--bronze);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--bronze);
  display: inline-block;
}

/* ---------- Display type ---------- */
.display {
  font-family: var(--serif);
  font-weight: var(--display-weight, 400);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: clamp(52px, 7vw, 104px);
}
.h-sect {
  font-family: var(--serif);
  font-weight: var(--display-weight, 400);
  line-height: 0.93;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  font-size: clamp(38px, 5vw, 70px);
}
.italic-accent { font-style: normal; font-weight: 400; color: var(--bronze); }
.hl { background: var(--bronze); color: var(--paper); padding: 0 0.18em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hl-y { background: var(--rose); color: var(--ink); padding: 0 0.18em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.lede {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border-radius: 100px;
  border: 1px solid var(--bg);
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.5s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -14px rgba(28,25,22,0.5); }
.btn .arr { transition: transform 0.45s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--paper); }
.btn--bronze { --bg: var(--bronze); --fg: var(--ink); border-color: var(--bronze); }
.btn--light { --bg: var(--paper); --fg: var(--ink); border-color: var(--paper); }

.textlink {
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  transition: gap 0.4s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.textlink:hover { gap: 14px; color: var(--coral-text); border-color: var(--coral-text); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  padding-block: 14px;
  border-bottom-color: var(--line);
}
.brand {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}
.brand small { font-size: 9px; letter-spacing: 0.4em; display: block; color: var(--bronze); font-family: var(--sans); font-weight: 600; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em; white-space: nowrap;
  color: var(--ink-soft); text-decoration: none;
  position: relative; transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--bronze); transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .nav-cta .btn { padding: 12px 22px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  padding-top: 120px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  position: relative;
}
.hero-copy { position: relative; z-index: 3; max-width: 640px; }
.hero h1 { margin: 26px 0 0; }
.hero .line { display: block; overflow: hidden; }
.hero .line > span { display: block; transition: transform 1s var(--ease); }
html.anim .hero .line > span { transform: translateY(102%); }
html.anim .hero.in .line > span { transform: translateY(0); }
.hero .line:nth-child(2) > span { transition-delay: 0.08s; }
.hero .line:nth-child(3) > span { transition-delay: 0.16s; }
.hero-sub {
  margin-top: 30px; max-width: 46ch;
  transition: opacity 0.9s var(--ease) 0.5s, transform 0.9s var(--ease) 0.5s;
}
.hero-actions {
  margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  transition: opacity 0.9s var(--ease) 0.62s, transform 0.9s var(--ease) 0.62s;
}
html.anim .hero-sub, html.anim .hero-actions { opacity: 0; transform: translateY(16px); }
.hero.in .hero-sub, .hero.in .hero-actions { opacity: 1; transform: translateY(0); }

.hero-media { position: relative; z-index: 2; }
.hero-frame {
  position: relative;
  aspect-ratio: 4 / 5.1;
  width: 100%;
}
.hero-frame image-slot { width: 100%; height: 100%; }
.hero-badge {
  position: absolute; left: -38px; bottom: 44px; z-index: 4;
  background: var(--paper);
  padding: 22px 28px;
  border-radius: 4px;
  box-shadow: 0 26px 60px -28px rgba(28,25,22,0.55);
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  transition: opacity 1s var(--ease) 0.9s, transform 1s var(--ease) 0.9s;
}
html.anim .hero-badge { opacity: 0; transform: translateY(20px) scale(0.96); }
.hero.in .hero-badge { opacity: 1; transform: translateY(0) scale(1); }
.hero-badge .num { font-family: var(--serif); font-size: 44px; line-height: 0.9; color: var(--bronze); white-space: nowrap; }
.hero-badge .lbl { font-size: 12px; line-height: 1.4; color: var(--ink-soft); max-width: 22ch; letter-spacing: 0.01em; }
.hero-mark {
  position: absolute; right: -8px; top: 30px; z-index: 4;
  writing-mode: vertical-rl;
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600;
}
.hero-scroll {
  position: absolute; left: var(--gutter); bottom: 34px; z-index: 5;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-mute);
}
.hero-scroll .dot { width: 22px; height: 36px; border: 1px solid var(--line); border-radius: 14px; position: relative; }
.hero-scroll .dot::after { content:""; position:absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; border-radius: 2px; background: var(--bronze); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{opacity:0; transform: translate(-50%,0)} 30%{opacity:1} 70%{opacity:1} 100%{opacity:0; transform: translate(-50%,12px)} }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 130px; min-height: auto; gap: 48px; }
  .hero-frame { aspect-ratio: 4/4.4; max-width: 520px; }
  .hero-scroll { display: none; }
  .hero-badge { left: auto; right: 18px; }
}

/* ============================================================
   MARQUEE / TRUST
   ============================================================ */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 26px;
  overflow: hidden;
  background: var(--cream-2);
}
.marquee-track { display: flex; gap: 70px; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px); color: var(--ink-soft);
  white-space: nowrap; display: inline-flex; align-items: center; gap: 70px;
}
.marquee span::after { content: "·"; color: var(--coral-text); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   GENERIC REVEAL
   ============================================================ */
.reveal { transition: opacity 1s var(--ease), transform 1s var(--ease); }
html.anim .reveal { opacity: 0; transform: translateY(34px); }
html.anim .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.about-media { position: relative; }
.about-media .stack-a { aspect-ratio: 3/3.7; }
.about-media image-slot { width: 100%; height: 100%; }
.about-media .tag {
  position: absolute; right: -22px; bottom: 40px;
  background: var(--ink); color: var(--paper);
  padding: 16px 22px; border-radius: 4px; max-width: 200px;
}
.about-media .tag .k { font-family: var(--serif); font-size: 30px; color: var(--bronze); line-height: 1; }
.about-media .tag .v { font-size: 12px; color: color-mix(in srgb, var(--paper) 75%, transparent); margin-top: 5px; }
.about-body h2 { margin: 20px 0 32px; }
.about-body .sig {
  font-family: var(--serif); font-style: italic; font-size: 34px;
  color: var(--ink); margin-top: 36px;
}
.about-body .sig small { display: block; font-family: var(--sans); font-style: normal; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); margin-top: 8px; }
.cred-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.cred {
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink-soft); background: var(--cream);
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-media .stack-a { aspect-ratio: 4/4; max-width: 460px; }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats { background: var(--noir); color: var(--paper); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { border-left: 1px solid rgba(244,239,232,0.16); padding-left: 26px; }
.stat .n { font-family: var(--serif); font-weight: 500; font-size: clamp(50px, 6vw, 84px); line-height: 1; color: var(--paper); }
.stat .n .suf { color: var(--bronze); }
.stat .l { font-size: 13px; letter-spacing: 0.04em; color: color-mix(in srgb, var(--paper) 64%, transparent); margin-top: 14px; max-width: 22ch; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; } }

/* ============================================================
   TRANSFORMATION — before/after
   ============================================================ */
.transform-head { display: grid; grid-template-columns: 1fr auto; gap: 30px 50px; align-items: end; margin-bottom: clamp(52px, 6vw, 80px); }
.ba {
  position: relative; aspect-ratio: 16/9; width: 100%;
  border-radius: 6px; overflow: hidden; user-select: none;
  box-shadow: 0 40px 80px -50px rgba(28,25,22,0.6);
  background: var(--cream-2);
}
.ba .pane { position: absolute; inset: 0; }
.ba .pane image-slot { width: 100%; height: 100%; pointer-events: none; }
.ba .after { clip-path: inset(0 0 0 var(--split, 50%)); }
.ba-label {
  position: absolute; top: 22px; padding: 8px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; white-space: nowrap;
  background: color-mix(in srgb, var(--noir) 60%, transparent); color: var(--paper);
  backdrop-filter: blur(6px); z-index: 4;
}
.ba-label.l { left: 22px; }
.ba-label.r { right: 22px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--split, 50%);
  width: 2px; background: var(--paper); transform: translateX(-1px); z-index: 5;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.ba-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%; background: var(--paper);
  display: grid; place-items: center; cursor: ew-resize;
  box-shadow: 0 10px 30px -8px rgba(28,25,22,0.5);
}
.ba-grip svg { width: 24px; height: 24px; color: var(--ink); }
.ba-cap { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 28px; }
.ba-cap .m .k { font-family: var(--serif); font-size: 34px; color: var(--coral-text); line-height: 1; }
.ba-cap .m .v { font-size: 13px; color: var(--ink-mute); margin-top: 6px; }
@media (max-width: 760px) { .transform-head { grid-template-columns: 1fr; } .ba { aspect-ratio: 4/3; } }

/* ============================================================
   PROGRAMS
   ============================================================ */
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: clamp(40px,5vw,60px); }
.prog {
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  padding: 0; overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}
.prog:hover { transform: translateY(-8px); box-shadow: 0 40px 70px -44px rgba(28,25,22,0.5); border-color: var(--bronze-tint); }
.prog-img { aspect-ratio: 3/2; position: relative; }
.prog-img image-slot { width: 100%; height: 100%; }
.prog-tag { position: absolute; top: 16px; left: 16px; z-index: 3; background: var(--paper); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 13px; border-radius: 100px; }
.prog.feat { border-color: var(--bronze); box-shadow: 0 30px 60px -40px rgba(162,107,67,0.5); }
.prog.feat .prog-tag { background: var(--coral-text); color: var(--paper); }
.prog-body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.prog-body h3 { font-family: var(--serif); font-weight: 500; font-size: 30px; line-height: 1.05; }
.prog-meta { display: flex; gap: 16px; margin: 12px 0 16px; font-size: 12px; letter-spacing: 0.04em; color: var(--ink-mute); text-transform: uppercase; font-weight: 600; }
.prog-meta span { display: inline-flex; align-items: center; gap: 6px; }
.prog-body p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.prog-feat { list-style: none; margin: 18px 0 22px; display: flex; flex-direction: column; gap: 9px; }
.prog-feat li { font-size: 14px; color: var(--ink-soft); display: flex; gap: 10px; align-items: flex-start; }
.prog-feat li::before { content: ""; width: 6px; height: 6px; margin-top: 8px; border-radius: 50%; background: var(--bronze); flex: none; }
.prog-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); }
.prog-price { font-family: var(--serif); font-size: 30px; color: var(--ink); }
.prog-price small { font-family: var(--sans); font-size: 12px; color: var(--ink-mute); letter-spacing: 0.04em; }
@media (max-width: 860px) { .prog-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ============================================================
   COACHING SPLIT
   ============================================================ */
.coach { background: var(--cream-2); }
.coach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.coach-list { display: flex; flex-direction: column; }
.coach-item { padding: 26px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; cursor: pointer; transition: padding-left 0.5s var(--ease); }
.coach-item:last-child { border-bottom: 1px solid var(--line); }
.coach-item:hover { padding-left: 12px; }
.coach-item .ix { font-family: var(--serif); font-size: 20px; color: var(--coral-text); width: 40px; }
.coach-item h4 { font-family: var(--serif); font-weight: 500; font-size: 28px; line-height: 1.05; }
.coach-item p { font-size: 14px; color: var(--ink-soft); margin-top: 5px; }
.coach-item .go { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink); transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease); }
.coach-item:hover .go { background: var(--bronze); color: var(--paper); border-color: var(--bronze); }
.coach-media { position: relative; }
.coach-media .cm { aspect-ratio: 4/4.6; }
.coach-media image-slot { width: 100%; height: 100%; }
@media (max-width: 860px) { .coach-grid { grid-template-columns: 1fr; } .coach-media { order: -1; } .coach-media .cm { aspect-ratio: 16/11; } }

/* ============================================================
   SUCCESS STORIES
   ============================================================ */
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: clamp(40px,5vw,60px); }
.story { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease); }
.story:hover { transform: translateY(-6px); box-shadow: 0 36px 64px -46px rgba(28,25,22,0.45); }
.story .quote { font-family: var(--sans); font-weight: 500; font-size: 21px; line-height: 1.4; color: var(--ink); font-style: normal; text-wrap: pretty; }
.story .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.story .who image-slot { width: 48px; height: 48px; flex: none; }
.story .who .nm { font-weight: 700; font-size: 14px; }
.story .who .rl { font-size: 12px; color: var(--ink-mute); }
.story .res { display: flex; gap: 22px; padding-top: 16px; border-top: 1px solid var(--line); }
.story .res > div { flex: none; }
.story .res .k { font-family: var(--serif); font-size: 26px; color: var(--coral-text); line-height: 1; white-space: nowrap; }
.story .res .v { font-size: 11px; color: var(--ink-mute); margin-top: 4px; }
.stars { display: flex; gap: 3px; color: var(--bronze); }
.stars svg { width: 16px; height: 16px; }
@media (max-width: 860px) { .stories-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* ============================================================
   SOCIAL FEED
   ============================================================ */
.feed { background: var(--paper); }
.feed-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.feed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feed-cell { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 4px; }
.feed-cell image-slot { width: 100%; height: 100%; }
.feed-cell .ig { position: absolute; inset: 0; display: grid; place-items: center; background: color-mix(in srgb, var(--noir) 40%, transparent); opacity: 0; transition: opacity 0.4s var(--ease); z-index: 3; pointer-events: none; }
.feed-cell:hover .ig { opacity: 1; }
.feed-cell .ig svg { width: 30px; height: 30px; color: var(--paper); }
@media (max-width: 760px) { .feed-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners { background: var(--paper); border-block: 1px solid var(--line); padding-block: clamp(60px, 8vw, 110px); }
.partners-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.partner-cell { border: 1px solid var(--line); border-radius: 8px; background: var(--cream); aspect-ratio: 16/9; display: grid; place-items: center; padding: 18px; transition: border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.partner-cell:hover { border-color: var(--bronze-tint); transform: translateY(-3px); }
.partner-cell image-slot { width: 100%; height: 100%; background: transparent; }
@media (max-width: 900px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream-2); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; font-family: var(--sans); font-weight: 700; letter-spacing: -0.01em; font-size: clamp(19px, 2.1vw, 24px); color: var(--ink); }
.faq-q .pm { flex: none; width: 30px; height: 30px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--bronze); transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.faq-q .pm::before { top: 50%; left: 4px; right: 4px; height: 1.5px; transform: translateY(-50%); }
.faq-q .pm::after { left: 50%; top: 4px; bottom: 4px; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .pm::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { padding: 0 0 26px; font-size: 16px; color: var(--ink-soft); max-width: 60ch; line-height: 1.6; }
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   CONTACT / BOOKING
   ============================================================ */
.contact { background: var(--noir); color: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact h2 { color: var(--paper); margin: 22px 0 24px; }
.contact .lede { color: color-mix(in srgb, var(--paper) 70%, transparent); }
.contact-meta { margin-top: 44px; display: flex; flex-direction: column; gap: 22px; }
.contact-meta .row { display: flex; gap: 16px; align-items: center; }
.contact-meta .ico { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(244,239,232,0.2); display: grid; place-items: center; color: var(--bronze); flex: none; }
.contact-meta .ico svg { width: 19px; height: 19px; }
.contact-meta .t { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: color-mix(in srgb, var(--paper) 55%, transparent); }
.contact-meta .d { font-size: 17px; color: var(--paper); margin-top: 2px; }

.book {
  background: var(--paper); color: var(--ink);
  border-radius: 10px; padding: clamp(28px, 4vw, 44px);
}
.book h3 { font-family: var(--serif); font-weight: 500; font-size: 30px; margin-bottom: 6px; }
.book .sub { font-size: 14px; color: var(--ink-mute); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--cream); transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--bronze); box-shadow: 0 0 0 3px var(--bronze-tint); }
.field textarea { resize: vertical; min-height: 90px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { font-size: 13px; font-weight: 500; padding: 9px 15px; border: 1px solid var(--line); border-radius: 100px; cursor: pointer; background: var(--cream); transition: all 0.3s var(--ease); user-select: none; white-space: nowrap; }
.chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.book .btn { width: 100%; justify-content: center; margin-top: 8px; }
.book .reassure { font-size: 12px; color: var(--ink-mute); text-align: center; margin-top: 14px; }
.book-success { display: none; text-align: center; padding: 30px 0; }
.book-success.show { display: block; }
.book-success .ck { width: 64px; height: 64px; border-radius: 50%; background: var(--bronze); display: grid; place-items: center; margin: 0 auto 20px; }
.book-success .ck svg { width: 30px; height: 30px; color: var(--paper); }
.book-success h3 { margin-bottom: 8px; }
.book-success p { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--noir); color: var(--paper); padding-top: 0; padding-bottom: 40px; }
.footer-top { border-top: 1px solid rgba(244,239,232,0.14); padding-top: 64px; padding-bottom: 56px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: var(--paper); }
.footer .fcol h5 { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--paper) 50%, transparent); margin-bottom: 18px; }
.footer .fcol a { display: block; font-size: 15px; color: color-mix(in srgb, var(--paper) 78%, transparent); text-decoration: none; margin-bottom: 11px; transition: color 0.3s var(--ease); }
.footer .fcol a:hover { color: var(--bronze); }
.footer-mark { font-family: var(--serif); font-size: clamp(60px, 16vw, 220px); line-height: 0.86; color: rgba(244,239,232,0.06); letter-spacing: -0.02em; padding-block: 30px 10px; white-space: nowrap; overflow: hidden; }
.footer-bot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(244,239,232,0.14); font-size: 13px; color: color-mix(in srgb, var(--paper) 50%, transparent); }
.footer-bot a { color: inherit; text-decoration: none; }
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; } }

/* image-slot empty-state styling — make placeholders look art-directed */
image-slot {
  background: linear-gradient(150deg, var(--cream-2), var(--bronze-tint));
  position: relative;
}
.feed-cell image-slot, .story .who image-slot { background: linear-gradient(150deg, var(--cream-2), var(--bronze-tint)); }

/* motion intensity (set by Tweaks) */
html.subtle .reveal { transform: translateY(14px); }
html.subtle .hero .line > span { transform: none !important; }
html.subtle .hero-badge { transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .hero .line > span, .hero-sub, .hero-actions, .reveal, .hero-badge { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   POLISH — utilities (former inline styles), language toggle, a11y
   ============================================================ */
.head-gap { margin-top: 18px; }
.lede-narrow { max-width: 38ch; }
.coach--cream { background: var(--cream); }
.coach-head { margin: 18px 0 14px; }
.coach-lede { margin-bottom: 26px; }
.stories-rating { text-align: right; }
.stars-end { justify-content: flex-end; }
.stories-rating-note { font-size: 14px; color: var(--ink-mute); margin-top: 8px; }
.feed-handle { margin-top: 14px; }
.partners-lede { max-width: 36ch; }
.faq-lede { margin-top: 22px; }
.faq-cta { margin-top: 26px; }
.label-optional { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink-mute); }
.footer-desc { margin-top: 18px; max-width: 32ch; color: color-mix(in srgb, var(--paper) 64%, transparent); font-size: 15px; }

.lang-toggle { display: flex; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; background: var(--paper); }
.lang-toggle button {
  background: none; border: none; color: var(--ink-mute); cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  padding: 0 13px; min-height: 34px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.lang-toggle button.is-active { background: var(--bronze); color: var(--paper); }
.lang-toggle button:not(.is-active):hover { color: var(--ink); }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 300;
  padding: 12px 20px; border-radius: 100px; background: var(--bronze); color: var(--paper);
  font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-decoration: none; transform: translateY(-300%);
}
.skip-link:focus-visible { transform: none; }

:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }
.btn:focus-visible, .chip:focus-visible, .lang-toggle button:focus-visible { outline-offset: 2px; }

@media (max-width: 480px) {
  .nav-cta { gap: 10px; }
  .nav-cta .btn { padding: 12px 16px; }
  .lang-toggle button { padding: 0 10px; }
}

/* ============================================================
   SHARED BOOKING MODAL — adaptación al tema gym (coral)
   ============================================================ */
@keyframes kimFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes kimSlideUp { from { transform: translateY(60px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes kimPop { 0% { transform: scale(0.6); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* El modal usa .btn-primary; en este tema lo mapeamos al coral */
.btn-primary {
  font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  padding: 16px 30px; border-radius: 100px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bronze); color: var(--paper); border: 1px solid var(--bronze);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn-primary:hover { background: var(--bronze-dk); border-color: var(--bronze-dk); transform: translateY(-2px); box-shadow: 0 14px 34px -14px rgba(232, 65, 46, 0.5); }
.kim-booking-panel .serif { font-family: var(--sans); letter-spacing: -0.01em; }
.kim-booking-panel .kb-head h3 { font-weight: 800; }

/* ============================================================
   MOBILE NAV (burger + sheet) + a11y polish
   ============================================================ */
.ba--init { --split: 48%; }

.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
}
.nav-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.nav-burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.nav-sheet {
  position: fixed; inset: 0; z-index: 95;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 0 var(--gutter);
  background: color-mix(in srgb, var(--cream) 97%, transparent);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.nav-sheet.is-open { opacity: 1; pointer-events: auto; }
.nav-sheet a:not(.btn) {
  font-family: var(--serif); font-size: clamp(34px, 11vw, 56px); line-height: 1;
  text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink);
  text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--line);
  transform: translateX(-18px); opacity: 0; transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.nav-sheet.is-open a:not(.btn) { transform: none; opacity: 1; }
.nav-sheet a:nth-child(1) { transition-delay: 60ms; }
.nav-sheet a:nth-child(2) { transition-delay: 100ms; }
.nav-sheet a:nth-child(3) { transition-delay: 140ms; }
.nav-sheet a:nth-child(4) { transition-delay: 180ms; }
.nav-sheet a:nth-child(5) { transition-delay: 220ms; }
.nav-sheet a:nth-child(6) { transition-delay: 260ms; }
.nav-sheet .btn { margin-top: 26px; justify-content: center; }

@media (max-width: 1040px) {
  .nav-burger { display: flex; }
  .nav-cta .btn--bronze { display: none; }     /* CTA lives inside the sheet on mobile */
}
@media (min-width: 1041px) { .nav-sheet { display: none; } }

:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }
.btn:focus-visible, .textlink:focus-visible, .chip:focus-visible,
.lang-toggle button:focus-visible, .nav-burger:focus-visible, .faq-q:focus-visible { outline-offset: 2px; }

/* Real photography framing (portrait shots) */
.hero-frame image-slot img { object-position: 50% 16%; }
.about-media image-slot img { object-position: 50% 18%; }
.coach-media image-slot img { object-position: 50% 24%; }

/* ============================================================
   A11Y / MOBILE POLISH (audit fixes)
   ============================================================ */
.brand small { color: var(--coral-text); }
.lang-toggle button { min-height: 40px; }
.textlink { padding-block: 9px; }               /* larger tap target */
.footer .fcol a { padding-block: 5px; }
.faq-q { min-height: 44px; }

@media (max-width: 640px) {
  .brand small { display: none; }               /* declutter mobile header */
  .hero-mark { display: none; }                 /* was clipping at right edge */
  .hero .eyebrow { letter-spacing: 0.18em; }    /* avoid awkward tracked wrap */
}

/* ============================================================
   LANGUAGE SWITCH (single-word, editorial) — replaces the pill
   ============================================================ */
.lang-switch {
  background: none; border: none; cursor: pointer; font-family: var(--sans);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral-text); line-height: 1;
  border-bottom: 1.5px solid var(--coral-text);
  padding: 4px 0 4px; min-height: 40px;
  transition: letter-spacing 0.3s var(--ease), opacity 0.3s var(--ease);
}
.lang-switch:hover { letter-spacing: 0.22em; }
.lang-switch:focus-visible { outline: 2px solid var(--coral-text); outline-offset: 4px; }

/* ============================================================
   REEL / VIDEO SECTION (dark, click-to-play)
   ============================================================ */
.reel { background: var(--noir); color: var(--paper); }
.reel .eyebrow { color: var(--bronze); }            /* bright coral reads on dark */
.reel .h-sect { color: var(--paper); }
.reel-lede { color: color-mix(in srgb, var(--paper) 78%, transparent); margin-top: 22px; }
.reel-cta { margin-top: 30px; }
.reel-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.reel-copy { max-width: 520px; }
.reel-media { display: flex; justify-content: center; }
.reel-frame {
  position: relative; width: min(340px, 82vw); aspect-ratio: 9 / 16;
  border-radius: 14px; overflow: hidden; background: #000;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8);
}
.reel-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-play {
  position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; border: none;
  border-radius: 50%; background: var(--bronze); color: var(--ink); cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 14px 40px -10px rgba(255,90,71,0.6);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.reel-play svg { width: 30px; height: 30px; margin-left: 4px; }
.reel-play:hover { transform: scale(1.08); }
.reel-play:focus-visible { outline: 2px solid var(--paper); outline-offset: 3px; }
.reel-frame.playing .reel-play { opacity: 0; pointer-events: none; }
@media (max-width: 860px) {
  .reel-grid { grid-template-columns: 1fr; }
  .reel-media { order: 2; }
}

/* ============================================================
   PASADA ROSA — base clara, brillos rosados, sin negro
   (solo edición principal; sobrescribe secciones oscuras y botones)
   Contraste AA verificado: ink sobre rosa brillante, blanco sobre rosa profundo.
   ============================================================ */
:root {
  --rose:      #ff7ea6;   /* rosa brillante: degradados y brillos */
  --rose-deep: #cf3568;   /* rosa profundo: texto/acentos (>=4.5:1 sobre claro) */
  --rose-soft: #ffd6e2;   /* rosa suave: bordes y tints */
  --blush:     #fdeef2;   /* casi blanco rosado: fondos antes oscuros */
  --blush-2:   #fae2ea;
  --rose-glow: rgba(255, 120, 160, 0.18);
}

/* ---- Botones: fuera el negro, degradado rosado con brillo (texto oscuro = AA) ---- */
.btn { --bg: var(--rose-deep); --fg: var(--ink); border-color: transparent;
  background-image: linear-gradient(135deg, var(--rose) 0%, var(--bronze) 100%);
  box-shadow: 0 10px 26px -12px rgba(207, 53, 104, 0.5);
}
.btn:hover { box-shadow: 0 16px 40px -14px rgba(207, 53, 104, 0.55); }
.btn--bronze { --bg: var(--rose-deep); --fg: var(--ink); border-color: transparent;
  background-image: linear-gradient(135deg, var(--rose) 0%, var(--bronze) 100%);
}
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--rose-soft); background-image: none; box-shadow: none; }
.btn--ghost:hover { --bg: var(--rose-deep); --fg: var(--ink); border-color: transparent;
  background-image: linear-gradient(135deg, var(--rose), var(--bronze)); }
.btn-primary { background: var(--rose-deep); color: var(--ink); border-color: transparent;
  background-image: linear-gradient(135deg, var(--rose) 0%, var(--bronze) 100%);
  box-shadow: 0 10px 26px -12px rgba(207, 53, 104, 0.5);
}
.btn-primary:hover { background-image: linear-gradient(135deg, var(--rose), var(--bronze-dk));
  box-shadow: 0 16px 40px -14px rgba(207, 53, 104, 0.55); }
.chip.on { background: var(--rose-deep); border-color: var(--rose-deep); color: var(--paper); }

/* ---- STATS: de negro a blush con brillo rosado ---- */
.stats {
  background:
    radial-gradient(120% 150% at 12% 0%, var(--rose-glow) 0%, transparent 55%),
    linear-gradient(180deg, var(--blush) 0%, var(--blush-2) 100%);
  color: var(--ink);
}
.stat { border-left-color: var(--rose-soft); }
.stat .n { color: var(--ink); }
.stat .n .suf { color: var(--rose-deep); }
.stat .l { color: var(--ink-mute); }

/* ---- CONTACT / BOOKING: blush + brillo ---- */
.contact {
  background:
    radial-gradient(90% 130% at 100% 0%, var(--rose-glow) 0%, transparent 55%),
    linear-gradient(180deg, var(--blush) 0%, var(--blush-2) 100%);
  color: var(--ink);
}
.contact h2 { color: var(--ink); }
.contact .lede { color: var(--ink-soft); }
.contact-meta .ico { border-color: var(--rose-soft); color: var(--rose-deep); }
.contact-meta .t { color: var(--ink-mute); }
.contact-meta .d { color: var(--ink); }
.book { box-shadow: 0 30px 70px -40px rgba(207, 53, 104, 0.4); }
.book-success .ck { background: linear-gradient(135deg, var(--rose), var(--bronze)); }

/* ---- FOOTER: de negro a blush claro ---- */
.footer {
  background:
    radial-gradient(70% 130% at 0% 0%, var(--rose-glow) 0%, transparent 50%),
    var(--blush);
  color: var(--ink);
}
.footer-top { border-top-color: var(--rose-soft); }
.footer .brand { color: var(--ink); }
.footer .fcol h5 { color: var(--ink-mute); }
.footer .fcol a { color: var(--ink-soft); }
.footer .fcol a:hover { color: var(--rose-deep); }
.footer-mark { color: rgba(207, 53, 104, 0.10); }
.footer-bot { border-top-color: var(--rose-soft); color: var(--ink-mute); }
.footer-desc { color: var(--ink-soft); }

/* ---- REEL / VIDEO: blush + brillo, botón play rosado ---- */
.reel {
  background:
    radial-gradient(80% 130% at 85% 10%, var(--rose-glow) 0%, transparent 55%),
    linear-gradient(180deg, var(--blush) 0%, var(--blush-2) 100%);
  color: var(--ink);
}
.reel .eyebrow { color: var(--rose-deep); }
.reel .h-sect { color: var(--ink); }
.reel-lede { color: var(--ink-soft); }
.reel-frame { box-shadow: 0 40px 80px -40px rgba(207, 53, 104, 0.45); }
.reel-play { background: linear-gradient(135deg, var(--rose), var(--bronze)); color: var(--ink);
  box-shadow: 0 14px 40px -10px rgba(207, 53, 104, 0.55); }
.reel-play:focus-visible { outline-color: var(--rose-deep); }

/* ---- Detalles rosados ---- */
.about-media .tag { background: linear-gradient(135deg, var(--rose), var(--bronze)); color: var(--ink); }
.about-media .tag .k { color: var(--ink); }
.about-media .tag .v { color: color-mix(in srgb, var(--ink) 72%, transparent); }
::selection { background: var(--rose); color: var(--ink); }
.lang-toggle button.is-active { background: var(--rose-deep); color: var(--paper); }
.skip-link { background: var(--rose-deep); }

/* Línea de apoyo bajo el titular del hero */
.hero-lead {
  font-family: var(--sans);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 22px 0 12px;
  max-width: 34ch;
}

/* Antes/después: tarjeta vertical centrada (las fotos de clientas son 3:4) */
.ba { aspect-ratio: 3 / 4; max-width: 460px; margin-inline: auto; }
@media (max-width: 560px) { .ba { max-width: 100%; } }

/* ============================================================
   FEED -> tarjeta "Seguir en Instagram" (reemplaza la galería)
   ============================================================ */
.feed-head--center { display: block; text-align: center; }
.feed-head--center .feed-handle { margin-top: 12px; }
.feed-cta {
  margin: clamp(30px, 5vw, 54px) auto 0;
  max-width: 640px; text-align: center;
  padding: clamp(38px, 6vw, 70px) clamp(24px, 5vw, 56px);
  border-radius: 22px; border: 1px solid var(--rose-soft);
  background:
    radial-gradient(70% 90% at 50% 0%, var(--rose-glow) 0%, transparent 62%),
    linear-gradient(180deg, var(--blush) 0%, var(--paper) 100%);
  box-shadow: 0 30px 70px -46px rgba(207, 53, 104, 0.5);
}
.feed-cta-ig {
  width: 66px; height: 66px; border-radius: 19px; display: inline-grid; place-items: center;
  background: linear-gradient(135deg, var(--rose), var(--bronze)); color: #fff;
  box-shadow: 0 16px 34px -12px rgba(207, 53, 104, 0.55);
}
.feed-cta-ig svg { width: 32px; height: 32px; }
.feed-cta-p { max-width: 44ch; margin: 22px auto 26px; color: var(--ink-soft); font-size: 17px; line-height: 1.6; }

/* ============================================================
   BRILLO / PARTÍCULAS rosadas en secciones (.has-sparks)
   ============================================================ */
.has-sparks { position: relative; isolation: isolate; }
.has-sparks > *:not(.sparks) { position: relative; z-index: 1; }
.sparks { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.sparks::before, .sparks::after {
  content: ""; position: absolute; left: -8%; right: -8%; top: -8%; bottom: -8%;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255,111,150,0.55), transparent 60%),
    radial-gradient(1.5px 1.5px at 24% 66%, rgba(255,150,180,0.5), transparent 60%),
    radial-gradient(2.5px 2.5px at 40% 34%, rgba(255,111,150,0.5), transparent 60%),
    radial-gradient(1.5px 1.5px at 58% 78%, rgba(255,150,180,0.5), transparent 60%),
    radial-gradient(2px 2px at 72% 24%, rgba(255,111,150,0.5), transparent 60%),
    radial-gradient(1.5px 1.5px at 86% 60%, rgba(255,150,180,0.45), transparent 60%),
    radial-gradient(2px 2px at 33% 90%, rgba(255,111,150,0.4), transparent 60%),
    radial-gradient(1.5px 1.5px at 5% 82%, rgba(255,150,180,0.4), transparent 60%),
    radial-gradient(2px 2px at 94% 30%, rgba(255,111,150,0.45), transparent 60%),
    radial-gradient(1.5px 1.5px at 50% 52%, rgba(255,150,180,0.4), transparent 60%);
  animation: sparkDrift 24s ease-in-out infinite alternate;
}
.sparks::after {
  background-image:
    radial-gradient(1.5px 1.5px at 16% 44%, rgba(255,120,160,0.42), transparent 60%),
    radial-gradient(2px 2px at 52% 12%, rgba(255,111,150,0.42), transparent 60%),
    radial-gradient(1.5px 1.5px at 70% 50%, rgba(255,150,180,0.4), transparent 60%),
    radial-gradient(2px 2px at 90% 82%, rgba(255,111,150,0.36), transparent 60%),
    radial-gradient(1.5px 1.5px at 38% 64%, rgba(255,150,180,0.38), transparent 60%),
    radial-gradient(2px 2px at 8% 30%, rgba(255,111,150,0.4), transparent 60%);
  animation-duration: 36s; animation-direction: alternate-reverse; opacity: 0.78;
}
@keyframes sparkDrift { from { transform: translate3d(0, 6px, 0); } to { transform: translate3d(0, -22px, 0); } }
@media (prefers-reduced-motion: reduce) { .sparks::before, .sparks::after { animation: none; } }

/* ---- Partículas: intensidad+ (más densidad, más brillo, glow suave) ---- */
.sparks {
  background:
    radial-gradient(55% 45% at 82% 14%, var(--rose-glow) 0%, transparent 62%),
    radial-gradient(50% 42% at 12% 88%, var(--rose-glow) 0%, transparent 62%);
}
.sparks::before {
  background-image:
    radial-gradient(2.5px 2.5px at 8% 16%,  rgba(255,111,150,0.85), transparent 60%),
    radial-gradient(2px 2px     at 18% 52%, rgba(255,150,180,0.72), transparent 60%),
    radial-gradient(3px 3px     at 30% 30%, rgba(255,111,150,0.8),  transparent 60%),
    radial-gradient(2px 2px     at 42% 72%, rgba(255,150,180,0.72), transparent 60%),
    radial-gradient(2.5px 2.5px at 54% 20%, rgba(255,111,150,0.8),  transparent 60%),
    radial-gradient(2px 2px     at 64% 60%, rgba(255,150,180,0.7),  transparent 60%),
    radial-gradient(3px 3px     at 74% 38%, rgba(255,111,150,0.8),  transparent 60%),
    radial-gradient(2px 2px     at 84% 76%, rgba(255,150,180,0.68), transparent 60%),
    radial-gradient(2.5px 2.5px at 92% 26%, rgba(255,111,150,0.75), transparent 60%),
    radial-gradient(2px 2px     at 26% 90%, rgba(255,150,180,0.62), transparent 60%),
    radial-gradient(2px 2px     at 48% 46%, rgba(255,111,150,0.62), transparent 60%),
    radial-gradient(2px 2px     at 4% 68%,  rgba(255,150,180,0.6),  transparent 60%);
}
.sparks::after {
  opacity: 0.92;
  background-image:
    radial-gradient(2px 2px     at 14% 34%, rgba(255,120,160,0.72), transparent 60%),
    radial-gradient(2.5px 2.5px at 36% 10%, rgba(255,111,150,0.72), transparent 60%),
    radial-gradient(2px 2px     at 58% 84%, rgba(255,150,180,0.66), transparent 60%),
    radial-gradient(2.5px 2.5px at 78% 16%, rgba(255,111,150,0.72), transparent 60%),
    radial-gradient(2px 2px     at 88% 54%, rgba(255,150,180,0.62), transparent 60%),
    radial-gradient(2px 2px     at 22% 70%, rgba(255,111,150,0.62), transparent 60%),
    radial-gradient(2px 2px     at 68% 42%, rgba(255,150,180,0.6),  transparent 60%),
    radial-gradient(2px 2px     at 46% 62%, rgba(255,111,150,0.58), transparent 60%);
}
