/* =============================================================
   COMPTON TATTOO — styles.css
   Archetype: Mouse-Reactive Gradient (urban tattoo adaptation)
   ============================================================= */

/* =============================================================
   0. NOHEMI — Self-hosted display font
   ============================================================= */
@font-face {
  font-family: "Nohemi";
  src: url("assets/fonts/Nohemi-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("assets/fonts/Nohemi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("assets/fonts/Nohemi-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("assets/fonts/Nohemi-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("assets/fonts/Nohemi-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("assets/fonts/Nohemi-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  /* Palette — warm near-black + bone + signal yellow (brand) */
  --bg:        #0a0907;
  --bg-2:      #131009;
  --bg-3:      #1c1810;
  --bg-card:   #181410;
  --bone:      #f1ebd8;
  --bone-2:    #d2c9b3;
  --bone-3:    #8a8170;
  --bone-4:    #5c5547;
  --accent:    #f5c518;       /* brand signal yellow */
  --accent-2:  #ffd84d;       /* lighter yellow */
  --accent-3:  #c39a0a;       /* amber depth */
  --gradient-1: #f5c518;
  --gradient-2: #ffd84d;
  --gradient-3: #5e4806;
  --gradient-4: #0a0907;

  --line:      rgba(241, 235, 216, 0.10);
  --line-2:    rgba(241, 235, 216, 0.22);

  /* Typography */
  --display:   "Nohemi", "Onest", "Archivo Black", "Impact", sans-serif;
  --display-2: "Bebas Neue", "Anton", "Impact", "Arial Black", sans-serif;
  --display-3: "Big Shoulders Display", "Archivo Black", "Impact", sans-serif;
  --brand:     "Cinzel", "Trajan Pro", "Times New Roman", serif;
  --serif:     "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:      "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:      "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Easings */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max:    1480px;
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--bone);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  cursor: none;
}
/* Hide native cursor everywhere on desktop — the tattoo machine is the only pointer */
@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p  { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-wrap: balance;
  text-transform: uppercase;
}
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--bone); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: 0.6rem 1rem; background: var(--bone); color: var(--bg);
  z-index: 9999; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. UTILITIES
   ============================================================= */
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-3);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Defensive — see gotcha A.4.5 */
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

/* =============================================================
   3a. STAGGER REVEAL — los hijos aparecen en cascada
   Uso: <div data-stagger>...</div>  (JS asigna --i por índice)
   Opcional: data-stagger="cards|fast|slow" para variar el ritmo
   IMPORTANTE: !important porque algunos hijos (.team-card, .review-card…)
   redefinen 'transition' para sus hover, lo que rompería el delay.
   ============================================================= */
[data-stagger] > * {
  opacity: 0 !important;
  transform: translateY(36px) scale(0.98) !important;
  filter: blur(6px) !important;
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * var(--stagger-step, 110ms)),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * var(--stagger-step, 110ms)),
    filter 0.95s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * var(--stagger-step, 110ms)) !important;
  will-change: opacity, transform, filter;
}
[data-stagger].is-visible > * {
  opacity: 1 !important;
  transform: none !important;
  filter: blur(0) !important;
}
[data-stagger="fast"]  { --stagger-step: 65ms; }
[data-stagger="cards"] { --stagger-step: 140ms; }
[data-stagger="slow"]  { --stagger-step: 200ms; }

/* En móvil la cascada es más corta para que no se sienta lenta */
@media (max-width: 720px) {
  [data-stagger] { --stagger-step: 70ms; }
}
@media (prefers-reduced-motion: reduce) {
  [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* =============================================================
   3b. BRAND LOCKUP (signage style — COMPTON + Tattoo Studio)
   ============================================================= */
.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05em;
  line-height: 0.9;
  color: var(--accent);
}
.brand-compton {
  font-family: var(--display-2);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
}
.brand-tattoo {
  font-family: var(--brand);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.2em;
}
.brand-lockup-lg .brand-compton {
  font-size: clamp(4rem, 11vw, 8rem);
  line-height: 0.85;
}
.brand-lockup-lg .brand-tattoo {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  letter-spacing: 0.34em;
  margin-top: 0.5em;
}

/* =============================================================
   4. SPLASH
   ============================================================= */
.splash {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9000;
  display: grid; place-items: center;
  animation: splashSafety 0.01s 4.5s forwards;
}
.splash.is-out {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.7s var(--ease-out), clip-path 0.9s var(--ease-out);
  pointer-events: none;
}
@keyframes splashSafety {
  to { opacity: 0; clip-path: inset(0 0 100% 0); pointer-events: none; }
}
.splash-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
}
.splash .brand-lockup {
  align-items: center;
}
.splash .brand-compton {
  text-align: center;
}
.splash-bar {
  width: 180px; height: 2px;
  background: rgba(241,235,216,0.12);
  overflow: hidden;
  position: relative;
}
.splash-bar-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: translateX(-100%);
  animation: splashFill 2.6s var(--ease-out) forwards;
}
@keyframes splashFill {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}
.splash-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--bone-4);
}

/* =============================================================
   5. CURSOR — TATTOO MACHINE + INK TRAIL
   ============================================================= */
.ink-trail {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  /* Igual que cursor-machine: visible sobre lightbox y splash. */
  z-index: 9999;
}
@media (hover: none), (pointer: coarse) {
  .ink-trail { display: none; }
}

.cursor-machine {
  position: fixed;
  top: 0; left: 0;
  width: 77px; height: 77px;
  pointer-events: none;
  /* Por encima de lightbox (9000) y splash (9000) para que el cursor
     siempre sea visible incluso sobre overlays full-screen. */
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  will-change: transform;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.7));
  /* Anchor: needle tip is roughly bottom-left of the image (~25% x, 98% y) */
  transform-origin: 25% 98%;
}
.cursor-machine.is-ready { opacity: 1; }
@media (hover: none), (pointer: coarse) {
  .cursor-machine { display: none; }
}
.cursor-img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  /* Sólo transform interpola — el filter cambia instantáneo */
  transition: transform 0.3s var(--ease-out);
  transform-origin: 25% 98%;
  /* Default: blanco-hueso */
  filter:
    invert(1)
    brightness(1.05)
    sepia(0.08)
    drop-shadow(0 0 1px rgba(241,235,216,0.4));
}
.cursor-machine.is-hover .cursor-img {
  /* Amarillo dorado del branding (#f5c518, hue ~48°).
     Calibrado para coincidir con el accent de la marca — sin fluorescencia. */
  filter:
    invert(1)
    sepia(1)
    saturate(3.4)
    hue-rotate(12deg)
    brightness(1)
    contrast(1.05);
  transform: scale(1.15);
}
.cursor-machine.is-pressing .cursor-img {
  transform: scale(0.9);
  transition-duration: 0.1s;
}

/* =============================================================
   6. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: background-color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 9, 7, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: 0.75rem;
}
.nav-logo.brand-lockup .brand-compton {
  font-size: 1.55rem;
}
.nav-logo.brand-lockup .brand-tattoo {
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  margin-top: 0.1em;
}
.nav-links {
  display: none;
  gap: 1.8rem;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-2);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.3s var(--ease-out);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover {
  color: var(--bone);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  display: inline-flex; align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  background: var(--bone);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  will-change: transform;
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--bone);
}
.nav-cta-arrow {
  transition: transform 0.3s var(--ease-out);
}
.nav-cta:hover .nav-cta-arrow { transform: translateX(3px); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
}

/* =============================================================
   7. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(10rem, 18vh, 14rem) var(--gutter) clamp(4rem, 8vh, 6.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: -3;
  filter: grayscale(0.2) contrast(1.08) brightness(0.62) saturate(0.92);
  animation: heroAmbient 28s ease-in-out infinite alternate;
}
@keyframes heroAmbient {
  0%   { transform: scale(1.0) translate3d(0, 0, 0); }
  100% { transform: scale(1.03) translate3d(-0.5%, -0.5%, 0); }
}
.hero-gradient {
  display: none;
}
.hero-scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,9,7,0.35) 0%, transparent 25%, transparent 55%, rgba(10,9,7,0.96) 100%),
    linear-gradient(90deg, rgba(10,9,7,0.7) 0%, rgba(10,9,7,0.2) 35%, transparent 60%, rgba(10,9,7,0.5) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  z-index: -1;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

.hero-marquee {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1;
  padding: 5.5rem 0 2.6rem;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: inline-flex;
  gap: 1.4rem;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  letter-spacing: 0.04em;
  color: var(--bone-3);
  text-transform: uppercase;
  animation: marquee 38s linear infinite;
}
.marquee-track span { display: inline-block; }
.marquee-track span:nth-child(odd) {
  color: var(--bone);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-big {
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--bone);
  gap: 2rem;
  animation-duration: 48s;
}
.marquee-big span:nth-child(4n+1) {
  color: var(--accent);
}
.marquee-big span:nth-child(4n+3) {
  font-family: var(--brand);
  font-weight: 600;
  font-size: 0.55em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: center;
  color: var(--bone);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.8rem;
}
.hero-kicker {
  margin-bottom: 0.4rem;
  color: var(--bone-2);
  justify-content: center;
}
.hero-actions {
  justify-content: center;
}
.hero-kicker {
  text-align: center;
  color: var(--accent);
  margin-bottom: clamp(0.9rem, 2vh, 1.4rem);
}
.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.6vw, 5.3rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--bone);
  max-width: 18ch;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero-title em {
  font: inherit;
  font-style: normal;
  color: var(--accent);
}
.split-word-wrap {
  display: inline-block;
  white-space: nowrap;
}
.hero-title .split-char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.hero-title.is-revealed .split-char {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.9s var(--ease-out), opacity 0.5s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 18ms);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  max-width: none;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  font-weight: 400;
  white-space: nowrap;
}
.hero-sub strong {
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 720px) {
  .hero-sub { white-space: normal; max-width: 92%; }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.6rem;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
  color: var(--accent);
}
.btn-primary:hover::before {
  transform: translateY(0);
}
.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--bone);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--bone);
  background: rgba(241,235,216,0.06);
}
.btn-arrow {
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .btn-arrow { transform: translate(3px, -3px); }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2.5rem;
  margin: 1.6rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  max-width: 820px;
  width: 100%;
  text-align: left;
}
.hero-meta-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero-meta-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-4);
}
.hero-meta-value {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  letter-spacing: 0.02em;
  color: var(--bone);
}
.hero-meta-link {
  position: relative;
}
.hero-meta-link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.hero-meta-link:hover::after { transform: scaleX(1); }

.hero-scroll-hint {
  position: absolute;
  bottom: 1.4rem; right: var(--gutter);
  z-index: 2;
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bone-3);
  text-transform: uppercase;
}
.hero-scroll-line {
  display: inline-block;
  width: 60px; height: 1px;
  background: var(--bone-3);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  animation: scrollHint 2.4s var(--ease-out) infinite;
}
@keyframes scrollHint {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 720px) {
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 1rem 1.4rem; }
  .hero-meta-block:nth-child(3) { grid-column: span 2; }
  .hero-scroll-hint { display: none; }
}

/* =============================================================
   8. SECTION SCAFFOLD
   ============================================================= */
.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 3rem;
}
.section-head-split {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.8vw, 5.4rem);
  line-height: 0.95;
  color: var(--bone);
  max-width: 22ch;
  letter-spacing: -0.02em;
}
.section-title em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 0.95;
}
.section-sub {
  max-width: 56ch;
  color: var(--bone-2);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
}

/* =============================================================
   9. MANIFIESTO
   ============================================================= */
.manifesto {
  padding: clamp(6rem, 14vh, 10rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
}
.manifesto::after {
  content: "";
  position: absolute;
  inset: auto 0 0 var(--gutter);
  height: 1px;
  width: calc(100% - var(--gutter) * 2);
  background: var(--line);
}
.manifesto-body {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.55rem, 3.6vw, 2.8rem);
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--bone);
  max-width: 30ch;
}
.manifesto-body em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  line-height: 0.95;
}
.manifesto-body .split-word {
  display: inline-block;
  transform: translateY(60%);
  opacity: 0;
}
.manifesto-body.is-revealed .split-word {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.9s var(--ease-out), opacity 0.6s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 28ms);
}
.manifesto-meta {
  align-self: flex-end;
}

/* =============================================================
   10. DISCIPLINES (estilos)
   ============================================================= */
.disciplines {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg);
  position: relative;
}
.discipline-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  list-style: none;
  border-top: 1px solid var(--line);
}
.discipline {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background-color 0.4s var(--ease-out);
}
.discipline:hover { background: rgba(241,235,216,0.02); }

.discipline-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
  padding: 1.5rem 0.4rem;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: padding 0.4s var(--ease-out);
}
.discipline-n {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--bone-3);
  min-width: 2.4ch;
}
.discipline-name {
  font-family: var(--display);
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  line-height: 0.95;
  color: var(--bone);
  transition: color 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.discipline:hover .discipline-name {
  color: var(--accent);
  transform: translateX(8px);
}
.discipline-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-4);
}
.discipline-icon {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--bone-3);
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  transition: transform 0.5s var(--ease-out), background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.discipline.is-open .discipline-icon {
  transform: rotate(135deg);
  background: var(--accent);
  color: var(--bone);
  border-color: var(--accent);
}

.discipline-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-out);
}
.discipline.is-open .discipline-panel {
  max-height: 220px;
}
.discipline-panel p {
  padding: 0 1.5rem 1.8rem 4rem;
  font-size: clamp(0.85rem, 1vw, 1.02rem);
  color: var(--bone-2);
  white-space: nowrap;        /* una sola línea en desktop */
}

@media (max-width: 700px) {
  /* Solo en móvil real dejamos que la descripción fluya en varias líneas */
  .discipline-panel p { white-space: normal; max-width: 70ch; }
}
@media (max-width: 720px) {
  .discipline-row {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }
  .discipline-sub { display: none; }
  .discipline-panel p { padding: 0 0 1.4rem 4rem; }
}

.discipline-row-static {
  cursor: pointer;
  text-decoration: none;
}
.discipline-row-static:hover .discipline-name {
  color: var(--accent);
}
.discipline-extra .discipline-row-static .discipline-n {
  color: var(--accent);
}
.discipline-link {
  color: var(--accent);
  transition: color 0.3s var(--ease-out);
}
.discipline-link:hover { color: var(--bone); }

/* =============================================================
   11a. STATS BAND (prueba / números bajo hero)
   ============================================================= */
.stats-band {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  padding: clamp(2.4rem, 5vh, 3.6rem) 0;
}
.stats-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 2rem;
}
@media (min-width: 720px) {
  .stats-list { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15em 0.3em;
  padding-left: 1.2rem;
  border-left: 1px solid var(--line-2);
}
.stat-prefix {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: var(--accent);
  line-height: 0.9;
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  color: var(--bone);
  line-height: 0.9;
  letter-spacing: -0.01em;
}
.stat-suffix-star {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--accent);
  margin-left: -0.1em;
}
.stat-cap {
  flex-basis: 100%;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* =============================================================
   11b. POR QUÉ COMPTON — Bento asimétrico urbano
   ============================================================= */
.why {
  padding: clamp(4rem, 9vh, 6.5rem) 0 clamp(5rem, 11vh, 8rem);
  position: relative;
}
.why-head {
  max-width: var(--max);
  margin: 0 auto clamp(1.8rem, 3vh, 2.8rem);
  padding: 0 var(--gutter);
}
.why-title-main {
  font-family: "Big Shoulders Display", "Archivo Black", sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5.4vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.012em;
  color: var(--bone);
  text-transform: uppercase;
  margin-top: 0.6rem;
  max-width: 22ch;
}
.why-title-main em {
  font: inherit;
  font-style: normal;
  color: var(--accent);
}

/* Bento: 6 cells in asymmetric grid */
.why-bento {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
@media (min-width: 720px) {
  .why-bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 0.8rem;
  }
}

/* Each cell */
.why-cell {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 1.3rem 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: transform 0.45s var(--ease-out),
              border-color 0.4s var(--ease-out),
              background-color 0.4s var(--ease-out);
  overflow: hidden;
  isolation: isolate;
}
.why-cell:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.why-cell-n {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--accent);
  position: relative;
  z-index: 2;
}
.why-cell-title {
  font-family: "Big Shoulders Display", "Archivo Black", sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  line-height: 0.95;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 2;
}
.why-cell-title em {
  font: inherit;
  font-style: normal;
  color: var(--accent);
}
.why-cell-body {
  color: var(--bone-2);
  font-size: 0.9rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* Cell placement (desktop bento) */
@media (min-width: 720px) {
  .why-cell-hero    { grid-column: span 3; grid-row: span 2; }
  .why-cell-num     { grid-column: span 3; }
  .why-cell:nth-child(3) { grid-column: span 3; }
  .why-cell-outline { grid-column: span 2; grid-row: span 1; }
  .why-cell:nth-child(4) { grid-column: span 2; }
  .why-cell:nth-child(6) { grid-column: span 2; }
}

/* Hero card — fondo amarillo, texto negro, número gigante */
.why-cell-hero {
  background: var(--accent);
  border-color: var(--accent);
  padding: 1.8rem 1.6rem 1.4rem;
  justify-content: flex-end;
}
.why-cell-hero .why-cell-n,
.why-cell-hero .why-cell-title,
.why-cell-hero .why-cell-body { color: var(--bg); }
.why-cell-hero .why-cell-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.95;
}
.why-cell-hero .why-cell-title em { color: var(--bg); text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 0.05em; }
.why-cell-hero .why-cell-body { font-size: 0.96rem; max-width: 38ch; }
.why-cell-hero:hover { border-color: var(--bg); transform: translateY(-3px); }
.why-cell-mark {
  position: absolute;
  top: 1.1rem; right: 1.2rem;
  font-size: 1.4rem;
  color: var(--bg);
  z-index: 2;
}
.why-cell-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(0,0,0,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* "Num" card — número grandote de fondo */
.why-cell-num {
  position: relative;
}
.why-cell-num::before {
  content: "02";
  position: absolute;
  right: -0.15em;
  bottom: -0.3em;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  font-size: clamp(7rem, 14vw, 13rem);
  line-height: 1;
  color: rgba(245, 197, 24, 0.08);
  letter-spacing: -0.03em;
  pointer-events: none;
  z-index: 1;
}

/* Outline card — solo borde amarillo */
.why-cell-outline {
  background: transparent;
  border: 1px solid var(--accent);
}
.why-cell-outline:hover { background: rgba(245, 197, 24, 0.06); }
.why-cell-outline .why-cell-title { color: var(--accent); }


/* =============================================================
   11c. VALORES (legacy — no rendered)
   ============================================================= */
.values {
  padding: clamp(2.5rem, 6vh, 4rem) 0;
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.values-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 720px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
.value {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1.4rem;
  border-left: 1px solid var(--line-2);
  position: relative;
  transition: background-color 0.4s var(--ease-out);
}
.value:first-child { border-left-color: transparent; }
@media (max-width: 719px) {
  .value {
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .value:first-child { border-top: none; }
}
.value:hover { background: rgba(241,235,216,0.02); }
.value-n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.value-name {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.95;
  color: var(--bone);
  letter-spacing: 0.01em;
}
.value-body {
  color: var(--bone-2);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 35ch;
}

/* =============================================================
   11c. SERVICIOS
   ============================================================= */
.services {
  padding: clamp(5rem, 12vh, 9rem) 0;
}
.services-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  perspective: 1200px;
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease-out), background-color 0.4s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  min-height: 280px;
}
.service-card:hover {
  border-color: var(--accent);
  background: var(--bg-3);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.5s var(--ease-out);
}
.service-card:hover::before { width: 100%; }
.service-n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.service-letter {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  font-family: var(--brand);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
  letter-spacing: 0;
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.service-card:hover .service-letter {
  background: var(--accent);
  color: var(--bg);
  transform: rotate(-8deg) scale(1.05);
}
.service-title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 0.95;
  color: var(--bone);
  letter-spacing: 0.01em;
}
.service-body {
  color: var(--bone-2);
  font-size: 0.96rem;
  line-height: 1.55;
  flex: 1;
}
.service-link {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.6rem;
  position: relative;
  padding-bottom: 0.2rem;
}
.service-link::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover .service-link::after,
.service-link:hover::after { transform: scaleX(1); }

/* =============================================================
   11. STATS (kept for legacy; not rendered)
   ============================================================= */
.stats {
  padding: clamp(3rem, 8vh, 6rem) 0;
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.stats-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 0;
}
@media (min-width: 720px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-right: 1rem;
  border-left: 1px solid var(--line-2);
  padding-left: 1.2rem;
  position: relative;
}
.stat-top {
  display: inline-flex;
  align-items: baseline;
  gap: 0.05em;
  line-height: 0.9;
}
.stat-value {
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: 0.9;
  color: var(--bone);
}
.stat-suffix {
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--accent);
  line-height: 0.9;
}
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin-top: 0.3rem;
}

/* =============================================================
   11d. YELLOW BAND — "EN MOVIMIENTO" (hype-tattoo inspired)
   ============================================================= */
.band {
  position: relative;
  background: var(--accent);
  color: var(--bg);
  isolation: isolate;
  overflow: hidden;
  padding: 0;
}
.band-arrow {
  display: none;
}
.band-arrow path {
  fill: none;
  stroke: var(--bg);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.band-arrow path:first-child {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawArrow 2.4s var(--ease-out) forwards;
  animation-play-state: paused;
}
.band-arrow path:last-child {
  opacity: 0;
  animation: showHead 0.4s var(--ease-out) 2.2s forwards;
  animation-play-state: paused;
}
.band.is-in-view .band-arrow path { animation-play-state: running; }
@keyframes drawArrow { to { stroke-dashoffset: 0; } }
@keyframes showHead  { to { opacity: 1; } }

.band-strip {
  position: relative;
  z-index: 2;
  padding: clamp(1rem, 2.2vh, 1.6rem) 0 clamp(0.9rem, 2vh, 1.4rem);
  overflow: hidden;
}
.band-track {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--bg);
  text-transform: uppercase;
  animation: bandRoll 32s linear infinite;
  padding-left: 1.8rem;
}
@keyframes bandRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.band-item {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
}
.band-mark {
  font-size: 0.55em;
  color: var(--bg);
  transform: rotate(0);
  display: inline-block;
}
.band-text { display: inline-block; }
.band-item:nth-child(4n + 2) .band-text,
.band-item:nth-child(4n) .band-text {
  font-family: var(--brand);
  font-weight: 600;
  font-style: italic;
  font-size: 0.7em;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--bg);
}

.band-photo {
  display: none;
}
.band-photo-OFF {
  position: relative;
  z-index: 1;
  height: clamp(160px, 28vh, 280px);
  overflow: hidden;
}
.band-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.1) brightness(0.8);
  transition: transform 1.4s var(--ease-out);
}
.band-photo:hover img { transform: scale(1.04); }
.band-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245,197,24,0.55) 0%, transparent 55%);
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: multiply;
}

@media (max-width: 720px) {
  .band-arrow { top: -80px; }
}

/* =============================================================
   12. WORKS — Carrusel horizontal
   ============================================================= */
.works {
  padding: clamp(5rem, 12vh, 9rem) 0;
  overflow-x: clip;
  overflow-y: visible;
}
.works-carousel {
  position: relative;
  max-width: 100%;
}
.works-viewport {
  position: relative;
  overflow: visible;
  padding: 3rem 0 4rem;
  perspective: 800px;
  perspective-origin: center center;
  transform-style: preserve-3d;
}
.works-track {
  display: flex;
  gap: 1rem;
  /* Padding lateral = (ancho del carrusel - ancho del slide) / 2.
     Usamos 100% (no 100vw) para que el centrado funcione dentro de
     contenedores estrechos (panel del artista, etc.). */
  padding: 0 calc((100% - clamp(220px, 24vw, 360px)) / 2);
  will-change: transform;
  transform-style: preserve-3d;
  transform: translate3d(0, 0, 0);
}

.work-slide {
  position: relative;
  flex: 0 0 auto;
  width: clamp(220px, 24vw, 360px);
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  overflow: hidden;
  display: block;
  isolation: isolate;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: box-shadow 0.4s var(--ease-out);
  will-change: transform;
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  cursor: pointer;
}
.work-slide.is-active {
  box-shadow: 0 30px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(245,197,24,0.4);
}
.work-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.05);
  transition: transform 0.9s var(--ease-out), filter 0.6s var(--ease-out);
}
.work-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,9,7,0.78) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.work-slide:hover img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.12) saturate(1.1);
}
.work-slide-meta {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease-out), transform 0.4s var(--ease-out);
  transform: translateY(4px);
}
.work-slide:hover .work-slide-meta {
  opacity: 1;
  transform: translateY(0);
}
.work-slide-meta .kicker { color: var(--bone); }

/* Arrows */
.works-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px; height: 56px;
  background: rgba(10, 9, 7, 0.78);
  border: 1px solid var(--line-2);
  color: var(--bone);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.works-arrow:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}
.works-arrow svg {
  width: 22px; height: 22px;
}
.works-arrow-prev { left: 1rem; }
.works-arrow-next { right: 1rem; }

@media (max-width: 720px) {
  /* Móvil: carrusel nativo con scroll-snap, sin 3D ni rAF.
     Evita el cuelgue ("la página ha generado problemas repetidamente")
     y centra bien cada foto, especialmente la primera. */
  .works-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    perspective: none;
    transform-style: flat;
    scrollbar-width: none;
    padding: 1.4rem 0 1.8rem;
  }
  .works-viewport::-webkit-scrollbar { display: none; }

  .works-track {
    transform: none !important;
    transition: none !important;
    /* hueco lateral = (ancho real del viewport - ancho slide) / 2 → centrado.
       Usamos 100% (no 100vw) porque el carrusel vive dentro del panel del
       artista, más estrecho que la pantalla; así no queda scroll muerto. */
    padding: 0 calc((100% - clamp(200px, 62vw, 280px)) / 2);
    gap: 14px;
  }

  .work-slide {
    width: clamp(200px, 62vw, 280px);
    scroll-snap-align: center;
    transform: none !important;
    opacity: 1 !important;
  }

  .works-arrow { width: 44px; height: 44px; }
  .works-arrow-prev { left: 0.6rem; }
  .works-arrow-next { right: 0.6rem; }
}

/* =============================================================
   12b. LIGHTBOX (work slide display)
   ============================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 3, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--gutter);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  transform: scale(0.94);
  transition: transform 0.5s var(--ease-out);
  border-radius: 2px;
}
.lightbox.is-open .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  width: 48px; height: 48px;
  border: 1px solid var(--line-2);
  background: rgba(10,9,7,0.6);
  color: var(--bone);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.lightbox-close:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.lightbox-close svg {
  width: 22px; height: 22px;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(10,9,7,0.6);
  border: 1px solid var(--line-2);
  color: var(--bone);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.lightbox-nav:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-prev { left: 1.4rem; }
.lightbox-next { right: 1.4rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--bone-3);
}
@media (max-width: 720px) {
  .lightbox { padding: 5rem 1rem; }
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-prev { left: 0.6rem; }
  .lightbox-next { right: 0.6rem; }
}

/* Legacy works-grid (no longer rendered) */
.works {
  padding: clamp(5rem, 12vh, 9rem) 0;
}
.works-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  perspective: 1200px;
}
@media (max-width: 1024px) {
  .works-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .works-grid { grid-template-columns: repeat(2, 1fr); }
}
.work {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-card);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}
.work-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1 / 1;
}
@media (max-width: 720px) {
  .work-large { grid-column: span 2; aspect-ratio: 1 / 1; }
  .work-large:nth-of-type(5) { grid-column: span 2; }
}
.work img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.6s var(--ease-out);
  filter: grayscale(0.25) contrast(1.08);
}
.work::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,9,7,0.92) 100%);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.work:hover img {
  transform: scale(1.07);
  filter: grayscale(0) contrast(1.18) saturate(1.2);
}
.work-meta {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0.9;
  transition: transform 0.45s var(--ease-out), opacity 0.4s var(--ease-out);
}
.work:hover .work-meta {
  transform: translateY(0);
  opacity: 1;
}
.work-title {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  letter-spacing: 0.02em;
  color: var(--bone);
}
.works-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 3rem auto 0;
  padding: 1rem 1.6rem;
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  width: max-content;
  max-width: calc(100% - var(--gutter) * 2);
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.works-cta:hover {
  background: var(--bone);
  color: var(--bg);
  border-color: var(--bone);
}

/* =============================================================
   12b. TEAM — Acordeón premium estilo galería de arte
   ============================================================= */
.team {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.team-stack {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* ----- Artist card ----- */
.artist {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    border-color 0.5s var(--ease-out),
    background-color 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}
.artist::before {
  /* Línea amarilla vertical que sube cuando el artista está abierto */
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s var(--ease-out);
}
.artist.is-open::before { transform: scaleY(1); }
.artist:hover {
  border-color: rgba(245, 197, 24, 0.35);
  background: rgba(241, 235, 216, 0.012);
}
.artist.is-open {
  border-color: var(--accent);
  background: rgba(241, 235, 216, 0.018);
}

/* ----- Header — foto GRANDE a la izquierda + info a la derecha ----- */
.artist-header {
  display: grid;
  grid-template-columns: clamp(180px, 26vw, 320px) 1fr;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-out);
}
.artist.is-open .artist-header {
  border-bottom-color: var(--line);
}
.artist-info {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}
.artist-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg);
}
.artist-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Color desde el inicio, sin grayscale */
  filter: contrast(1.05) saturate(1.05);
  transition: transform 0.9s var(--ease-out), filter 0.5s var(--ease-out);
}
.artist:hover .artist-photo img,
.artist.is-open .artist-photo img {
  transform: scale(1.04);
  filter: contrast(1.1) saturate(1.1);
}
.artist-info {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
.artist-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.artist-name {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);  /* GRANDE — protagonista */
  font-weight: 800;
  line-height: 0.95;
  color: var(--bone);
  letter-spacing: -0.015em;
  margin: 0;
}
.artist-style {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241, 235, 216, 0.7);
  margin: 0.2rem 0 0.4rem;
}
.artist-bio {
  font-family: var(--text);
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  color: rgba(241, 235, 216, 0.6);
  line-height: 1.5;
  max-width: 56ch;
  margin: 0;
}

/* ----- Botón "Ver trabajos" ----- */
.artist-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
  padding: 0.95rem 1.6rem;
  background: transparent;
  border: 1px solid var(--bone);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  align-self: flex-start;
  transition:
    background-color 0.35s var(--ease-out),
    color 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}
.artist-trigger:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}
.artist-trigger-arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
.artist-trigger:hover .artist-trigger-arrow { transform: translateX(4px); }
.artist.is-open .artist-trigger {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.artist.is-open .artist-trigger-label::after {
  content: " ↑";
}

/* ----- Panel desplegable (CSS grid trick para height auto) ----- */
.artist-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.artist.is-open .artist-panel {
  grid-template-rows: 1fr;
}
.artist-panel > .artist-panel-inner {
  overflow: hidden;
  min-height: 0;
}
.artist-panel-inner {
  padding: 0.3rem clamp(1.4rem, 2.6vw, 2.4rem) clamp(1.8rem, 3vw, 2.6rem);
}

/* ----- Galería de trabajos (cascada con stagger) ----- */
.artist-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.7rem;
  margin: 0 0 1.8rem;
}
@media (min-width: 960px) {
  .artist-gallery { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}
.artist-work {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg);
  opacity: 0;
  transform: translateY(36px) scale(0.94);
  filter: blur(10px);
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * 85ms + 200ms),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * 85ms + 200ms),
    filter 0.95s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * 85ms + 200ms);
}
.artist.is-open .artist-work {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.artist-work img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.04);
  transition: transform 0.9s var(--ease-out), filter 0.5s var(--ease-out);
}
.artist-work:hover img {
  transform: scale(1.06);
  filter: contrast(1.12) saturate(1.1);
}

/* ----- CTA del panel (reserva + IG) ----- */
.artist-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.artist-book {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.6rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}
.artist-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(245, 197, 24, 0.28);
}
.artist-book-arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
.artist-book:hover .artist-book-arrow { transform: translateX(4px); }
.artist-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241, 235, 216, 0.6);
  transition: color 0.3s var(--ease-out);
}
.artist-ig:hover { color: var(--accent); }

/* ----- Trabajos (DENTRO del panel desplegable, no fuera) ----- */
.artist-works,
.artist-works-scroll {
  /* Ya no se usa la franja externa — el grid vive dentro de .artist-panel */
  display: contents;
}
.artist-work {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg);
  border: 0;
  padding: 0;
  margin: 0;
  display: block;
  cursor: pointer;
}
.artist-work img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.04);
  transition: transform 0.7s var(--ease-out), filter 0.5s var(--ease-out);
}
.artist-work:hover img,
.artist-work:focus-visible img {
  transform: scale(1.05);
  filter: contrast(1.12) saturate(1.12);
}
.artist-work::after {
  content: "+";
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.55);
  color: var(--accent);
  font-size: 16px;
  font-family: var(--mono);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
}
.artist-work:hover::after { opacity: 1; }


/* ----- Móvil ----- */
@media (max-width: 720px) {
  .artist-header {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.2rem;
  }
  .artist-photo { aspect-ratio: 3 / 4; }
  .artist-name { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .artist-bio { font-size: 0.95rem; max-width: none; }
  .artist-panel-inner { padding: 0 1.2rem 1.6rem; }
  .artist-book { padding: 0.9rem 1.3rem; font-size: 11px; }
}

/* =============================================================
   12c. PRICING (tramos de precio)
   ============================================================= */
.pricing {
  padding: clamp(5rem, 12vh, 9rem) 0;
}
.pricing-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  perspective: 1200px;
}
@media (min-width: 720px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.price-tier {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease-out), background-color 0.4s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}
.price-tier:hover {
  border-color: var(--accent);
  background: var(--bg-3);
}
.price-tier-feat {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245,197,24,0.06) 0%, transparent 100%);
}
.price-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--accent);
  border-radius: 0;
}
.price-tier-feat .price-tag {
  background: var(--accent);
  color: var(--bg);
}
.price-name {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1;
  color: var(--bone);
}
.price-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-top: 0.3rem;
}
.price-from {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin-right: 0.3rem;
}
.price-value {
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  color: var(--accent);
  line-height: 0.9;
}
.price-cur {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--accent);
  line-height: 0.9;
}
.price-unit {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin-left: 0.4rem;
}
.price-note {
  color: var(--bone-2);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* =============================================================
   13. ARTISTS (legacy)
   ============================================================= */
.artists {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.artist-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  perspective: 1200px;
}
@media (min-width: 720px) {
  .artist-grid { grid-template-columns: repeat(3, 1fr); }
}
.artist-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}
.artist-card:hover {
  border-color: var(--accent);
}
.artist-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.artist-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.6s var(--ease-out);
  filter: grayscale(0.4) contrast(1.1);
}
.artist-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.18);
}
.artist-tag {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 0.3rem 0.6rem;
  background: var(--accent);
  color: var(--bone);
}
.artist-body {
  padding: 1.5rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.artist-name {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--bone);
  line-height: 1;
}
.artist-role {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-3);
}
.artist-bio {
  color: var(--bone-2);
  font-size: 0.95rem;
  line-height: 1.55;
}
.artist-ig {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-top: 0.4rem;
  align-self: flex-start;
  position: relative;
}
.artist-ig::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.artist-ig:hover::after { transform: scaleX(1); }

/* =============================================================
   14. COVER-UP
   ============================================================= */
.coverup {
  padding: clamp(5rem, 12vh, 9rem) var(--gutter);
}
.coverup-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 4rem;
  align-items: center;
}
@media (min-width: 960px) {
  .coverup-grid { grid-template-columns: 1.05fr 1fr; }
}
.coverup-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}
.coverup-body {
  color: var(--bone-2);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 50ch;
  line-height: 1.6;
}
.coverup-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.coverup-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.1);
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.coverup-photo:hover img { transform: scale(1.08); }
.coverup-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-2);
  z-index: 2;
  pointer-events: none;
}
.coverup-photo::after {
  content: "COVER-UP";
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.6rem;
  background: var(--accent);
  color: var(--bone);
  z-index: 2;
}

/* =============================================================
   15. PROCESS
   ============================================================= */
.process {
  padding: clamp(5rem, 12vh, 9rem) 0;
}
.process-steps {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem;
  padding: 2rem 0.4rem;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: background-color 0.4s var(--ease-out);
}
.process-step:hover { background: rgba(241,235,216,0.02); }
.process-n {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--accent);
  line-height: 0.9;
  min-width: 3.5ch;
}
.process-body h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--bone);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.process-body p {
  color: var(--bone-2);
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.55;
}

/* =============================================================
   16. RESERVA
   ============================================================= */
.reserve {
  position: relative;
  padding: clamp(5rem, 14vh, 10rem) var(--gutter);
  overflow: hidden;
  isolation: isolate;
}
.reserve-bg {
  position: absolute; inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,197,24,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255,216,77,0.15) 0%, transparent 65%),
    var(--bg);
}
.reserve-grain {
  position: absolute; inset: 0;
  z-index: -1;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.reserve-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: center;
  align-items: center;
}
.reserve-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.6vw, 4.4rem);
  color: var(--bone);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: none;
}
.reserve-title em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  line-height: 0.92;
}
.reserve-title .split-char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.reserve-title.is-revealed .split-char {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.9s var(--ease-out), opacity 0.5s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 18ms);
}
.reserve-sub {
  color: var(--bone-2);
  max-width: 50ch;
  margin-bottom: 1.5rem;
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
}

/* ─── Qué pasa después: 4 chips numerados encima del form ─── */
.reserve-process {
  width: 100%;
  margin: 2.4rem 0 2rem;
  padding: 1.6rem 1.8rem;
  background: rgba(10, 9, 7, 0.35);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.reserve-process-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.2rem;
}
.reserve-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}
.reserve-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-right: 1rem;
}
/* Conector horizontal sutil entre pasos en desktop */
.reserve-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.85rem;
  right: 0.2rem;
  width: 0.6rem;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.reserve-step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.reserve-step-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.15;
  color: var(--bone);
  margin: 0.1rem 0 0;
}
.reserve-step-desc {
  font-family: var(--text);
  font-size: clamp(0.84rem, 1vw, 0.92rem);
  line-height: 1.45;
  color: rgba(241, 235, 216, 0.65);
  margin: 0;
}
@media (max-width: 900px) {
  .reserve-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .reserve-step:nth-child(2)::after { display: none; }
}
@media (max-width: 540px) {
  .reserve-steps { grid-template-columns: 1fr; }
  .reserve-step::after { display: none !important; }
}

.reserve-form {
  width: 100%;
  background: rgba(10,9,7,0.5);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-3);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(241,235,216,0.04);
  border: 1px solid var(--line-2);
  padding: 0.85rem 1rem;
  color: var(--bone);
  font-size: 0.95rem;
  border-radius: 0;
  transition: border-color 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--bone-4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(241,235,216,0.07);
}
.field-select select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--bone-2) 50%),
                    linear-gradient(135deg, var(--bone-2) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}
.field-select select option {
  background: var(--bg);
  color: var(--bone);
}
.field textarea { resize: vertical; min-height: 120px; }

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.form-or {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-3);
}
.form-or a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.btn-submit { min-width: 200px; justify-content: center; }
.btn-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--bone);
  border-radius: 50%;
  display: none;
  animation: spin 0.8s linear infinite;
}
.reserve-form.is-sending .btn-spinner { display: inline-block; }
.reserve-form.is-sending .btn-label,
.reserve-form.is-sending .btn-arrow { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  position: absolute;
  inset: 0;
  background: rgba(10,9,7,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  text-align: center;
  padding: 2rem;
}
.form-success[hidden] { display: none; }
.form-success svg {
  width: 64px; height: 64px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawCheck 1.2s var(--ease-out) forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.form-success p {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--bone);
}

/* =============================================================
   16b. RESERVE BOCETO (CTAs grandes antes del form)
   ============================================================= */
.reserve-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0.8rem 0 1.4rem;
}
.reserve-or {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-3);
}
.btn-xl {
  padding: 1.2rem 2rem;
  font-size: 13px;
}

/* =============================================================
   16c. REVIEWS (reseñas)
   ============================================================= */
.reviews {
  padding: clamp(5rem, 12vh, 9rem) 0;
}
.reviews-grid {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media (min-width: 720px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color 0.4s var(--ease-out), background-color 0.4s var(--ease-out);
}
.review-card:hover {
  border-color: var(--accent);
  background: var(--bg-3);
}
.review-stars {
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.review-text {
  color: var(--bone);
  font-size: 0.98rem;
  line-height: 1.55;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  flex: 1;
}
.review-foot {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.4rem;
}
.review-author {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--bone);
  letter-spacing: 0.01em;
}
.review-source {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-3);
}
.reviews-cta {
  display: block;
  width: max-content;
  max-width: calc(100% - var(--gutter) * 2);
  margin: 0 auto;
  padding: 1rem 1.6rem;
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  text-align: center;
}
.reviews-cta:hover {
  background: var(--bone);
  color: var(--bg);
  border-color: var(--bone);
}

/* =============================================================
   17. VISIT
   ============================================================= */
.visit {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.visit-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 3rem;
}
@media (min-width: 960px) {
  .visit-grid { grid-template-columns: 1fr 1.1fr; }
}
.visit-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.visit-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.visit-block p {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  color: var(--bone);
  letter-spacing: 0.01em;
}
.visit-block a {
  color: var(--bone);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.visit-block a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.visit-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent) !important;
  margin-top: 0.4rem;
  align-self: flex-start;
}

/* --- Bloque horario --- */
.visit-block--hours .visit-hours {
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.visit-hours li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--bone);
  letter-spacing: 0.01em;
  padding-bottom: 0.45rem;
  border-bottom: 1px dashed rgba(241,235,216,0.1);
}
.visit-hours li:last-child { border-bottom: 0; padding-bottom: 0; }
.visit-hours-day {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241,235,216,0.55);
  flex-shrink: 0;
}
.visit-hours-time {
  color: var(--bone);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.visit-hours li.is-closed .visit-hours-time {
  color: rgba(241,235,216,0.4);
  font-style: italic;
}

.visit-photo {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--bg-card);
}
.visit-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.1);
  transform: scale(1.02);
  transition: transform 1.4s var(--ease-out);
}
.visit-photo:hover img { transform: scale(1.08); }
.visit-photo-tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 0.4rem 0.7rem;
  background: var(--bone);
  color: var(--bg);
}

/* =============================================================
   17b. FAQ — acordeón de objeciones (layout editorial 2-col)
   ============================================================= */
.faq {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--bg);
  border-block: 1px solid var(--line);
}
.faq-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media (min-width: 960px) {
  .faq-grid {
    grid-template-columns: minmax(280px, 0.85fr) 1.5fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
  }
  .faq-head {
    position: sticky;
    top: 6rem;
  }
}

/* ----- Cabecera de la sección (columna izquierda) ----- */
.faq-head .kicker {
  display: inline-block;
  margin-bottom: 1.2rem;
}
.faq-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 0.95;
  color: var(--bone);
  letter-spacing: -0.018em;
  margin: 0 0 1.2rem;
}
.faq-title em {
  font-style: normal;
  color: var(--accent);
}
.faq-sub {
  font-family: var(--text);
  color: rgba(241, 235, 216, 0.7);
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.55;
  max-width: 36ch;
  margin: 0 0 1.6rem;
}
.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  transition:
    background-color 0.35s var(--ease-out),
    color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}
.faq-cta:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ----- Lista de preguntas (columna derecha) ----- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition:
    border-color 0.4s var(--ease-out),
    background-color 0.4s var(--ease-out);
}
.faq-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-out);
}
.faq-item.is-open::before { transform: scaleY(1); }
.faq-item:hover { border-color: rgba(245, 197, 24, 0.4); }
.faq-item.is-open {
  border-color: var(--accent);
  background: rgba(241, 235, 216, 0.012);
}
.faq-q {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 1.8rem;
  background: none;
  border: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.faq-q-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  letter-spacing: -0.01em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.faq-q-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  line-height: 1.25;
  color: var(--bone);
}
.faq-q-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(241, 235, 216, 0.4);
  border-radius: 50%;
  color: rgba(241, 235, 216, 0.6);
  transition:
    color 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.faq-item:hover .faq-q-icon,
.faq-item.is-open .faq-q-icon {
  color: var(--accent);
  border-color: var(--accent);
}
.faq-item.is-open .faq-q-icon {
  transform: rotate(45deg);  /* + → x */
}

/* Panel desplegable: max-height + opacity (cerrado por defecto, bulletproof) */
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s var(--ease-out);
}
.faq-item.is-open .faq-a {
  max-height: 800px;   /* suficiente para cualquier respuesta */
  opacity: 1;
}
.faq-a-inner {
  padding: 0 1.6rem 1.5rem;
}
.faq-a-inner p {
  font-family: var(--text);
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.65;
  color: rgba(241, 235, 216, 0.75);
  margin: 0;
  max-width: 70ch;
}
.faq-a-inner p strong {
  color: var(--bone);
  font-weight: 600;
}

@media (max-width: 720px) {
  .faq-q {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num icon"
      "text text";
    gap: 0.6rem 1rem;
    padding: 1.1rem 1.2rem;
  }
  .faq-q-num  { grid-area: num; }
  .faq-q-text { grid-area: text; }
  .faq-q-icon { grid-area: icon; justify-self: end; }
  .faq-a-inner { padding: 0 1.2rem 1.3rem; }
}

/* =============================================================
   18. FOOTER
   ============================================================= */
.foot {
  padding: clamp(4rem, 10vh, 7rem) var(--gutter) 2rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.foot-top {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.foot-logo.brand-lockup .brand-compton {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
}
.foot-logo.brand-lockup .brand-tattoo {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  margin-top: 0.3em;
}
.foot-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-3);
}
.foot-grid {
  max-width: var(--max);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .foot-grid { grid-template-columns: repeat(4, 1fr); }
}
.foot-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.foot-col .kicker { margin-bottom: 0.4rem; }
.foot-hours {
  margin-top: 0.6rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241,235,216,0.55);
  line-height: 1.7;
}
.foot-col a {
  color: var(--bone-2);
  font-size: 0.95rem;
  transition: color 0.3s var(--ease-out);
}
.foot-col a:hover { color: var(--accent); }
.foot-col p {
  color: var(--bone-2);
  font-size: 0.95rem;
  line-height: 1.55;
}

.foot-marquee {
  margin: 0 calc(var(--gutter) * -1) 2.5rem;
  overflow: hidden;
  padding: 0.6rem 0;
  border-block: 1px solid var(--line);
  pointer-events: none;
}

.foot-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-4);
}

/* =============================================================
   19. REDUCED MOTION (only intrusive)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .splash-bar-fill { animation: none; transform: translateX(0); }
  .hero-photo { animation: none; }
  .marquee-track { animation: none; }
  .hero-scroll-line::after { animation: none; }
  .kicker .dot { animation: none; }
}

/* =============================================================
   SUBPÁGINAS DE CONTENIDO (SEO local)
   ============================================================= */
.subpage { background: var(--bg); }
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(7rem, 16vh, 11rem) var(--gutter) clamp(2.5rem, 6vh, 4rem);
  position: relative;
}
.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--bone-3); transition: color 0.3s var(--ease-out); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }
.page-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--bone);
  text-transform: uppercase;
  margin: 0 0 1.3rem;
  max-width: 18ch;
  overflow-wrap: break-word;
  hyphens: none;
}
@media (max-width: 480px) {
  .page-title { font-size: clamp(1.85rem, 8vw, 2.7rem); }
}
.page-title em { font-style: normal; color: var(--accent); }
.page-lead {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--bone-2);
  max-width: 62ch;
}
.page-lead strong { color: var(--bone); font-weight: 600; }

.page-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.2rem, 5vh, 3.6rem) var(--gutter);
}
.page-section h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: 0 0 1.2rem;
}
.page-section h2 em { font-style: normal; color: var(--accent); }
.prose h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--bone);
  margin: 2rem 0 0.55rem;
}
.prose p, .prose li {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--bone-2);
  max-width: 70ch;
  margin: 0 0 1.05rem;
}
.prose strong { color: var(--bone); font-weight: 600; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose ul { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.prose ul li {
  position: relative;
  padding-left: 1.5rem;
}
.prose ul li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  margin-top: 1.6rem;
}
.page-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.7rem 1.6rem;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.page-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.page-card .kicker { color: var(--accent); margin-bottom: 0.7rem; }
.page-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--bone);
  margin: 0 0 0.5rem;
}
.page-card p { font-family: var(--sans); color: var(--bone-2); line-height: 1.6; font-size: 0.98rem; margin: 0; }

.page-cta {
  max-width: var(--max);
  margin: clamp(1.5rem, 4vh, 3rem) auto clamp(3rem, 8vh, 6rem);
  padding: clamp(2.6rem, 7vh, 4.5rem) var(--gutter);
  text-align: center;
  background:
    radial-gradient(120% 130% at 50% 0%, rgba(245,197,24,0.10), transparent 60%),
    var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page-cta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--bone);
  letter-spacing: -0.02em;
  margin: 0 0 1.4rem;
}
.page-cta h2 em { font-style: normal; color: var(--accent); }
.page-cta .page-cta-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.page-related {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(3rem, 7vh, 5rem);
}
.page-related .kicker { color: var(--accent); margin-bottom: 1rem; }
.page-related-links { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.page-related-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--bone-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.page-related-links a:hover { color: var(--accent); border-color: var(--accent); }
