/* =========================================================
   Rodrigo Maciel — Asesor de imagen
   Sistema editorial · Geist · paleta austera blanco/negro
   Inspirado en NS Nutrition (palegoldenrod-crab-803383)
   ========================================================= */

:root {
  /* Paleta: blanco/negro/gris + acento bordó */
  --bg:        #ffffff;
  --bg-alt:    #f5f4f2;
  --bg-invert: #0a0a0a;

  --ink:       #0a0a0a;
  --ink-soft:  #3a3a3a;
  --ink-mute:  #767676;

  --line:      #ececec;
  --line-2:    #d8d8d8;

  --accent:        #8b1e2e;  /* bordó / burgundy */
  --accent-deep:   #6c1622;
  --accent-soft:   #c44a5a;

  /* Tipografía única: Geist */
  --sans: 'Geist', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
          'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --container-narrow: 920px;
  --pad: clamp(20px, 5vw, 56px);

  /* Easings */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Header height */
  --nav-h: 64px;
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-h);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

html { overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.6 var(--sans);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

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

/* SVG safety net: si un ícono pierde su tamaño (CSS no aplicado, override), se queda chico — nunca enorme */
svg { max-width: 100%; max-height: 100%; flex-shrink: 0; }
svg:not([width]):not([height]):not([class]) { width: 1em; height: 1em; }
.btn > svg, .link-arrow > svg, .nav__cta > svg,
.yt__play > svg, .reserva__mobile-icon > svg,
.reserva__mobile-foot > svg, .cta-final__secondary > svg,
.grid-cortes__overlay > svg { flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: 10px 14px; font-weight: 500; z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* =========================================================
   Tipografía
   ========================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.eyebrow .num {
  display: inline-flex; align-items: center; justify-content: center;
  font-variant-numeric: tabular-nums;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 2px 8px;
}
.eyebrow--invert { color: rgba(255,255,255,.55); }
.eyebrow--invert .num { color: var(--accent-soft); border-color: var(--accent-soft); }
.eyebrow--hero {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--bg);
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); display: inline-block;
  box-shadow: 0 0 0 4px rgba(139, 30, 46, 0.18);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(139, 30, 46, 0.18); }
  50%      { box-shadow: 0 0 0 9px rgba(139, 30, 46, 0); }
}

.section__title {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.025em;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.06;
  margin: 16px 0 0;
  color: var(--ink);
  max-width: 18ch;
  text-wrap: balance;
}
.section__title em { font-style: normal; color: var(--accent); font-weight: 600; }

.section__lede {
  margin: 20px 0 0;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

/* =========================================================
   Botones
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 18px;
  border-radius: 6px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg {
  width: 16px; height: 16px;
  transition: transform .3s var(--ease);
}
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0.5px); }

.btn--primary {
  background: var(--ink); color: var(--bg);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); }

.btn--invert {
  background: var(--bg); color: var(--ink);
  border-color: var(--bg);
}
.btn--invert:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--lg { padding: 16px 24px; font-size: 15px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 4px;
  transition: border-color .25s var(--ease);
}
.link-arrow svg {
  width: 14px; height: 14px;
  transition: transform .3s var(--ease);
}
.link-arrow:hover { border-color: var(--accent); color: var(--accent); }
.link-arrow:hover svg { transform: translate(2px, -2px); }

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255,255,255,0.92);
}
.nav__inner {
  height: var(--nav-h);
  display: flex; align-items: center; gap: 24px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 15px; line-height: 1; font-weight: 500;
}
.nav__brand-mark {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--ink);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--accent);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.nav__brand:hover .nav__brand-mark { transform: scale(1.05) rotate(-3deg); }
.nav__brand-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%; /* centra el rostro en el círculo */
  display: block;
}
.nav__brand-name { color: var(--ink); letter-spacing: -0.01em; }

.nav__links {
  margin-left: auto;
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav__links a { position: relative; transition: color .2s var(--ease); }
.nav__links a:hover { color: var(--ink); }

.nav__cta { font-size: 13px; padding: 9px 14px; }

.nav__toggle {
  display: inline-block;
  width: 44px; height: 44px;
  margin-left: auto;
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: var(--bg);
  transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  z-index: 60;
}
.nav__toggle:hover { border-color: var(--accent); }
.nav__toggle[aria-expanded="true"] {
  background: var(--accent);
  border-color: var(--accent);
}
.nav__toggle span {
  position: absolute; left: 50%; top: 50%;
  width: 18px; height: 1.5px; background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), opacity .25s var(--ease), background-color .3s var(--ease), width .35s var(--ease);
}
.nav__toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 4px)); }
.nav__toggle span:nth-child(2) { transform: translate(-50%, calc(-50% + 4px)); width: 12px; }
.nav__toggle:hover span:nth-child(2) { width: 18px; }
.nav__toggle[aria-expanded="true"] span { background: #fff; width: 18px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* =========================================================
   Menu Overlay — full-screen blanco + bordó
   ========================================================= */
.menu-overlay {
  position: fixed; inset: 0;
  z-index: 55;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  display: flex; flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease);
}
.menu-overlay[hidden] { display: flex; }
.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.menu-overlay::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 40% at 80% 20%, rgba(139,30,46,0.06), transparent 60%),
    radial-gradient(40% 30% at 15% 85%, rgba(139,30,46,0.04), transparent 70%);
  pointer-events: none;
}
.menu-overlay__inner {
  position: relative;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: calc(var(--nav-h) + 24px) var(--pad) 40px;
  text-align: center;
}
.menu-overlay__nav {
  display: flex; flex-direction: column;
  gap: clamp(8px, 2vw, 14px);
  width: 100%;
  max-width: 720px;
}
.menu-overlay__nav a {
  display: flex; align-items: baseline; justify-content: center;
  gap: clamp(12px, 2vw, 20px);
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 7vw, 80px);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--accent);
  padding: 8px 0;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .25s var(--ease);
}
.menu-overlay.is-open .menu-overlay__nav a { opacity: 1; transform: translateY(0); }
.menu-overlay.is-open .menu-overlay__nav a:nth-child(1) { transition-delay: .12s; }
.menu-overlay.is-open .menu-overlay__nav a:nth-child(2) { transition-delay: .18s; }
.menu-overlay.is-open .menu-overlay__nav a:nth-child(3) { transition-delay: .24s; }
.menu-overlay.is-open .menu-overlay__nav a:nth-child(4) { transition-delay: .30s; }
.menu-overlay.is-open .menu-overlay__nav a:nth-child(5) { transition-delay: .36s; }

.menu-overlay__nav a:hover { color: var(--accent-deep); }
.menu-overlay__nav a:hover .menu-overlay__label::after { transform: scaleX(1); }

.menu-overlay__num {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  opacity: 0.55;
  font-family: var(--sans);
}
.menu-overlay__label {
  position: relative;
  display: inline-block;
}
.menu-overlay__label::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 6px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}

.menu-overlay__foot {
  margin-top: clamp(32px, 5vw, 56px);
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease) .42s, transform .5s var(--ease) .42s;
}
.menu-overlay.is-open .menu-overlay__foot { opacity: 1; transform: translateY(0); }
.menu-overlay__cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  padding: 18px 36px;
}
.menu-overlay__cta:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.menu-overlay__social {
  display: flex; gap: 12px; align-items: center;
  font-size: 14px; color: var(--accent);
  font-weight: 500;
}
.menu-overlay__social a { transition: opacity .2s var(--ease); border-bottom: 1px solid transparent; }
.menu-overlay__social a:hover { border-bottom-color: var(--accent); }
.menu-overlay__social span { color: rgba(139,30,46,0.4); }

/* lock body scroll */
body.is-menu-open { overflow: hidden; }
.nav__cta { display: none; }

@media (min-width: 881px) {
  .nav__cta { display: inline-flex; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* ---- Background del hero (barbería) ---- */
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 60% at 30% 30%, #ffffff, transparent 70%),
    linear-gradient(180deg, #fbfafa 0%, #f5f4f2 100%);
}
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 30% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 30% 50%, #000 30%, transparent 100%);
}
.hero__bg-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  top: -20%; right: -15%;
  background: radial-gradient(circle, rgba(139,30,46,0.10) 0%, rgba(139,30,46,0.03) 40%, transparent 70%);
  filter: blur(40px);
  animation: heroGlow 18s ease-in-out infinite;
}
@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  50%      { transform: translate(-20px, 20px) scale(1.1); opacity: 0.85; }
}
.hero__bg-stripes {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      8deg,
      transparent 0,
      transparent 60px,
      rgba(139,30,46,0.025) 60px,
      rgba(139,30,46,0.025) 61px,
      transparent 62px,
      transparent 180px
    );
  mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000 70%, transparent 100%);
}

/* ---- Navaja vectorizada ---- */
.hero__razor {
  position: absolute;
  right: -8%;
  top: 50%;
  width: clamp(420px, 55vw, 780px);
  height: auto;
  transform: translateY(-55%) rotate(-12deg);
  opacity: 0.85;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.18));
  animation: razorIn 1.6s var(--ease-out) .3s both, razorFloat 9s ease-in-out 2s infinite;
  transform-origin: 50% 50%;
}
.hero__razor .razor-blade { transform-origin: 252px 155px; }
@keyframes razorIn {
  from { opacity: 0; transform: translateY(-55%) rotate(-30deg); }
  to   { opacity: 0.85; transform: translateY(-55%) rotate(-12deg); }
}
@keyframes razorFloat {
  0%, 100% { transform: translateY(-55%) rotate(-12deg); }
  50%      { transform: translateY(-58%) rotate(-13.5deg); }
}

/* Mobile — navaja como firma decorativa abajo, sin tapar texto */
@media (max-width: 880px) {
  .hero__razor {
    right: -18%;
    top: auto;
    bottom: 4%;
    width: 78vw;
    max-width: 460px;
    transform: rotate(-15deg);
    opacity: 0.16;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08));
    animation: razorMobileIn 1.4s var(--ease-out) .2s both;
  }
  @keyframes razorMobileIn {
    from { opacity: 0; transform: rotate(-28deg); }
    to   { opacity: 0.16; transform: rotate(-15deg); }
  }
  .hero__bg-glow { opacity: 0.6; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column; gap: 24px;
  padding-top: clamp(48px, 9vw, 100px);
  padding-bottom: clamp(56px, 9vw, 100px);
  max-width: var(--container-narrow);
  margin-left: auto; margin-right: auto;
  width: 100%;
}

@media (max-width: 600px) {
  .hero { padding-top: calc(var(--nav-h) + 12px); }
  .hero__inner {
    gap: 18px;
    padding-top: 28px;
    padding-bottom: 56px;
  }
  .hero__title {
    font-size: clamp(38px, 11.5vw, 56px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.03em !important;
  }
  .hero__lede {
    font-size: 15px !important;
    line-height: 1.5;
    max-width: 100%;
  }
  .hero__cta { gap: 10px; }
  .hero__cta .btn--lg {
    padding: 14px 20px;
    font-size: 14px;
    flex: 1;
    min-width: 0;
    justify-content: center;
  }
}
.hero__title {
  margin: 4px 0 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
  position: relative;
}

.hero__lede {
  max-width: 50ch;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
  margin: 8px 0 0;
}

.hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 16px;
}

.hero__strip {
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.hero__strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: clamp(20px, 3vw, 32px) var(--pad);
}
.hero__strip-inner > div {
  display: flex; flex-direction: column; gap: 4px;
  padding: 8px 0;
  border-left: 1px solid var(--line);
  padding-left: clamp(16px, 2vw, 24px);
}
.hero__strip-inner > div:first-child { border-left: 0; padding-left: 0; }
.hero__strip-num {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.hero__strip-label {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .hero__strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
    padding: 22px var(--pad);
  }
  .hero__strip-inner > div:nth-child(3) { border-left: 0; padding-left: 0; }
  .hero__strip-num { font-size: 22px; }
  .hero__strip-label { font-size: 11px; }
}

@media (max-width: 380px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn--lg { width: 100%; }
}

/* =========================================================
   Section base
   ========================================================= */
.section {
  padding: clamp(72px, 10vw, 120px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section--alt { background: var(--bg-alt); }

.section__head { margin-bottom: clamp(40px, 6vw, 64px); max-width: 720px; }
.section__head--row {
  display: flex; justify-content: space-between; align-items: end; gap: 32px; flex-wrap: wrap;
  max-width: none;
}

/* =========================================================
   Servicios
   ========================================================= */
.services {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.service {
  display: flex; gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.service:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}
.service:nth-child(even) { padding-left: 32px; }

.service__num {
  font-variant-numeric: tabular-nums;
  font-size: 13px; font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  padding-top: 4px;
}
.service__body { flex: 1; }
.service__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.service__copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
}

@media (max-width: 720px) {
  .services { grid-template-columns: 1fr; }
  .service, .service:nth-child(odd), .service:nth-child(even) {
    padding: 28px 0;
    border-right: 0;
  }
}

/* =========================================================
   Sobre mí
   ========================================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
  transition: transform .6s var(--ease);
}
.about__photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35) 100%),
    radial-gradient(70% 50% at 80% 5%, rgba(139,30,46,0.18), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
  filter: contrast(1.08) saturate(1) brightness(1.05);
}
.about__photo:hover img { transform: scale(1.03); filter: contrast(1.1) saturate(1); }


.about__copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  max-width: 56ch;
  margin: 20px 0;
}

.about__list { list-style: none; padding: 0; margin: 28px 0; }
.about__list li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
}
.about__list li:last-child { border-bottom: 0; }
.about__list li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 12px; height: 2px; background: var(--accent);
  transform: translateY(-50%);
}

.about__cta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 12px; }

@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; }
}

/* =========================================================
   Cortes — grid cuadrado uniforme 3×2
   ========================================================= */
.grid-cortes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.grid-cortes__item {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.grid-cortes__item:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
}
.grid-cortes__item img,
.grid-cortes__item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
  display: block;
}
.grid-cortes__item:hover img,
.grid-cortes__item:hover video { transform: scale(1.04); }

.grid-cortes__item--video { background: #000; }
.grid-cortes__item--video::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.45));
  pointer-events: none;
  z-index: 1;
}
.grid-cortes__badge {
  position: absolute; top: 12px; left: 12px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(139,30,46,0.35);
}
.grid-cortes__badge svg { color: #fff; }

.grid-cortes__placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    linear-gradient(135deg, #f3f1ed 0%, #e9e6e0 100%);
}
.grid-cortes__placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.025) 0 1px, transparent 1px 8px);
}
.grid-cortes__placeholder span {
  position: relative;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.grid-cortes__overlay {
  position: absolute; inset: auto 0 0 0;
  padding: 12px 14px;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
  color: #fff;
  font-size: 12px; letter-spacing: 0.04em;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 2;
}
.grid-cortes__item:hover .grid-cortes__overlay { opacity: 1; transform: translateY(0); }
.grid-cortes__overlay svg { width: 14px; height: 14px; }

@media (max-width: 720px) {
  /* Carrusel horizontal con snap, slides verticales 9:16 */
  .grid-cortes {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 6px var(--pad) 8px;
    margin: 0 calc(var(--pad) * -1);
    scroll-padding-left: var(--pad);
    scroll-padding-right: var(--pad);
  }
  .grid-cortes::-webkit-scrollbar { display: none; }
  .grid-cortes__item {
    flex: 0 0 calc(100vw - var(--pad) * 2);
    max-width: 420px;
    aspect-ratio: 9/16;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    border-radius: 14px;
  }

  /* Dots de paginación */
  .grid-cortes__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  .grid-cortes__dot {
    width: 26px; height: 3px;
    background: var(--line-2);
    border-radius: 2px;
    transition: background-color .3s var(--ease), width .3s var(--ease);
    border: 0;
    padding: 0;
    cursor: pointer;
  }
  .grid-cortes__dot.is-active {
    background: var(--accent);
    width: 38px;
  }

  /* Hint de swipe */
  .grid-cortes__swipe-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .grid-cortes__swipe-hint svg {
    width: 14px; height: 14px;
    color: var(--accent);
    animation: swipeHint 1.8s var(--ease) infinite;
  }
  @keyframes swipeHint {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(8px); }
  }
}

@media (min-width: 721px) {
  .grid-cortes__dots, .grid-cortes__swipe-hint { display: none; }
}

/* =========================================================
   Podcast — bloque oscuro con identidad fuerte
   ========================================================= */
.section--podcast {
  background: var(--bg-invert);
  color: var(--bg);
  border-bottom: 0;
  border-top: 1px solid var(--bg-invert);
  position: relative;
  overflow: hidden;
}
.section--podcast::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 40% at 85% 5%, rgba(139, 30, 46, 0.22), transparent 65%),
    radial-gradient(40% 30% at 10% 95%, rgba(139, 30, 46, 0.10), transparent 70%);
  pointer-events: none;
}
.podcast__head {
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
  margin-bottom: clamp(40px, 6vw, 64px);
  position: relative;
}
.podcast__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 4px 0 0;
  color: #fff;
  text-wrap: balance;
}
.podcast__title em {
  font-style: normal;
  color: var(--accent-soft);
  font-weight: 600;
}
.podcast__lede {
  max-width: 56ch;
  color: rgba(255,255,255,0.7);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  margin: 8px 0 0;
}

/* =========================================================
   Grid YouTube — bento mosaico
   Layout para 5 episodios:
   ┌──────────────────────┬──────────┐
   │                      │          │
   │       FEATURE EP5    │  EP4     │   row 1
   │       (8 cols × 2)   │ (4 × 2)  │
   │                      │          │
   ├──────────┬───────────┤          │
   │   EP3    │   EP2     │          │   row 2
   │ (4 × 1)  │ (4 × 1)   │          │
   ├──────────┴───────────┴──────────┤
   │             EP1                 │   row 3 (wide)
   │         (12 × 1)                │
   └─────────────────────────────────┘
   ========================================================= */
.grid-yt {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 14px;
}
.yt {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  grid-column: span 6;
  aspect-ratio: 16/9;
  isolation: isolate;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.yt:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 74, 90, 0.35);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.6),
              0 0 0 1px rgba(196, 74, 90, 0.15);
}

/* Variantes bento */
.yt--feature  { grid-column: span 8; grid-row: span 2; aspect-ratio: auto; }
.yt--tall     { grid-column: span 4; grid-row: span 2; aspect-ratio: auto; }
.yt--wide     { grid-column: span 12; aspect-ratio: 21/9; }
.yt--default  { grid-column: span 4; aspect-ratio: 4/3; }

.yt iframe { width: 100%; height: 100%; border: 0; display: block; position: absolute; inset: 0; }

.yt__poster {
  position: absolute; inset: 0;
  display: block;
  cursor: pointer;
  text-align: left;
  width: 100%; height: 100%;
  background: #0a0a0a;
}
.yt__poster img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.88;
  transition: opacity .4s var(--ease), transform 1s var(--ease), filter .4s var(--ease);
  filter: saturate(0.9);
}
.yt__poster:hover img {
  opacity: 1;
  transform: scale(1.05);
  filter: saturate(1.05);
}
.yt__poster::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 30%, transparent 55%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity .4s var(--ease);
}
.yt__poster::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,30,46,0) 0%, rgba(139,30,46,0) 60%, rgba(139,30,46,0.25) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.yt__poster:hover::after { opacity: 1; }

.yt__play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.yt__poster:hover .yt__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent);
}
.yt__play svg { width: 22px; height: 22px; margin-left: 3px; color: var(--ink); transition: color .3s var(--ease); }
.yt__poster:hover .yt__play svg { color: #fff; }

.yt--feature .yt__play { width: 80px; height: 80px; }
.yt--feature .yt__play svg { width: 28px; height: 28px; }

.yt__meta {
  position: absolute; left: 18px; right: 18px; bottom: 16px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
}
.yt__tag {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; font-weight: 600;
  background: var(--accent);
  padding: 5px 10px;
  border-radius: 4px;
  font-variant-numeric: tabular-nums;
}
.yt__tag::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: #fff;
}
.yt__title {
  font-size: 14px; line-height: 1.3;
  color: #fff; font-weight: 600;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yt__guest {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.yt--feature .yt__title { font-size: clamp(20px, 2.4vw, 28px); line-height: 1.1; -webkit-line-clamp: 3; letter-spacing: -0.02em; }
.yt--feature .yt__guest { font-size: 14px; }
.yt--tall .yt__title    { font-size: 16px; }

@media (max-width: 980px) {
  .grid-yt { grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(160px, auto); }
  .yt, .yt--feature, .yt--tall, .yt--default { grid-column: span 3; grid-row: auto; aspect-ratio: 4/3; }
  .yt--feature { grid-column: span 6; aspect-ratio: 16/9; }
  .yt--wide { grid-column: span 6; aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .grid-yt { grid-template-columns: 1fr; gap: 10px; }
  .yt, .yt--feature, .yt--tall, .yt--default, .yt--wide { grid-column: span 1; aspect-ratio: 16/9; }
}

/* =========================================================
   Reserva
   ========================================================= */
.reserva {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}
.reserva__lede {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 50ch;
  margin: 20px 0;
}
.reserva__list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
}
.reserva__list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
}
.reserva__list strong { color: var(--ink); font-weight: 500; margin-right: 6px; }

.reserva__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.reserva__embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  position: relative;
}
.reserva__embed-frame {
  position: relative;
  aspect-ratio: 4/5;
  min-height: 580px;
  background: #fff;
}
.reserva__embed-frame iframe {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  border: 0; background: #fff;
  display: block;
}
.reserva__hint {
  font-size: 12px; color: var(--ink-mute);
  padding: 14px 16px; border-top: 1px solid var(--line);
  margin: 0; text-align: center;
  background: var(--bg-alt);
}
.reserva__hint a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.reserva__hint a + a { margin-left: 4px; }

/* ---- Mobile card (reemplaza iframe en pantallas chicas) ---- */
.reserva__mobile-card {
  display: none;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.reserva__mobile-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 90% 10%, rgba(139,30,46,0.08), transparent 60%),
    radial-gradient(40% 30% at 10% 90%, rgba(139,30,46,0.05), transparent 70%);
  pointer-events: none;
}

.reserva__mobile-head {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 22px 18px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.reserva__mobile-icon {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--ink); color: var(--bg);
  position: relative;
}
.reserva__mobile-icon::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px; background: var(--accent);
  border-radius: 0 0 12px 12px;
}
.reserva__mobile-icon svg { width: 22px; height: 22px; }
.reserva__mobile-tag {
  display: block;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 2px;
}
.reserva__mobile-head h3 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}

.reserva__mobile-mockup {
  padding: 20px 22px;
  display: flex; flex-direction: column;
  gap: 6px;
  position: relative; z-index: 1;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.reserva__mock-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.reserva__mock-row--head span {
  height: 6px;
  background: var(--line-2);
  border-radius: 3px;
  opacity: 0.6;
}
.reserva__mock-slot {
  height: 30px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.reserva__mock-slot--free {
  background: rgba(139,30,46,0.08);
  border-color: rgba(139,30,46,0.25);
  position: relative;
}
.reserva__mock-slot--free::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}
.reserva__mock-slot--taken {
  background: var(--bg-alt);
  border-color: var(--line);
  background-image:
    repeating-linear-gradient(45deg,
      transparent 0 3px,
      rgba(0,0,0,0.06) 3px 4px);
}

.reserva__mobile-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em;
  position: relative; z-index: 1;
  transition: background-color .35s var(--ease);
}
.reserva__mobile-foot svg {
  width: 18px; height: 18px;
  transition: transform .3s var(--ease);
}
.reserva__mobile-card:active .reserva__mobile-foot { background: var(--accent); }
.reserva__mobile-card:active .reserva__mobile-foot svg { transform: translate(2px, -2px); }

@media (max-width: 880px) {
  .reserva { grid-template-columns: 1fr; }

  /* Ocultamos el iframe (queda corrupto en mobile) y mostramos la card */
  .reserva__embed-frame { display: none !important; }
  .reserva__mobile-card { display: flex; }
}

/* Hover desktop solo (>880) — pero por si acaso alguien fuerza la card */
@media (hover: hover) {
  .reserva__mobile-card:hover .reserva__mobile-foot { background: var(--accent); }
  .reserva__mobile-card:hover .reserva__mobile-foot svg { transform: translate(2px, -2px); }
}

/* =========================================================
   CTA Final — bloque con textura cinematográfica
   ========================================================= */
.cta-final {
  position: relative;
  background: #0a0a0a;
  color: var(--bg);
  padding: clamp(96px, 14vw, 160px) 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-final__texture {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
/* Grid sutil de líneas blancas */
.cta-final__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
  animation: gridDrift 60s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 64px 64px; }
}
/* Glows orbitando bordó */
.cta-final__glow {
  position: absolute;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.cta-final__glow--1 {
  background: radial-gradient(circle, rgba(139,30,46,0.45), transparent 65%);
  top: -20%; right: -10%;
  animation: glowFloat1 14s ease-in-out infinite;
}
.cta-final__glow--2 {
  background: radial-gradient(circle, rgba(139,30,46,0.28), transparent 70%);
  bottom: -25%; left: -15%;
  animation: glowFloat2 18s ease-in-out infinite;
}
@keyframes glowFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-40px, 30px) scale(1.1); }
}
@keyframes glowFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(50px, -40px) scale(1.15); }
}
/* Rayos diagonales blancos */
.cta-final__rays {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      105deg,
      transparent 0,
      transparent 80px,
      rgba(255,255,255,0.025) 80px,
      rgba(255,255,255,0.025) 81px,
      transparent 82px,
      transparent 200px
    );
  mask-image: linear-gradient(180deg, transparent 0%, #000 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 50%, transparent 100%);
}
/* Noise muy sutil */
.cta-final__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}

.cta-final__inner {
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 28px; text-align: center;
}
.cta-final__eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.cta-final__eyebrow-line {
  width: clamp(28px, 6vw, 48px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cta-final__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  color: #fff;
  max-width: 16ch;
  text-wrap: balance;
}
.cta-final__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent) 50%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.cta-final__lede {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 42ch;
  line-height: 1.55;
}
.cta-final__actions {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  margin-top: 12px;
}
.cta-final__actions .btn--invert {
  padding: 18px 32px;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 16px 40px -12px rgba(255,255,255,0.25);
  transition: background-color .35s var(--ease), color .35s var(--ease),
              transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cta-final__actions .btn--invert:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -12px rgba(139, 30, 46, 0.5);
}
.cta-final__secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 4px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.cta-final__secondary svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.cta-final__secondary:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
}
.cta-final__secondary:hover svg { transform: translate(2px, -2px); }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--bg); border-top: 1px solid var(--line); }
.footer__inner {
  padding: clamp(48px, 8vw, 72px) var(--pad) clamp(40px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(32px, 5vw, 64px);
  max-width: var(--container);
  margin: 0 auto;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__mark {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  background: var(--ink); color: var(--bg);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--accent);
}
.footer__mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}
.footer__cols a:hover { color: var(--accent); }
.footer__tag { color: var(--ink-soft); font-size: 14px; max-width: 38ch; margin: 0; line-height: 1.6; }

.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.footer__cols h4 {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); margin: 0 0 12px; font-weight: 500;
}
.footer__cols a {
  display: block; padding: 5px 0;
  color: var(--ink); font-size: 14px;
  transition: color .2s var(--ease);
}

.footer__bar { border-top: 1px solid var(--line); }
.footer__bar-inner {
  padding: 16px var(--pad);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: var(--ink-mute);
}
.footer__credit {
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.02em;
}
.footer__vantra {
  position: relative;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.footer__vantra:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* =========================================================
   Sticky CTA mobile
   ========================================================= */
.sticky-cta {
  position: fixed;
  left: 50%; bottom: 20px;
  z-index: 60;
  display: none;
  align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.005em;
  box-shadow: 0 18px 36px -10px rgba(139, 30, 46, 0.55),
              0 6px 14px rgba(0,0,0,0.28);
  transform: translate(-50%, 0);
  animation: ctaIn .55s var(--ease) .8s both;
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.sticky-cta:active {
  transform: translate(-50%, 1px);
  background: var(--accent-deep);
}
.sticky-cta svg { width: 18px; height: 18px; }
@keyframes ctaIn {
  from { transform: translate(-50%, 24px); opacity: 0; }
  to   { transform: translate(-50%, 0);    opacity: 1; }
}
@media (max-width: 880px) {
  .sticky-cta { display: inline-flex; }
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   ⚡ HINGE SUAVE — entrada con perspective leve
   ========================================================= */
.service, .grid-cortes__item, .yt {
  transform-origin: 50% 0%;
}
.service {
  opacity: 0;
  transform: translateY(20px) rotateX(-6deg);
  transition: opacity .6s var(--ease-out), transform .7s var(--ease-out);
}
.service.is-in {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.grid-cortes__item {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity .6s var(--ease-out),
              transform .7s var(--ease-out),
              border-color .35s var(--ease);
}
.grid-cortes__item.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.yt {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-out),
              transform .7s var(--ease-out),
              border-color .4s var(--ease),
              box-shadow .4s var(--ease);
}
.yt.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   ⚡ HERO TITLE — letter-by-letter reveal (rápido)
   ========================================================= */
.hero__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
  line-height: inherit;
  white-space: nowrap;
}
.hero__title .word__inner {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  animation: wordRise .7s cubic-bezier(.16, 1, .3, 1) forwards;
}
@keyframes wordRise {
  to { transform: translateY(0); opacity: 1; }
}

/* =========================================================
   ⚡ ABOUT IMAGE — clip-path reveal (no-destructivo)
   Default: VISIBLE. Solo si JS agrega .is-prereveal se oculta
   y al observar al viewport se reanima a visible.
   ========================================================= */
.about__photo {
  clip-path: inset(0);
  transition: clip-path 1.1s cubic-bezier(.76, 0, .24, 1);
}
.about__photo.is-prereveal {
  clip-path: inset(100% 0 0 0);
}

/* =========================================================
   ⚡ SCROLL PROGRESS — más vistoso
   ========================================================= */
.scroll-progress {
  height: 3px;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent), var(--accent-soft));
  background-size: 200% 100%;
  animation: progressShine 2.5s linear infinite;
}
@keyframes progressShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* =========================================================
   ⚡ HOVER LIFTS — micro CTAs
   ========================================================= */
.btn:hover { transform: translateY(-2px); }
.btn--primary:hover, .btn--invert:hover {
  box-shadow: 0 16px 32px -10px rgba(139, 30, 46, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .service, .grid-cortes__item, .yt {
    opacity: 1 !important;
    transform: none !important;
  }
  .about__photo, .about__photo.is-prereveal { clip-path: none !important; }
  .hero__title .word__inner { animation: none !important; transform: none !important; opacity: 1 !important; }
}
.service { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.service.is-in { opacity: 1; transform: translateY(0); }

/* =========================================================
   Scroll progress bar (top bordó)
   ========================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  z-index: 100;
  transition: width .12s linear;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 12px rgba(139,30,46,0.5);
}

/* =========================================================
   Hero — entrada en cascada al cargar
   ========================================================= */
.hero__inner > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 1s var(--ease-out) forwards;
}
.hero__inner > *:nth-child(1) { animation-delay: .1s; }
.hero__inner > *:nth-child(2) { animation-delay: .25s; }
.hero__inner > *:nth-child(3) { animation-delay: .4s; }
.hero__inner > *:nth-child(4) { animation-delay: .55s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero__strip > * { animation: heroIn 1s var(--ease-out) .7s forwards; opacity: 0; transform: translateY(16px); }

/* Hero title — micro-shine on the em */
.hero__title em::after {
  content: "";
  position: absolute; left: 0; bottom: 8%;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: titleUnderline 1.2s var(--ease-out) 1.4s forwards;
}
@keyframes titleUnderline {
  to { transform: scaleX(1); }
}

/* =========================================================
   Hover refinado en cards/services
   ========================================================= */
.service { transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), background-color .35s var(--ease); }
.service:hover { background: linear-gradient(180deg, transparent, rgba(139,30,46,0.025)); }
.service:hover .service__num { color: var(--accent); }
.service__num { transition: color .3s var(--ease); }

/* link-arrow shine */
.link-arrow {
  position: relative;
  overflow: hidden;
}
.link-arrow::before {
  content: "";
  position: absolute; left: -120%; top: 0; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(139,30,46,0.15), transparent);
  transition: left .7s var(--ease);
}
.link-arrow:hover::before { left: 120%; }

/* Buttons — micro lift */
.btn { will-change: transform; }
.btn--primary, .btn--invert {
  position: relative; overflow: hidden;
}
.btn--primary::after, .btn--invert::after {
  content: "";
  position: absolute; left: -100%; top: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left .7s var(--ease);
  pointer-events: none;
}
.btn--primary:hover::after, .btn--invert:hover::after { left: 150%; }

/* Smooth para cualquier transformación */
.grid-cortes__item, .yt, .nav, .footer__cols a, .menu-overlay__nav a {
  will-change: transform;
}

/* Reveal con stagger en grid de cortes */
.grid-cortes__item {
  opacity: 0; transform: translateY(16px) scale(0.98);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), border-color .35s var(--ease);
}
.grid-cortes__item.is-in { opacity: 1; transform: translateY(0) scale(1); }

/* Reveal en tarjetas de YT */
.yt {
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out),
              border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.yt.is-in { opacity: 1; transform: translateY(0); }
