/* ============================================================
   Natalia Castro — Soft Luxury Glass
   styles.css  ·  v20260521
   ============================================================ */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --ivory:  #FAFAFA;
  --silver: #B8BCC8;
  --rose:   #9A5060;
  --rose-d: #7d3d4f;
  --plum:   #2A1420;

  --warm-1: #C4956A;
  --warm-2: #8B5E3C;
  --warm-3: #E8D5B7;

  --glass-bg:     rgba(250, 248, 244, 0.82);
  --glass-border: 0.5px solid rgba(255, 255, 255, 0.85);
  --glass-blur:   blur(14px);
  --glass-shadow: 0 30px 60px -30px rgba(42, 20, 32, 0.18),
                  0 1px 0 rgba(255, 255, 255, 0.9) inset;

  --f-display:   "Josefin Sans", sans-serif;
  --f-editorial: "Lora", Georgia, serif;

  --tk-tight: 0.04em;
  --tk-wide:  0.22em;
  --tk-xwide: 0.36em;

  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  background: var(--ivory);
  color: var(--plum);
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Language toggle ────────────────────────────────────────── */
.lang-toggle {
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: rgba(250,248,244,0.7);
  font-family: var(--f-display); font-weight: 300;
  font-size: 11px; letter-spacing: 0.22em;
  padding: 5px 12px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
}
.lang-toggle:hover {
  background: rgba(255,255,255,0.1);
  color: rgba(250,248,244,1);
  border-color: rgba(255,255,255,0.4);
}

/* ── Back to top ────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 190;
  width: 46px; height: 46px;
  border-radius: 999px;
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(28, 25, 26, 0.42);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
          backdrop-filter: blur(40px) saturate(1.8);
  box-shadow: 0 8px 32px -10px rgba(42, 20, 32, 0.38),
              0 1px 0 rgba(255,255,255,0.08) inset;
  color: rgba(250, 248, 244, 0.72);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s var(--ease-out),
              transform .35s var(--ease-out),
              background .2s,
              color .2s;
  pointer-events: none;
}
.back-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover {
  background: rgba(28, 25, 26, 0.68);
  color: rgba(250, 248, 244, 1);
}
.back-top-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%; transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--f-display); font-weight: 300;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250, 248, 244, 0.72);
  background: rgba(28, 25, 26, 0.52);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255,255,255,0.12);
  padding: 6px 14px; border-radius: 999px;
  opacity: 0;
  transform: translateY(-50%) translateX(6px);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
  pointer-events: none;
}
.back-top:hover .back-top-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ── Custom cursor ──────────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px; margin: -3px;
  background: var(--rose); border-radius: 50%;
}
.cursor-ring {
  width: 30px; height: 30px; margin: -15px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out),
              margin .35s var(--ease-out), border-color .25s;
  opacity: 0.55;
}
.cursor.is-interactive .cursor-ring {
  width: 50px; height: 50px; margin: -25px;
  border-color: var(--rose); opacity: 0.9;
}
.has-cursor, .has-cursor a, .has-cursor button,
.has-cursor [role="button"] { cursor: none; }

/* ── Scroll progress ────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 1.5px; z-index: 200;
  background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%;
  background: var(--rose);
  transform-origin: 0 0; transform: scaleX(0);
  transition: transform .08s linear;
}

/* ── Tipografía ─────────────────────────────────────────────── */
.nc-eyebrow {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: var(--tk-xwide);
  text-transform: uppercase;
  color: var(--silver);
}
.nc-eyebrow-plum { color: var(--plum); opacity: 0.6; }
.nc-eyebrow .dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--rose);
  border-radius: 50%;
  margin: 0 10px 2px;
  vertical-align: middle;
}
.nc-h1, .nc-h2, .nc-h3 {
  font-family: var(--f-display);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--plum); margin: 0;
}
.nc-h1 { font-size: clamp(40px, 6vw, 62px); letter-spacing: 0.04em; line-height: 1.05; }
.nc-h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: 0.10em; line-height: 1.1; }
.nc-h3 { font-size: 18px; letter-spacing: 0.18em; line-height: 1.2; }
.nc-italic {
  font-family: var(--f-editorial);
  font-style: italic; font-weight: 400;
  color: var(--plum); letter-spacing: 0; text-transform: none;
}
.nc-body {
  font-family: var(--f-display);
  font-weight: 300; font-size: 14px;
  letter-spacing: 0.02em; color: var(--plum);
  opacity: 0.78; line-height: 1.7;
}

/* ── Botones ────────────────────────────────────────────────── */
.nc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 14px;
  font-family: var(--f-display); font-weight: 300;
  font-size: 11px; letter-spacing: var(--tk-xwide);
  text-transform: uppercase;
  border-radius: 10px; cursor: pointer;
  border: 1px solid transparent;
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow .3s ease, background .3s ease,
              color .3s ease, border-color .3s ease;
  white-space: nowrap; user-select: none;
}
.nc-btn-sm { padding: 12px 20px; font-size: 10px; }
.nc-btn-md { padding: 16px 28px; font-size: 11px; }
.nc-btn-lg { padding: 20px 38px; font-size: 12px; }

/* Rose — shine sweep en hover */
.nc-btn-rose {
  background: var(--rose); color: var(--ivory); border-color: var(--rose);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.10) inset,
              0 8px 24px -10px rgba(154,80,96,0.60);
}
.nc-btn-rose::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.nc-btn-rose:hover {
  transform: translateY(-2px);
  background: #ae607280;
  background: color-mix(in srgb, var(--rose) 85%, white);
  border-color: color-mix(in srgb, var(--rose) 85%, white);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.16) inset,
              0 18px 44px -10px rgba(154,80,96,0.80),
              0 0 28px -6px rgba(154,80,96,0.45);
}
.nc-btn-rose:hover::before { transform: translateX(130%); }

/* Ghost — se rellena con rose en hover */
.nc-btn-ghost {
  background: transparent; color: var(--rose);
  border: 1.5px solid var(--rose);
}
.nc-btn-ghost:hover {
  background: var(--rose);
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(154,80,96,0.65);
}

.nc-btn .arrow {
  display: inline-block; width: 18px; height: 1px;
  background: currentColor; position: relative;
  transition: transform .3s ease;
}
.nc-btn:hover .arrow { transform: translateX(4px); }
.nc-btn .arrow::after {
  content: ""; position: absolute;
  right: 0; top: -3px; width: 7px; height: 7px;
  border-right: 1px solid currentColor; border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ── Glass ──────────────────────────────────────────────────── */
.nc-glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
}
@supports not (backdrop-filter: blur(14px)) {
  .nc-glass { background: rgba(250,248,244,0.96); }
}

/* ── Helpers ────────────────────────────────────────────────── */
.nc-section { position: relative; background: var(--ivory); }
.nc-rule { height: 0.5px; background: var(--silver); opacity: 0.55; }
.nc-vrule { width: 0.5px; background: var(--silver); opacity: 0.6; align-self: stretch; }
.nc-section-pad { padding: 110px 72px 120px; }

/* ── Foto placeholder ───────────────────────────────────────── */
.nc-photo {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 14px, rgba(255,255,255,0) 14px 28px),
    linear-gradient(165deg, var(--warm-3) 0%, var(--warm-1) 45%, var(--warm-2) 100%);
  isolation: isolate;
}
.nc-photo::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 70% at 20% 10%, rgba(255,255,255,0.32), transparent 55%);
  pointer-events: none;
}
.nc-photo .nc-photo-tag {
  position: absolute; bottom: 14px; left: 14px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px; letter-spacing: 0.05em;
  color: rgba(42, 20, 32, 0.62);
  background: rgba(250,250,250,0.78); backdrop-filter: blur(6px);
  padding: 6px 10px; border-radius: 999px;
  border: 0.5px solid rgba(255,255,255,0.9);
  text-transform: lowercase; z-index: 2;
}

/* ── SectionLabel ───────────────────────────────────────────── */
.section-label {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.section-label__index {
  font-family: var(--f-display); font-weight: 300;
  font-size: 10px; letter-spacing: 0.36em; color: var(--plum);
}
.section-label__bar {
  width: 36px; height: 3px; border-radius: 1px; background: var(--rose);
}
.section-label__text {
  font-family: var(--f-display); font-weight: 500;
  font-size: 11px; letter-spacing: 0.36em;
  text-transform: uppercase; color: var(--plum);
}

/* ── Reveal on scroll ───────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-stagger] > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal-stagger].is-revealed > *:nth-child(1) { opacity:1;transform:none;transition-delay:.0s; }
[data-reveal-stagger].is-revealed > *:nth-child(2) { opacity:1;transform:none;transition-delay:.12s; }
[data-reveal-stagger].is-revealed > *:nth-child(3) { opacity:1;transform:none;transition-delay:.24s; }
[data-reveal-stagger].is-revealed > *:nth-child(4) { opacity:1;transform:none;transition-delay:.36s; }

/* ── Hero entrance animation (always visible, no IO needed) ─── */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero-animate {
  animation: heroIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hero-animate--delay {
  animation-delay: 0.15s;
}

/* ── BrandMark ──────────────────────────────────────────────── */
.brand-mark { display: inline-block; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   HEADER — Floating Pill Glass
══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 144px);
  max-width: 1200px;
  z-index: 200;

  background: rgba(28, 25, 26, 0.40);
  background: oklab(0.218625 0.00107917 -0.00370586 / 0.40);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  backdrop-filter: blur(40px) saturate(1.8);
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 8px 40px -16px rgba(42, 20, 32, 0.40),
              0 1px 0 rgba(255,255,255,0.08) inset;

  padding: 7px 8px 7px 22px;
  display: flex;
  align-items: center;
  gap: 0;
  transition: background .4s, box-shadow .4s, top .4s, padding .4s;
}
.site-header.is-scrolled {
  top: 8px;
  padding: 5px 8px 5px 20px;
  background: rgba(28, 25, 26, 0.62);
  background: oklab(0.218625 0.00107917 -0.00370586 / 0.62);
  box-shadow: 0 12px 48px -16px rgba(42, 20, 32, 0.55),
              0 1px 0 rgba(255,255,255,0.08) inset;
}

.header-brand { flex: 0 0 auto; margin-right: auto; display: flex; align-items: center; gap: 14px; }
.header-nav   { flex: 0 0 auto; position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 32px; }
.header-right { flex: 0 0 auto; margin-left: auto; display: flex; justify-content: flex-end; align-items: center; gap: 18px; }

.header-brand-name {
  font-family: var(--f-display); font-weight: 300;
  text-transform: uppercase; letter-spacing: 0.32em;
  font-size: 12px; color: var(--ivory);
}
.header-brand-loc {
  font-family: var(--f-editorial); font-style: italic;
  font-size: 12px; color: rgba(250,250,250,0.44); margin-left: 6px;
}
.header-nav a {
  font-family: var(--f-display); text-transform: uppercase;
  letter-spacing: 0.26em; font-size: 11px;
  color: rgba(250, 250, 250, 0.72);
  transition: color .2s;
  position: relative; white-space: nowrap;
}
.header-nav a::after {
  content: "";
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--rose);
  transform: scaleX(0); transform-origin: 0 0;
  transition: transform .3s var(--ease-soft);
}
.header-nav a:hover { color: var(--ivory); }
.header-nav a:hover::after { transform: scaleX(1); }

.header-phone {
  font-family: var(--f-display); text-transform: uppercase;
  letter-spacing: 0.26em; font-size: 10px;
  color: rgba(250,250,250,0.50);
}
.site-header .nc-btn { border-radius: 999px; }

/* Mobile nav toggle */
.header-menu-toggle {
  display: none;
  background: none; border: none; padding: 6px;
  cursor: pointer; flex-direction: column; gap: 5px;
}
.header-menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(250,250,250,0.80);
  transition: transform .35s var(--ease-soft), opacity .25s, width .25s;
  transform-origin: center;
}
/* Hamburguesa → X */
.header-menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header-menu-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
.header-menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(28, 14, 22, 0.96);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  backdrop-filter: blur(32px) saturate(1.4);
  z-index: 250; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0; opacity: 0; pointer-events: none;
  transition: opacity .38s var(--ease-soft);
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }

/* Botón X */
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.15);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.13); }
.mobile-nav-close span {
  display: block; position: absolute;
  width: 16px; height: 1.5px;
  background: rgba(250,248,244,0.75);
}
.mobile-nav-close span:nth-child(1) { transform: rotate(45deg); }
.mobile-nav-close span:nth-child(2) { transform: rotate(-45deg); }

/* Links */
.mobile-nav a {
  font-family: var(--f-display); text-transform: uppercase;
  letter-spacing: 0.34em; font-size: 18px;
  color: rgba(250,250,250,0.65);
  transition: color .2s;
  padding: 18px 0;
  opacity: 0; transform: translateY(16px);
}
.mobile-nav.is-open a { opacity: 1; transform: translateY(0); }
.mobile-nav a:nth-child(2) { transition: color .2s, opacity .42s .06s var(--ease-out), transform .42s .06s var(--ease-out); }
.mobile-nav a:nth-child(3) { transition: color .2s, opacity .42s .12s var(--ease-out), transform .42s .12s var(--ease-out); }
.mobile-nav a:nth-child(4) { transition: color .2s, opacity .42s .18s var(--ease-out), transform .42s .18s var(--ease-out); }
.mobile-nav a:nth-child(5) { transition: color .2s, opacity .42s .24s var(--ease-out), transform .42s .24s var(--ease-out); }
.mobile-nav a:nth-child(6) { transition: color .2s, opacity .42s .30s var(--ease-out), transform .42s .30s var(--ease-out); }
.mobile-nav a:active, .mobile-nav a:hover { color: var(--rose); }

/* CTA Book dentro del menú */
.mobile-nav-book {
  margin-top: 32px;
  background: var(--rose) !important;
  color: var(--ivory) !important;
  padding: 14px 44px !important;
  border-radius: 999px;
  font-size: 13px !important; letter-spacing: 0.24em !important;
  opacity: 0 !important; transform: translateY(16px) !important;
  transition: background .2s, opacity .42s .36s var(--ease-out) !important, transform .42s .36s var(--ease-out) !important;
}
.mobile-nav.is-open .mobile-nav-book {
  opacity: 1 !important; transform: translateY(0) !important;
}
.mobile-nav-book:hover { background: var(--rose-d) !important; }

/* ══════════════════════════════════════════════════════════════
   HERO — Full Bleed
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.hero-frame {
  position: absolute;
  inset: 10px 14px 14px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 48px -12px rgba(42, 20, 32, 0.30);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 78% 12%;
  transform: scale(1.18);
  transform-origin: center center;
  will-change: transform;
  animation: none !important;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 20, 32, 0.08) 0%,
    rgba(42, 20, 32, 0.06) 45%,
    rgba(42, 20, 32, 0.65) 78%,
    rgba(42, 20, 32, 0.88) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-frame {
  animation: heroCircleIn 2.2s var(--ease-out) both;
}
@keyframes heroCircleIn {
  from { clip-path: circle(0% at 50% 105%); }
  to   { clip-path: circle(150% at 50% 105%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-frame { animation: none; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 104px 72px 48px;
  min-height: 100svh;
}
.hero-title-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-name {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(38px, 5.2vw, 74px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 0.92;
  margin: 0;
}
.hero-tagline {
  font-size: clamp(17px, 2vw, 26px);
  margin: 0;
  letter-spacing: 0.01em;
  background: linear-gradient(
    90deg,
    rgba(250, 250, 250, 0.46) 0%,
    rgba(250, 250, 250, 0.46) 48.5%,
    rgba(255, 255, 255, 0.82) 49.5%,
    rgba(255, 255, 255, 1.00) 50%,
    rgba(255, 255, 255, 0.82) 50.5%,
    rgba(250, 250, 250, 0.46) 51.5%,
    rgba(250, 250, 250, 0.46) 100%
  );
  background-size: 300% 100%;
  background-position: 80% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  will-change: background-position;
}

/* Ghost ivory — for use on dark/photo backgrounds */
.nc-btn-ghost-ivory {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(250, 250, 250, 0.55);
}
.nc-btn-ghost-ivory:hover {
  background: rgba(250, 250, 250, 0.14);
  border-color: rgba(250, 250, 250, 0.90);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -10px rgba(0,0,0,0.35);
}

/* ══════════════════════════════════════════════════════════════
   SOBRE — Editorial Mixed Scale
══════════════════════════════════════════════════════════════ */
/* ── Sobre — Editorial Magazine ─────────────────────────── */
.sobre-section { padding: 100px 0 140px; overflow: hidden; position: relative; }
.sobre-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0 72px;
  align-items: start;
  position: relative;
}

/* Watermark — marquee horizontal */
.sobre-wm-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.sobre-wm-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.sobre-wm {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(72px, 13vw, 190px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(42, 20, 32, 0.05);
  user-select: none;
  white-space: nowrap;
  padding: 0 64px;
  line-height: 1;
}

/* Columna foto */
.sobre-photo-col {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.sobre-photo-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #C8976D 0%, #A26B3F 50%, #7A4520 100%);
  border-radius: 2px;
  overflow: hidden;
}
.sobre-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.sobre-card {
  position: relative;
  margin-top: -56px;
  margin-left: -36px;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 0.5px solid rgba(255, 255, 255, 0.85);
  border-left: 2px solid var(--rose);
  padding: 28px 30px;
  max-width: 280px;
  z-index: 3;
  box-shadow: 0 8px 40px -12px rgba(42, 20, 32, 0.14);
}
.sobre-card-text {
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--plum);
  margin: 0 0 14px;
}
.sobre-card-cite {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-style: normal;
}

/* Columna texto */
.sobre-text-col {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding-top: 8px;
}
.sobre-h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(30px, 3.8vw, 52px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--plum);
  line-height: 1.08;
  margin: 0 0 22px;
}
.sobre-h2-em {
  display: block;
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 0.8em;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-top: 4px;
}
.sobre-intro {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 15px;
  color: rgba(42, 20, 32, 0.62);
  line-height: 1.85;
  max-width: 460px;
  margin: 0;
}
.sobre-history-text {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 15px;
  color: rgba(42, 20, 32, 0.62);
  line-height: 1.85;
  max-width: 460px;
  margin: 0 0 40px;
}
.sobre-cta { margin-top: 36px; }
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid #D4909A;
  border-bottom: 0.5px solid #D4909A;
}
.sobre-stat {
  padding: 20px 18px;
  border-left: 0.5px solid #D4909A;
}
.sobre-stat:first-child { border-left: none; }
.sobre-stat-value {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 34px;
  letter-spacing: 0.04em;
  color: var(--rose);
  margin-bottom: 6px;
}
.sobre-stat-label {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--plum);
  opacity: 0.65;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   PULL QUOTE
══════════════════════════════════════════════════════════════ */
.pull-quote-section {
  background: var(--ivory);
  padding: 96px 72px 104px;
  position: relative;
}
.pull-quote-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.pull-quote-deco {
  width: 1px; height: 56px;
  background: var(--rose);
}
.pull-quote-text {
  font-family: var(--f-editorial);
  font-style: italic; font-weight: 400;
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: 1.48;
  color: var(--plum);
  letter-spacing: 0;
}
.pull-quote-by {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--silver);
  font-style: normal;
}

/* ══════════════════════════════════════════════════════════════
   SERVICIOS — Scroll Stack
══════════════════════════════════════════════════════════════ */
/* Section height = (N services + 1) × 100vh → cada servicio tiene 100vh de scroll */
.svc-scroll-section {
  height: 700vh; /* 10 services, ~60vh scroll each */
  position: relative;
}

/* El contenedor sticky — baja para no quedar bajo el header flotante */
.svc-sticky {
  position: sticky;
  top: 80px;
  height: calc(100vh - 96px);
  margin: 0 14px;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  background: #2A1420;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.07);
}

/* Panel izquierdo */
.svc-left {
  background: transparent;
  display: flex;
  flex-direction: column;
  padding: 52px 56px 0;
  position: relative;
  overflow: hidden;
}
.svc-label { position: relative; z-index: 1; flex-shrink: 0; }

/* Info de cada servicio */
.svc-info {
  position: absolute;
  bottom: 60px;
  left: 56px;
  right: 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  will-change: opacity, transform;
}
.svc-info-num {
  font-family: var(--f-display); font-weight: 300;
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--rose); text-transform: uppercase;
}
.svc-info-name {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ivory); line-height: 0.95; margin: 0;
}
.svc-info-desc {
  font-family: var(--f-display); font-weight: 300;
  font-size: 14px; color: rgba(250,250,250,0.58);
  line-height: 1.85; max-width: 340px; margin: 0;
}
.svc-info-price {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(28px, 3vw, 40px); letter-spacing: 0.04em;
  color: var(--rose); line-height: 1;
}
.svc-info-price em {
  font-style: normal;
  font-size: 0.7em;
  color: rgba(154,80,96,0.6);
}
.svc-tiers {
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 0;
  border-top: 0.5px solid rgba(255,255,255,0.15);
}
.svc-tier {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.15);
  font-size: 13px; letter-spacing: 0.04em;
  color: rgba(250,248,244,0.7);
}
.svc-tier em {
  font-style: normal;
  font-family: var(--f-display); font-weight: 300;
  font-size: 12px; letter-spacing: 0.12em;
  color: #D4909A;
  flex-shrink: 0; margin-left: 12px;
}
.svc-info[data-svc-info="10"] .svc-info-name {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
}
.svc-info[data-svc-info="11"] {
  gap: 10px;
}
.svc-info[data-svc-info="11"] .svc-info-name {
  font-size: clamp(30px, 4vw, 52px);
}
.svc-info[data-svc-info="11"] .svc-info-desc {
  line-height: 1.55;
}
.svc-info[data-svc-info="11"] .svc-tiers {
  margin-top: 8px;
}
.svc-info[data-svc-info="11"] .svc-tier {
  padding: 6px 0;
  font-size: 12px;
}
.svc-info[data-svc-info="11"] .nc-btn {
  margin-top: 10px;
}

.svc-info-meta {
  font-family: var(--f-display); font-weight: 300;
  font-size: 10px; letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(154, 80, 96, 0.15);
  border: 0.5px solid rgba(154, 80, 96, 0.35);
  border-radius: 6px;
  padding: 5px 12px;
  align-self: flex-start;
}

/* Panel derecho — imágenes apiladas */
.svc-right {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 16px 16px 16px 10px;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.svc-img-card {
  position: absolute;
  inset: 20px 22px 20px 16px;
  border-radius: 14px;
  overflow: hidden;
  will-change: transform;
}
.svc-img-card[data-svc-card="0"] { z-index:  1; }
.svc-img-card[data-svc-card="1"] { z-index:  2; transform: translateY(100%); }
.svc-img-card[data-svc-card="2"] { z-index:  3; transform: translateY(100%); }
.svc-img-card[data-svc-card="3"] { z-index:  4; transform: translateY(100%); }
.svc-img-card[data-svc-card="4"] { z-index:  5; transform: translateY(100%); }
.svc-img-card[data-svc-card="5"] { z-index:  6; transform: translateY(100%); }
.svc-img-card[data-svc-card="6"] { z-index:  7; transform: translateY(100%); }
.svc-img-card[data-svc-card="7"] { z-index:  8; transform: translateY(100%); }
.svc-img-card[data-svc-card="8"] { z-index:  9; transform: translateY(100%); }
.svc-img-card[data-svc-card="9"]  { z-index: 10; transform: translateY(100%); }
.svc-img-card[data-svc-card="10"] { z-index: 11; transform: translateY(100%); }
.svc-img-card[data-svc-card="11"] { z-index: 12; transform: translateY(100%); }

.svc-img-bg { width: 100%; height: 100%; }

.svc-img-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(42,20,32,0.28);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255,255,255,0.2);
  border-radius: 999px; padding: 7px 18px;
  font-family: var(--f-display); font-weight: 300;
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(250,250,250,0.85);
}

/* Mobile services cards — hidden on desktop */
.svc-mobile { display: none; }

/* ══════════════════════════════════════════════════════════════
   RESULTADOS
══════════════════════════════════════════════════════════════ */
.resultados-header {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; margin-bottom: 56px; gap: 40px;
}
.resultados-h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(30px, 3.8vw, 52px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--plum);
  line-height: 1.08;
  margin: 20px 0 0;
}
.resultados-h2-em {
  display: block;
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 0.8em;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--rose);
  margin-top: 6px;
}
.resultados-sub {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 15px;
  color: rgba(42, 20, 32, 0.62);
  line-height: 1.85;
  max-width: 380px;
  text-align: right;
}
/* ── Reveal grid ── */
/* ── Resultados gallery — marquee rows ── */
.rb-row {
  overflow: hidden;
  margin-bottom: 14px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.rb-row:last-of-type { margin-bottom: 0; }

.rb-track {
  display: flex; gap: 14px;
  width: max-content;
  will-change: transform;
}
.rb-track--fwd { animation: tTickLeft  28s linear infinite; }
.rb-track--rev { animation: tTickRight 36s linear infinite; }

@media (prefers-reduced-motion: reduce) {
  .rb-track { animation: none !important; }
}

/* Card shell */
.rb-card {
  position: relative;
  width: 280px;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}

/* Layers */
.rb-layer {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 14px, transparent 14px 28px),
    linear-gradient(165deg, var(--warm-3) 0%, var(--warm-1) 45%, var(--warm-2) 100%);
  transition: transform 0.72s var(--ease-soft);
  transform: scale(1);
  will-change: transform;
}
.rb-layer::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 70% at 20% 10%, rgba(255,255,255,0.28), transparent 55%);
  pointer-events: none;
}
.rb-after { z-index: 2; }
.rb-before {
  z-index: 3;
  clip-path: circle(0% at 50% 105%);
  transition: clip-path 0.72s var(--ease-soft), transform 0.72s var(--ease-soft);
}

/* Reveal: circular wipe from bottom + subtle zoom */
.rb-card:hover .rb-before,
.rb-card.is-before .rb-before {
  clip-path: circle(150% at 50% 105%);
}
.rb-card:hover .rb-layer,
.rb-card.is-before .rb-layer {
  transform: scale(1.04);
}

/* Bottom overlay + label */
.rb-card::after {
  content: ""; position: absolute; inset: auto 0 0;
  height: 80px;
  background: linear-gradient(to top, rgba(42,20,32,0.5), transparent);
  z-index: 4; pointer-events: none;
}
.rb-card-foot {
  position: absolute; bottom: 12px; left: 14px; right: 14px;
  z-index: 5; pointer-events: none;
  display: flex; align-items: center; justify-content: space-between;
}
.rb-svc-name {
  font-family: var(--f-display); font-weight: 300;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,248,244,0.65);
}

/* Badges */
.rb-badge {
  position: relative;
  font-family: var(--f-display); font-weight: 300;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
  border: 0.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  transition: opacity 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
  position: absolute; right: 0; bottom: 0;
}
.rb-badge--after {
  background: rgba(154,80,96,0.5); color: rgba(250,248,244,0.95);
  opacity: 1; transform: translateY(0);
}
.rb-badge--before {
  background: rgba(42,20,32,0.52); color: rgba(250,248,244,0.85);
  opacity: 0; transform: translateY(5px);
}
.rb-card:hover .rb-badge--after,
.rb-card.is-before .rb-badge--after { opacity: 0; transform: translateY(-4px); }
.rb-card:hover .rb-badge--before,
.rb-card.is-before .rb-badge--before { opacity: 1; transform: translateY(0); }

.resultados-cta { display: flex; justify-content: center; margin-top: 64px; }

/* ══════════════════════════════════════════════════════════════
   FORMACIÓN
══════════════════════════════════════════════════════════════ */
/* ── Formación header ── */
.formacion-header { text-align: center; margin-bottom: 64px; }
.formacion-pill {
  display: inline-flex; align-items: center;
  padding: 8px 24px; border-radius: 999px;
  border: 0.5px solid var(--rose); color: var(--rose);
  font-family: var(--f-display); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 32px;
}
.formacion-title {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 22px;
}
.formacion-title-serif {
  font-family: var(--f-editorial); font-style: italic;
  font-size: clamp(20px, 2.4vw, 34px);
  color: rgba(42,20,32,0.44); line-height: 1.3;
}
.formacion-title-main {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(48px, 7vw, 90px); letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--plum); line-height: 0.9;
}
.formacion-intro {
  font-family: var(--f-display); font-weight: 300;
  font-size: 15px; color: rgba(42,20,32,0.56);
  line-height: 1.85; max-width: 520px; margin: 0 auto;
}

/* ── Formación bento ── */
.formacion-bento {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 18px; margin-bottom: 52px; align-items: stretch;
}
.formacion-card {
  background: #fff;
  border: 0.5px solid rgba(184,188,200,0.5);
  border-radius: 20px; overflow: hidden;
  transition: box-shadow 0.35s var(--ease-out);
}
.formacion-card:hover {
  box-shadow: 0 20px 48px -16px rgba(42,20,32,0.12);
}
.formacion-card-main .formacion-card-img {
  width: 100%; height: 320px; border-radius: 0;
}
.formacion-card-main .formacion-card-body { padding: 32px 36px 36px; }
.formacion-card-col { display: flex; flex-direction: column; gap: 18px; }
.formacion-card-side {
  display: grid; grid-template-columns: 185px 1fr; flex: 1;
}
.formacion-card-side-img {
  width: 100%; height: 100%; min-height: 178px; border-radius: 0;
}
.formacion-card-side .formacion-card-body {
  padding: 26px 28px 32px;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.formacion-card-side .formacion-card-desc { margin-bottom: 12px; }
.formacion-card-meta {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.formacion-card-date {
  font-family: var(--f-display); font-weight: 300;
  font-size: 11px; letter-spacing: 0.24em; color: var(--rose); text-transform: uppercase;
}
.formacion-card-sep { color: rgba(184,188,200,0.9); font-size: 11px; }
.formacion-card-loc {
  font-family: var(--f-display); font-weight: 300;
  font-size: 11px; letter-spacing: 0.12em;
  color: rgba(42,20,32,0.5); text-transform: uppercase;
}
.formacion-card-spots {
  margin-left: auto;
  font-family: var(--f-display); font-weight: 300;
  font-size: 11px; letter-spacing: 0.18em; color: var(--silver); text-transform: uppercase;
}
.formacion-card-name {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(14px, 1.3vw, 19px); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--plum); line-height: 1.25; margin-bottom: 14px;
}
.formacion-card-desc {
  font-family: var(--f-display); font-weight: 300;
  font-size: 14px; color: rgba(42,20,32,0.55);
  line-height: 1.8; margin-bottom: 28px;
}
.formacion-card-link {
  font-family: var(--f-display); font-weight: 300;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose); display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; transition: opacity 0.2s;
}
.formacion-card-link:hover { opacity: 0.65; }
.formacion-cta { text-align: center; }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════════════════════════════ */
.testi-section {
  background: var(--plum);
  padding: 100px 0 108px;
  overflow: hidden;
}
.testi-cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* Header */
.testi-header {
  padding: 0 72px;
  margin-bottom: 72px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 18px;
}
.testi-section .section-label__index { color: rgba(184,188,200,0.4); }
.testi-section .section-label__bar   { background: rgba(154,80,96,0.5); }
.testi-section .section-label__text  { color: rgba(184,188,200,0.5); }

.testi-score { display: flex; align-items: center; gap: 22px; }
.testi-score-num {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(80px, 11vw, 120px); letter-spacing: -0.02em;
  color: var(--ivory); line-height: 1;
}
.testi-score-aside { display: flex; flex-direction: column; gap: 7px; padding-top: 10px; }
.testi-score-label {
  font-family: var(--f-display); font-weight: 300;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(184,188,200,0.55);
}
.testi-stars { font-size: 15px; color: var(--rose); letter-spacing: 3px; }

.testi-headline {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(18px, 2.4vw, 32px); letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(250,248,244,0.38); line-height: 1;
}
.testi-headline em {
  font-family: var(--f-editorial); font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: 0.02em; color: #D4909A; font-size: 1.1em;
}

/* Rows */
.testi-row {
  overflow: hidden;
  margin-bottom: 16px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.testi-row:last-child { margin-bottom: 0; }

.testi-track {
  display: flex; gap: 16px;
  width: max-content;
  will-change: transform;
}
.testi-track--fwd { animation: tTickLeft  38s linear infinite; }
.testi-track--rev { animation: tTickRight 46s linear infinite; }

@keyframes tTickLeft  { to   { transform: translateX(-50%); } }
@keyframes tTickRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

@media (prefers-reduced-motion: reduce) {
  .testi-track { animation: none !important; }
}

/* Cards */
.testi-card {
  width: 390px; flex-shrink: 0;
  padding: 30px 34px 26px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.09);
  display: flex; flex-direction: column; justify-content: space-between; gap: 20px;
  cursor: default;
  transition: background 0.35s;
}
.testi-card:hover { background: rgba(255,255,255,0.09); }
.testi-card--lit {
  background: rgba(154,80,96,0.16);
  border-color: rgba(154,80,96,0.3);
}
.testi-card--lit:hover { background: rgba(154,80,96,0.24); }

.testi-q {
  font-family: var(--f-editorial); font-style: italic;
  font-size: 17px; line-height: 1.68;
  color: rgba(250,248,244,0.8);
  flex: 1;
}
.testi-card footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
}
.testi-name {
  font-family: var(--f-display); font-weight: 300;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250,248,244,0.48);
}
.testi-svc {
  font-family: var(--f-display); font-weight: 300;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose); opacity: 0.8;
}

/* ══════════════════════════════════════════════════════════════
   CTA CIERRE
══════════════════════════════════════════════════════════════ */
.cta-cierre { padding: 60px 0 90px; }
.cta-cierre-box {
  position: relative;
  margin: 0 14px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.cta-cierre-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border-radius: 0;
  background: url("assets/img/cta-estudio.jpg") center / cover no-repeat;
  background-attachment: fixed;
}
.cta-cierre-photo::after { display: none; }
.cta-cierre-photo .nc-photo-tag { display: none; }
.cta-glass {
  position: relative;
  z-index: 1;
  width: 44%;
  margin: 64px 7% 64px auto;
  padding: 52px 48px;
  border-radius: 16px;
  display: flex; flex-direction: column;
  border-top: 2px solid var(--rose);
}
.cta-hl-italic {
  font-family: var(--f-editorial); font-style: italic;
  font-size: 20px; color: var(--plum); opacity: 0.52; margin-bottom: 6px;
}
.cta-hl-accent {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(44px, 6.5vw, 74px); letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--rose); line-height: 0.86;
}
.cta-sub { font-size: 24px; line-height: 1.5; color: var(--plum); margin-bottom: 36px; max-width: 440px; }
.cta-btns { display: flex; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; }
.cta-info { display: flex; gap: 36px; flex-wrap: wrap; }
.cta-info-title { margin-bottom: 8px; }
.cta-info-text {
  font-family: var(--f-display); font-weight: 300;
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--plum); margin-top: 8px;
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════
   PARALLAX BRIDGE
══════════════════════════════════════════════════════════════ */
.parallax-bridge {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.parallax-bridge-bg {
  position: absolute;
  inset: 0;
  background: url("assets/img/parallax-bridge.jpg") center / cover no-repeat;
  background-attachment: fixed;
}
.parallax-bridge-overlay {
  display: none;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--ivory);
  padding: 0 0 36px;
  border-top: 0.5px solid rgba(184,188,200,0.55);
}
.footer-brand-display {
  border-bottom: 0.5px solid rgba(184,188,200,0.35);
  margin-bottom: 72px;
  padding: 36px 0;
}
.footer-marquee { overflow: hidden; padding-top: 22px; }
.footer-marquee-track {
  display: flex;
  align-items: baseline;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
  will-change: transform;
}
.footer-marquee:hover .footer-marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.fbd-text {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(52px, 10vw, 148px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(42, 20, 32, 0.10);
  line-height: 1.1;
  white-space: nowrap;
  padding: 0 48px;
}
.fbd-sep {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  color: rgba(154, 80, 96, 0.72);
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-grid {
  display: grid;
  padding: 0 72px;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px; margin-bottom: 72px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand-name {
  font-family: var(--f-display); font-weight: 300;
  text-transform: uppercase; letter-spacing: 0.3em; font-size: 12px; color: var(--rose);
}
.footer-tagline { font-size: 16px; color: var(--plum); max-width: 320px; line-height: 1.55; }
.footer-col-title { margin-bottom: 18px; color: var(--rose); }
.footer-col-list { display: flex; flex-direction: column; gap: 12px; }
.footer-col-item {
  font-family: var(--f-display); font-weight: 300;
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--plum); opacity: 0.82;
  transition: opacity .2s, color .2s;
}
.footer-col-item a { display: block; }
.footer-col-item a:hover { opacity: 1; color: var(--rose); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding: 22px 72px 0; flex-wrap: wrap; gap: 12px;
}
.site-footer > .nc-rule { margin: 0 72px; }
.footer-copy, .footer-legal {
  font-family: var(--f-display); font-weight: 300;
  text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 10px; color: var(--silver);
}
.footer-crafted {
  text-align: center;
  padding: 14px 72px 28px;
  font-family: var(--f-display); font-weight: 300;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(184,188,200,0.45);
}
.footer-crafted a {
  color: rgba(184,188,200,0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-crafted a:hover { color: var(--rose); }

/* ══════════════════════════════════════════════════════════════
   SERVICE ICONS
══════════════════════════════════════════════════════════════ */
.svc-icon { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* Hero */
  .hero-bg { object-position: 80% 38%; }

  /* Header */
  .site-header { width: calc(100% - 56px); top: 14px; padding: 10px 10px 10px 20px; }
  .header-nav   { display: none; }
  .header-phone { display: none; }
  .header-book  { display: none; }
  .header-right { gap: 10px; margin-left: 0; }
  .header-menu-toggle { display: flex; }
  .mobile-nav { display: flex; }

  /* Sections */
  .nc-section-pad { padding: 72px 24px 80px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-inner { padding: 88px 28px 52px; min-height: 100svh; }
  .hero-name { font-size: clamp(40px, 11vw, 72px); }
  .hero-tagline { font-size: clamp(15px, 4vw, 20px); }

  /* Sobre */
  .sobre-section { padding: 72px 0 100px; overflow: hidden; }
  .sobre-inner { grid-template-columns: minmax(0, 1fr); gap: 48px; padding: 0 32px; }
  .sobre-wm { right: -20px; font-size: clamp(60px, 18vw, 110px); }
  .sobre-card { margin-left: 0; max-width: 100%; }
  .sobre-stats { grid-template-columns: repeat(3, 1fr); }
  /* Texto primero, foto después */
  .sobre-text-col { order: -1; min-width: 0; }
  .sobre-photo-col { order: 1; min-width: 0; }
  .sobre-cta .nc-btn { width: 100%; justify-content: center; }

  /* Pull quote */
  .pull-quote-section { padding: 72px 24px 80px; }
  .pull-quote-text { font-size: clamp(20px, 5vw, 30px); }

  /* Servicios */
  /* Servicios — tarjetas móvil */
  .svc-scroll-section { display: none; }
  .svc-mobile {
    display: flex; flex-direction: column; gap: 10px;
    padding: 0 14px;
  }
  .svc-mob-card {
    position: relative;
    border-radius: 18px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .svc-mob-face {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
  }
  .svc-mob-face > div[style] {
    position: absolute; inset: 0;
    transition: transform 0.65s var(--ease-soft);
  }
  .svc-mob-card:hover .svc-mob-face > div[style] { transform: scale(1.04); }
  .svc-mob-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(42,20,32,0.78) 0%, rgba(42,20,32,0.08) 60%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 14px 16px; pointer-events: none;
  }
  .svc-mob-num {
    font-family: var(--f-display); font-weight: 300;
    font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--rose); margin-bottom: 4px;
  }
  .svc-mob-name {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(20px, 5.5vw, 28px); letter-spacing: 0.04em;
    text-transform: uppercase; color: var(--ivory);
    line-height: 1; margin: 0;
  }
  /* Panel de detalles — overlay con clip-path circular desde abajo */
  .svc-mob-back {
    position: absolute; inset: 0;
    background: rgba(42,20,32,0.92);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    clip-path: circle(0% at 50% 105%);
    transition: clip-path 0.65s var(--ease-soft);
    display: flex; align-items: flex-end;
    pointer-events: none;
  }
  .svc-mob-card:hover .svc-mob-back {
    clip-path: circle(150% at 50% 105%);
    pointer-events: auto;
  }
  .svc-mob-back-inner {
    width: 100%;
    padding: 18px 16px 20px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .svc-mob-desc {
    font-family: var(--f-display); font-weight: 300;
    font-size: 13px; color: rgba(250,248,244,0.75);
    line-height: 1.8; margin: 0;
  }
  .svc-mob-desc .svc-tiers { display: none; }
  .svc-mob-meta {
    font-family: var(--f-display); font-weight: 300;
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--rose);
    background: rgba(154,80,96,0.18);
    border: 0.5px solid rgba(154,80,96,0.35);
    border-radius: 6px; padding: 5px 12px;
    align-self: flex-start;
  }

  /* Resultados */
  .resultados-header { grid-template-columns: 1fr; }
  .resultados-sub { text-align: left; }
  /* Resultados */
  .rb-card { width: 220px; }

  /* Formación */
  /* Formación */
  .formacion-bento { grid-template-columns: 1fr; }
  .formacion-card-main .formacion-card-img { height: 220px; }
  .formacion-card-main .formacion-card-body { padding: 22px 20px 24px; }
  .formacion-card-side { grid-template-columns: 1fr; }
  .formacion-card-side-img { min-height: 180px; height: 180px; }
  .formacion-img-pestanas { background-position: center top !important; }
  .formacion-card-side .formacion-card-body { padding: 20px 20px 24px; }
  .formacion-card-side .formacion-card-desc { font-size: 13px; line-height: 1.65; margin-bottom: 10px; }
  .formacion-card-meta { flex-wrap: wrap; gap: 6px; }
  .formacion-card-spots { margin-left: 0; }
  .formacion-card-main .nc-btn { width: 100%; justify-content: center; }

  /* Testimonios */
  /* Testimonios */
  .testi-header { padding: 0 24px; margin-bottom: 52px; gap: 14px; }
  .testi-score-num { font-size: 80px; }
  .testi-card { width: 310px; padding: 26px 28px 22px; }
  .testi-q { font-size: 15px; }

  /* Parallax bridge — iOS Safari no pinta bg en position:absolute dentro de overflow:hidden */
  .parallax-bridge {
    height: 280px;
    background: url("assets/img/parallax-bridge.jpg") center 40% / cover no-repeat !important;
  }
  .parallax-bridge-bg { display: none !important; }

  /* CTA Cierre */
  .cta-cierre { padding: 40px 0 64px; }
  .cta-cierre-box { margin: 0 12px; }
  .cta-cierre-photo { position: static; height: 320px; width: 100%; background-attachment: scroll; background-position: 40% 20%; }
  .cta-glass {
    width: 100%; margin: 0;
    border-radius: 0; padding: 36px 28px;
  }
  .cta-sub { font-size: 18px; }

  /* Footer */
  .footer-brand-display { padding: 28px 0; }
  .fbd-text { font-size: clamp(48px, 16vw, 100px); padding: 0 28px; }
  .fbd-sep { font-size: clamp(28px, 8vw, 56px); }
  .footer-grid { padding: 0 24px; grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { padding: 22px 24px 0; flex-direction: column; align-items: flex-start; }
  .site-footer > .nc-rule { margin: 0 24px; }
  .footer-crafted { padding: 12px 24px 24px; }
}

@media (max-width: 599px) {
  .sobre-stats { grid-template-columns: 1fr; }
  .sobre-stat { border-left: none; border-top: 0.5px solid #D4909A; padding: 16px 0; }
  .sobre-stat:first-child { border-top: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .rb-track--fwd { animation-duration: 20s; }
  .rb-track--rev { animation-duration: 26s; }
}


/* ── FAQ ────────────────────────────────────────────────── */
.faq-section {
  background: var(--ivory);
  padding: 88px 40px 80px;
}
.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}
.faq-h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--plum);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 44px;
  line-height: 1.1;
}
.faq-h2 .faq-h2-em {
  display: block;
  font-family: var(--f-editorial);
  font-style: italic;
  text-transform: none;
  font-size: 0.82em;
  letter-spacing: 0;
  color: var(--rose);
  margin-top: 4px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Item — card */
.faq-item {
  border: 0.5px solid rgba(42,20,32,0.13);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(250,248,244,0.5);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(154,80,96,0.4);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 4px 28px rgba(154,80,96,0.08);
}
.faq-item[open] {
  border-color: rgba(154,80,96,0.45);
  background: #fff;
  box-shadow: 0 6px 36px rgba(154,80,96,0.1);
}

/* Summary row */
.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 22px 26px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::marker { display: none; }

/* Question text */
.faq-q {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(42,20,32,0.65);
  line-height: 1.5;
  transition: color 0.3s ease;
}
.faq-item:hover .faq-q,
.faq-item[open] .faq-q {
  color: var(--plum);
}

/* Arrow circle */
.faq-arrow-circle {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 0.5px solid rgba(42,20,32,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(42,20,32,0.35);
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item:hover .faq-arrow-circle {
  border-color: var(--rose);
  background: rgba(154,80,96,0.08);
  color: var(--rose);
}
.faq-item[open] .faq-arrow-circle {
  border-color: var(--rose);
  background: rgba(154,80,96,0.14);
  color: var(--rose);
}
.faq-arrow-circle svg {
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.faq-item[open] .faq-arrow-circle svg {
  transform: rotate(180deg);
}

/* Answer — smooth slide with grid trick */
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item[open] .faq-answer-wrap {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
}
.faq-a {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.88;
  color: rgba(42,20,32,0.58);
  margin: 0;
  padding: 14px 26px 24px;
  border-top: 0.5px solid rgba(42,20,32,0.07);
}

@media (max-width: 1023px) {
  .faq-section { padding: 64px 24px 60px; }
  .faq-inner { max-width: 100%; }
}
@media (max-width: 599px) {
  .faq-summary { padding: 18px 16px 18px 20px; }
  .faq-q { font-size: 11px; letter-spacing: 0.07em; }
  .faq-arrow-circle { width: 30px; height: 30px; }
  .faq-a { padding: 12px 20px 20px; font-size: 13px; }
}
