/* ========== La Chismosa — Editorial Luxury ========== */

@font-face {
  font-family: "Golden";
  src: url("assets/fonts/golden/Golden.woff") format("woff"),
       url("assets/fonts/golden_otf/Golden.ttf") format("truetype"),
       url("assets/fonts/golden_otf/Golden.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colores principales — Brand Manual 2025 */
  --ivory: #FFFFFF;
  --ivory-warm: #EBC3CC;     /* Chewing Gum */
  --ivory-deep: #D5D1CA;     /* Trama */
  --ink: #2C2C2C;            /* Vértice */
  --ink-soft: #3D3838;
  --ink-mute: #7A7270;
  --line: rgba(44, 44, 44, 0.14);
  --line-soft: rgba(44, 44, 44, 0.08);
  --accent: #DE9DAC;         /* Pink Cosmos */
  --accent-deep: #B87A8C;
  --crimson: #6B1F2C;        /* Burgundy */
  --highlight: #DE9DAC;      /* Pink Cosmos */
  --link-hover: #6B1F2C;     /* Burgundy */
  /* Tipografía — Golden (comercial, fallback Cormorant) + Libre Franklin + Unna */
  --serif: "Golden", "Cormorant Garamond", Georgia, serif;
  --sans: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* "Detalles" (eyebrows, kickers, captions, números, badges, CTAs) — Golden por Brand Manual.
     Antes JetBrains Mono; el manual solo contempla Golden + Libre Franklin. */
  --mono: var(--serif);
  --signature: "Unna", "Cormorant Garamond", Georgia, serif;
  --gutter: clamp(20px, 4vw, 72px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans); /* textos generales = Libre Franklin (Brand Manual) */
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: none;
}

a { color: inherit; text-decoration: none; transition: color .25s ease; cursor: none; }
a:hover { color: var(--link-hover); }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; padding: 0; transition: color .25s ease; }
button:hover { color: var(--link-hover); }

::selection { background: var(--ink); color: var(--ivory); }

/* paper grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image:
    radial-gradient(rgba(44,44,44,.035) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: .8;
}

/* ---- Intro / persiana ---- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  pointer-events: all;
}
.intro-strip {
  flex: 1;
  position: relative;
  background: var(--ink);
  transform: scaleY(1);
  transition: transform 0.68s cubic-bezier(.7, 0, .25, 1) var(--d, 0s);
}
.intro-strip::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,.06);
}
.intro.opening .intro-strip { transform: scaleY(0); }
.intro-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  transition: opacity .35s ease;
}
.intro.opening .intro-mark { opacity: 0; }
.intro-mark-text {
  font-family: var(--signature);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 64px);
  color: rgba(255,255,255,.88);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
}
.intro-mark-text em { font-style: italic; color: var(--highlight); }


/* ---- custom cursor ---- */
.cursor-canvas {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(197,193,48,0.9);
  pointer-events: none;
  z-index: 10001;
  transform: translate(-999px,-999px);
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--ivory);
  transition: padding .4s ease, color .3s ease;
}
.nav.scrolled { padding-top: 14px; padding-bottom: 14px; }
/* Texto del menú según el fondo (detección por JS) */
.nav-invert { color: var(--ink); }
.nav-invert .nav-brand-logo { filter: brightness(0); }

/* Logo */
.nav-brand {
  display: flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand-logo {
  height: clamp(18px, 1.8vw, 26px);
  width: auto;
  display: block;
  transition: filter .3s ease;
}

/* Nav + lang agrupados a la derecha */
.nav-center {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 40px);
}

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  justify-content: center;
  list-style: none;
  margin: 0; padding: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 4px 2px;
  display: inline-block;
  overflow: hidden;
}
.nav-links a span {
  display: inline-block;
  transition: transform .4s cubic-bezier(.7,0,.3,1);
}
.nav-links a span + span {
  position: absolute; left: 0; top: 100%;
}
.nav-links a:hover span:first-child { transform: translateY(-100%); }
.nav-links a:hover span:last-child  { transform: translateY(-100%); }
.nav-links a:hover { color: var(--crimson); }
.nav-links a.active { color: var(--crimson); }

/* Tema claro: sin mix-blend (texto e hover en color real) — para páginas de fondo claro */
.nav--light {
  mix-blend-mode: normal;
  color: var(--ink);
}
.nav--light .nav-links a:hover,
.nav--light .nav-links a.active { color: var(--crimson); }

/* Nav fondo blanco sólido (Contacto) */
.nav--solid {
  mix-blend-mode: normal;
  color: var(--ink);
  background: var(--ivory);
}
.nav--solid .nav-links a:hover,
.nav--solid .nav-links a.active { color: var(--crimson); }
.nav-lang a:hover, .nav-lang button:hover { color: var(--link-hover); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: 2px;
  height: 1px;
  background: currentColor;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
/* responsive: ocultar nav-links en móvil */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-toggle button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  cursor: pointer;
  transition: opacity .25s ease;
}
.lang-toggle .on { opacity: 1; }
.lang-toggle .off { opacity: .45; }
.lang-toggle .off:hover { opacity: .8; }
.lang-toggle .sep { opacity: .35; }

/* ---- shared type ---- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  display: inline-block;
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -0.015em;
}
.display .it { font-style: italic; font-weight: 300; }

/* ---- section framing ---- */
section { position: relative; }
.section-pad {
  padding: clamp(90px, 14vh, 180px) var(--gutter);
}

/* ---- HERO / ENVELOPE ---- */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg .video-placeholder {
  position: absolute;
  inset: -5%;
  background: radial-gradient(ellipse at 30% 40%, #3a2d1c 0%, #1a1612 55%, #0c0a08 100%);
  transform: scale(1.08);
  transition: transform 2s ease;
  overflow: hidden;
}
.hero-bg .video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero.revealed .hero-bg .video-placeholder { transform: scale(1); }

/* vignette */
.hero-bg .vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%, transparent 30%, rgba(0,0,0,.55) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.35) 0%, transparent 20%, transparent 70%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}

/* Envelope */
.envelope-wrap {
  position: relative;
  width: min(640px, 82vw);
  aspect-ratio: 3 / 2;
  z-index: 3;
  perspective: 1400px;
  transition: opacity 1.2s ease 1s, transform 1.6s cubic-bezier(.6,.1,.2,1) 1s;
}
.hero.revealed .envelope-wrap {
  opacity: 0;
  transform: translateY(-12px) scale(0.94);
  pointer-events: none;
}

.envelope {
  position: absolute;
  inset: 0;
  background: var(--ivory);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,.6),
    0 10px 20px -5px rgba(0,0,0,.4),
    inset 0 0 0 1px rgba(44,44,44,.08);
  overflow: hidden;
}
.envelope::before {
  /* paper texture */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(44,44,44,.06) 1px, transparent 1px);
  background-size: 2.5px 2.5px;
  opacity: .6;
  pointer-events: none;
}
.envelope-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 48px;
  text-align: center;
}
.envelope-seal {
  position: absolute;
  left: 50%; top: 100%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #a8824a, var(--accent-deep) 60%, #2c1e0a 100%);
  box-shadow: 0 4px 10px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,255,255,.1);
  z-index: 6;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255,255,255,.9);
  font-size: 22px;
  pointer-events: none;
  transition: transform 1s cubic-bezier(.7,0,.3,1) .2s, opacity .6s ease 1.2s;
}
.hero.revealed .envelope-seal {
  transform: translate(-50%, 80px) scale(.6) rotate(25deg);
  opacity: 0;
}

.envelope-flap {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 60%;
  background: var(--ivory-deep);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  transition: transform 1.4s cubic-bezier(.6,.05,.2,1) .4s;
  z-index: 5;
  box-shadow: inset 0 -10px 20px -10px rgba(44,44,44,.2);
}
.envelope-flap::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: linear-gradient(175deg, rgba(44,44,44,.06), transparent 40%);
}
.hero.opening .envelope-flap,
.hero.revealed .envelope-flap {
  transform: rotateX(-180deg);
}

.envelope-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.envelope-tag .dot {
  display: inline-block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  margin: 0 10px;
  vertical-align: middle;
}
.envelope-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  margin: 22px 0 10px;
}
.envelope-addr {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-soft);
  font-style: italic;
}
.envelope-cta {
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  transition: background .3s, color .3s;
}
.envelope-cta:hover { background: var(--ink); color: var(--ivory); }
.envelope-cta .arrow {
  display: inline-block;
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
}
.envelope-cta .arrow::after {
  content: "";
  position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* stamp */
.envelope-stamp {
  position: absolute;
  top: 18px; right: 18px;
  width: 64px; height: 80px;
  background: var(--ivory-warm);
  border: 1px dashed rgba(44,44,44,.4);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 10px;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.1;
}
.envelope-stamp span {
  display: block;
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(138,107,58,.25) 0 2px, transparent 2px 5px),
    var(--accent);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-style: normal;
  font-family: var(--mono);
}

/* Hero content (after reveal) */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 140px var(--gutter) 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease 2.2s;
  z-index: 4;
}
.hero.revealed .hero-content { opacity: 1; pointer-events: auto; }

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.hero-top .eyebrow { color: rgba(255,255,255,.6); }
.hero-top .eyebrow::before { background: rgba(255,255,255,.5); }
.hero-who {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  text-align: right;
  max-width: 220px;
}

.hero-center {
  text-align: center;
  transform: translateY(-20px);
}
.hero-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 8.5vw, 138px);
  line-height: .92;
  letter-spacing: -0.02em;
}
.hero-headline .line {
  display: block;
  overflow: hidden;
}
.hero-headline .line span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 1s cubic-bezier(.6,.05,.2,1);
}
.hero.revealed .hero-headline .line span { transform: translateY(0); }
.hero.revealed .hero-headline .line:nth-child(2) span { transition-delay: 2.4s; }
.hero.revealed .hero-headline .line:nth-child(3) span { transition-delay: 2.55s; }
.hero.revealed .hero-headline .line:nth-child(4) span { transition-delay: 2.7s; }
.hero-headline .it { font-style: italic; color: var(--ivory-warm); }

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.hero-signature {
  font-family: var(--signature);
  font-style: italic;
  font-size: 20px;
  color: var(--ivory);
  text-transform: none;
  letter-spacing: 0;
}
.hero-signature small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.7), transparent);
  animation: scrollPulse 2.5s infinite ease-in-out;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.6); transform-origin: top; opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---- Envelope scene — image-based animation ---- */
.env-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.env-img {
  width: min(760px, 88vw);
  display: block;
}

/* CLOSED */
.env-closed-wrap {
  position: absolute;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.hero.opening .env-closed-wrap,
.hero.revealed .env-closed-wrap {
  opacity: 0;
  transform: scale(0.97);
  pointer-events: none;
}

.env-envelope-box {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.env-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20% 18% 15%;
}

.env-tagline {
  text-align: center;
  font-family: var(--sans);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 300;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  line-height: 1.7;
  margin: 0;
}

.env-btn {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: none;
  padding: 8px 0;
  transition: letter-spacing 0.35s, color 0.25s;
}
.env-btn:hover {
  letter-spacing: 0.44em;
  color: var(--accent-deep);
}

/* OPEN */
.env-open-wrap {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease 0.15s;
}
.hero.opening .env-open-wrap,
.hero.revealed .env-open-wrap {
  opacity: 1;
  pointer-events: auto;
}

.env-letter {
  background: var(--ivory);
  width: min(580px, 72vw);
  padding: clamp(32px, 4.5vw, 60px) clamp(36px, 5.5vw, 72px);
  position: relative;
  z-index: 2;
  margin-bottom: -52px;
  transform: rotate(-6deg) translateY(110px);
  opacity: 0;
  transition:
    transform 1s   cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s,
    opacity   0.55s ease                                   0.35s;
  box-shadow: 0 20px 80px rgba(0,0,0,.22), 0 4px 16px rgba(0,0,0,.1);
}
.hero.revealed .env-letter {
  transform: rotate(-6deg) translateY(-32px);
  opacity: 1;
}

.env-letter-logo {
  height: 28px;
  display: block;
  margin-bottom: 22px;
}

.env-letter-copy {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 3.6vw, 48px);
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}

/* ---- MANIFESTO ---- */
.manifesto {
  background: var(--ivory);
  padding: 150px clamp(40px, 6.7vw, 96px);
  border-top: none;
}
.manifesto-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.manifesto-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  position: sticky;
  top: 100px;
}
.manifesto-label::before {
  content: "";
  display: block;
  width: 40px; height: 1px;
  background: var(--ink-mute);
  margin-bottom: 16px;
}
.manifesto-body .display {
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 0 0 40px;
  text-wrap: pretty;
}
.manifesto-body .display em { font-style: italic; color: var(--highlight); }
.manifesto-body .display .highlight { color: var(--highlight); }
.manifesto-body p {
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 527px;
  margin: 0 0 22px;
}

/* ---- MARQUEE (SERVICES) ---- */
.services {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(80px, 12vh, 140px) 0 clamp(80px, 12vh, 140px);
  overflow: hidden;
}
.services-head {
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(60px, 10vh, 110px);
  gap: 40px;
}
.services-head .eyebrow { color: rgba(255,255,255,.55); }
.services-head .eyebrow::before { background: rgba(255,255,255,.4); }
.services-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -.015em;
  margin: 12px 0 0;
  max-width: 620px;
  text-wrap: pretty;
}
.services-head h2 em { font-style: italic; color: var(--highlight); }

.services-head .pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
}

.marquee {
  display: flex;
  gap: 60px;
  padding: 20px 0;
  white-space: nowrap;
  will-change: transform;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(58px, 11vw, 170px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ivory);
  transition: color .4s ease, -webkit-text-stroke .4s ease;
}
.marquee-item.outlined {
  color: transparent;
  -webkit-text-stroke: 1px var(--ivory);
}
.marquee-item .num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.45);
  -webkit-text-stroke: 0;
  align-self: flex-start;
  margin-top: 20px;
}
.marquee-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  align-self: center;
}

.services-foot {
  padding: clamp(60px, 10vh, 110px) var(--gutter) 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: clamp(40px, 6vh, 60px);
  padding-top: 32px;
}
.services-foot .item {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: color .3s;
}
.services-foot .item:hover { color: var(--link-hover); }
.services-foot .item .idx {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  letter-spacing: 0;
  text-transform: none;
}

/* ---- PRESENCE ---- */
.presence {
  padding: clamp(100px, 16vh, 200px) var(--gutter);
  background: var(--ivory);
  border-top: 1px solid var(--line);
}
.presence-head {
  max-width: 1300px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: end;
}
.presence-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 78px);
  line-height: 1;
  letter-spacing: -0.018em;
  margin: 16px 0 0;
}
.presence-head h2 em { font-style: italic; color: var(--highlight); }

.stats {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
}
.stat .num em { font-style: italic; color: var(--highlight); }
.stat .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 14px;
  display: block;
}
.stat .desc {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 12px;
  font-style: italic;
  max-width: 240px;
}

/* ---- MAP ---- */
.map-section {
  padding: clamp(100px, 14vh, 180px) var(--gutter);
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.map-head {
  max-width: 1300px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.map-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 14px 0 0;
  max-width: 560px;
}
.map-head h2 em { font-style: italic; color: var(--highlight); }

.map-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}
.map-canvas {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ivory-warm);
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-canvas svg { display: block; width: 100%; height: 100%; }
.map-canvas .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.map-pin {
  position: absolute;
  width: 14px; height: 14px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.map-pin-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: background .3s, transform .3s;
  z-index: 2;
}
.map-pin-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  animation: pulse 2.4s infinite ease-out;
  z-index: 1;
  opacity: .4;
}
.map-pin.soon .map-pin-dot { background: transparent; border: 1px dashed var(--ink-mute); }
.map-pin.soon .map-pin-pulse { display: none; }
.map-pin:hover .map-pin-dot { background: var(--accent); transform: translate(-50%, -50%) scale(1.4); }
.map-pin.active .map-pin-dot { background: var(--accent); }
@keyframes pulse {
  0%   { width: 14px; height: 14px; opacity: .6; }
  100% { width: 48px; height: 48px; opacity: 0; }
}
.map-pin-label {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  background: var(--ivory);
  padding: 2px 6px;
  border: 1px solid var(--line);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.map-pin:hover .map-pin-label,
.map-pin.active .map-pin-label { opacity: 1; }

.office-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.office-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding .3s;
}
.office-item:hover { padding-left: 12px; }
.office-item.active { padding-left: 12px; }
.office-item .row1 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.office-item .name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1;
}
.office-item.soon .name { color: var(--ink-mute); font-style: italic; }
.office-item .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.office-item.active .tag { color: var(--link-hover); }
.office-item:hover .tag { color: var(--link-hover); }
.office-item .addr {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-mute);
  margin-top: 8px;
  font-style: italic;
}

/* ---- CAROUSEL (workspaces) ---- */
.carousel-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: stretch;
}
.carousel-stage {
  position: relative;
  height: 520px;
  perspective: 1400px;
  overflow: hidden;
}
.carousel-card {
  position: absolute;
  top: 50%; left: 50%;
  width: 360px;
  cursor: pointer;
  transition: transform .8s cubic-bezier(.4,0,.2,1), opacity .6s ease, filter .6s ease;
  transform-origin: center center;
  background: var(--ivory);
  padding: 14px;
  border: 1px solid var(--line);
  user-select: none;
}
.carousel-card.center {
  transform: translate(-50%, -50%) scale(1.25);
  z-index: 5;
  filter: none;
  opacity: 1;
}
.carousel-card.left {
  transform: translate(calc(-50% - 380px), -50%) scale(.7) rotate(-3deg);
  z-index: 3;
  opacity: .55;
  filter: grayscale(.4);
}
.carousel-card.right {
  transform: translate(calc(-50% + 380px), -50%) scale(.7) rotate(3deg);
  z-index: 3;
  opacity: .55;
  filter: grayscale(.4);
}
.carousel-card.hidden {
  transform: translate(-50%, -50%) scale(.4);
  opacity: 0;
  pointer-events: none;
}
.carousel-thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--ivory-deep);
  overflow: hidden;
}
.carousel-map {
  position: absolute;
  inset: -5px;
  width: calc(100% + 10px);
  height: calc(115% + 10px);
  top: -15%;
  object-fit: cover;
  object-position: center top;
}
.carousel-stripes {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(44,44,44,.06) 0 2px,
      transparent 2px 9px);
}
.carousel-card.soon .carousel-stripes {
  background-image:
    repeating-linear-gradient(135deg,
      rgba(44,44,44,.04) 0 2px,
      transparent 2px 9px);
  opacity: .6;
}
.carousel-cap {
  position: absolute;
  left: 10px; bottom: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--ivory);
  padding: 4px 8px;
}
.carousel-meta {
  display: flex;
  flex-direction: column;
  padding: 14px 6px 4px;
  gap: 6px;
}
.carousel-city {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.carousel-card.soon .carousel-city { font-style: italic; color: var(--ink-mute); }
.carousel-addr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
}

.carousel-side {
  display: flex;
  flex-direction: column;
}
.carousel-side-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
.carousel-side .office-list {
  border-top: none;
}
.carousel-side .office-item {
  cursor: pointer;
  text-align: left;
  width: 100%;
}

@media (max-width: 900px) {
  .carousel-wrap { grid-template-columns: 1fr; }
  .carousel-stage { height: 420px; }
  .carousel-card { width: 280px; }
  .carousel-card.left  { transform: translate(calc(-50% - 280px), -50%) scale(.7) rotate(-3deg); }
  .carousel-card.right { transform: translate(calc(-50% + 280px), -50%) scale(.7) rotate(3deg); }
}
.press {
  padding: clamp(100px, 14vh, 180px) var(--gutter);
  background: var(--ivory-warm);
  border-top: 1px solid var(--line);
}
.press-head {
  max-width: 1300px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.press-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -.015em;
  margin: 14px 0 0;
  max-width: 620px;
}
.press-head h2 em { font-style: italic; color: var(--highlight); }

.press-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.press-card {
  position: relative;
  cursor: pointer;
  background: var(--ivory);
  padding: 20px;
  transition: transform .5s cubic-bezier(.3,.1,.1,1);
}
.press-card:hover { transform: translateY(-6px); }
.press-card .thumb {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: #0f0c09;
  margin-bottom: 20px;
}
.press-card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(1);
  transition: transform .9s cubic-bezier(.4, 0, .2, 1);
}
.press-card:hover .thumb img { transform: scale(1.05); }
.press-card .thumb .placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 2px, transparent 2px 9px),
    linear-gradient(160deg, rgba(58, 56, 56, 0.55) 0%, rgba(28, 26, 26, 0.65) 100%);
  clip-path: inset(0% 0% 0% 0%);
  transition: clip-path .92s cubic-bezier(.4, 0, .1, 1);
  z-index: 1;
}
.press-card:hover .thumb .placeholder { clip-path: inset(0% 0% 0% 100%); }
.press-card .thumb .caption {
  position: absolute;
  left: 12px; bottom: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--ivory);
  padding: 4px 8px;
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s ease .5s, transform .4s ease .5s;
}
.press-card:hover .thumb .caption { opacity: 1; transform: translateY(0); }
.press-card .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  justify-content: space-between;
}
.press-card .title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 12px 0 0;
}
.press-card .title em { font-style: italic; }

.press-card.wide { grid-column: span 7; }
.press-card.tall { grid-column: span 5; }
.press-card.third { grid-column: span 4; }

/* ---- CONTACT ---- */
.contact {
  padding: clamp(120px, 18vh, 220px) var(--gutter) 60px;
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.contact-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.contact-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 30px;
  display: flex; align-items: center; gap: 10px;
}
.contact-kicker::before {
  content: ""; width: 40px; height: 1px; background: rgba(255,255,255,.4);
}
.contact h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(54px, 9vw, 170px);
  line-height: .92;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}
.contact h2 em { font-style: italic; color: var(--highlight); }
.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding: 20px 30px;
  border: 1px solid rgba(255,255,255,.3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: background .3s, color .3s, border-color .3s;
}
.contact-cta:hover {
  background: var(--link-hover);
  border-color: var(--link-hover);
  color: var(--ivory);
}
.contact-cta .arrow {
  position: relative;
  width: 40px; height: 1px;
  background: currentColor;
}
.contact-cta .arrow::after {
  content: "";
  position: absolute; right: 0; top: -4px;
  width: 9px; height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.contact-grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.contact-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0 0 16px;
  font-weight: 500;
}
.contact-col a, .contact-col p {
  display: block;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ivory);
  margin: 0 0 6px;
  font-style: italic;
}
.contact-col small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  font-style: normal;
  display: block;
}

.footer-bottom {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.footer-bottom-links { display: flex; gap: 28px; }
.footer-mega {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(80px, 18vw, 280px);
  line-height: .9;
  letter-spacing: -0.03em;
  margin: 100px 0 30px;
  user-select: none;
  cursor: pointer;
  pointer-events: auto;
  white-space: nowrap;
  display: block;
}
.footer-mega-letter {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.2);
  transform-origin: 50% 80%;
  /* entrance state */
  opacity: 0;
  translate: 0 58px;
  transition:
    translate .75s cubic-bezier(.16, 1, .3, 1) var(--ld, 0s),
    opacity   .6s  ease                        var(--ld, 0s),
    transform .55s cubic-bezier(.2,.8,.2,1),
    color .45s ease,
    -webkit-text-stroke-color .45s ease;
}
.footer-mega-letter.in {
  opacity: 1;
  translate: 0 0;
}
.footer-mega-letter.in:hover {
  color: var(--link-hover);
  -webkit-text-stroke-color: var(--link-hover);
  transform: scale(1.35);
}

/* ---- sticky silencio icon ---- */
/* --silencio-p: 0 = parked next to the nav (top-right), 1 = anchored bottom-right */
.silencio-sticky {
  --silencio-p: 0;
  --top-y: 18px;
  --bot-y: calc(100vh - clamp(64px, 7vw, 96px) - clamp(18px, 2.6vw, 36px));
  --size-top: clamp(40px, 4.2vw, 56px);
  --size-bot: clamp(64px, 7vw, 96px);
  position: fixed;
  right: clamp(18px, 2.6vw, 36px);
  top: calc(var(--top-y) + (var(--bot-y) - var(--top-y)) * var(--silencio-p));
  width: calc(var(--size-top) + (var(--size-bot) - var(--size-top)) * var(--silencio-p));
  height: calc(var(--size-top) + (var(--size-bot) - var(--size-top)) * var(--silencio-p));
  z-index: 60;
  pointer-events: auto;
  cursor: pointer;
  opacity: 0;
  transition: width .35s ease, height .35s ease, opacity .6s ease;
  mix-blend-mode: difference;
}
.silencio-sticky.in {
  opacity: 1;
}
.silencio-sticky::before {
  content: "";
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  color: var(--ivory);
  opacity: 0;
  transform: scale(.7) rotate(-8deg);
  transition:
    opacity .45s ease,
    transform .55s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.silencio-sticky:hover::before {
  opacity: .9;
  transform: scale(1) rotate(0deg);
  animation: silencioRing 6s linear infinite;
}
@keyframes silencioRing {
  to { transform: scale(1) rotate(360deg); }
}
.silencio-sticky img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) brightness(2);
  animation: silencioFloat 6s ease-in-out infinite;
  transition: transform .35s ease;
}
.silencio-sticky:hover img {
  transform: scale(1.08);
}
@keyframes silencioFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-6px) rotate(2deg); }
}

/* ---- scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(.3,.1,.1,1), transform 1s cubic-bezier(.3,.1,.1,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ---- Invisible ink / tinta simpática ---- */
.ink {
  --heat: 0;
  color: var(--accent);
  opacity: calc(0.04 + var(--heat) * 0.96);
  text-shadow: 0 0 18px rgba(222, 157, 172, 0.45);
  display: inline;
}
.ink-phrase {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 52px;
  max-width: 560px;
  display: block;
}
.contact .ink { color: var(--highlight); text-shadow: 0 0 18px rgba(222, 157, 172, 0.4); }

/* ---- Redacted / classified text ---- */
.redacted {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.redacted-bar {
  position: absolute;
  top: -0.1em; bottom: -0.08em;
  left: -0.12em; right: -0.12em;
  background: var(--ink);
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 1.15s cubic-bezier(.85, 0, .12, 1) var(--rd, 0s);
  pointer-events: none;
}
.contact .redacted-bar { background: rgba(245, 241, 234, 0.9); }
.redacted.revealed .redacted-bar { transform: scaleX(0); }

/* ---- Billboard ---- */
.billboard {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 90vh;
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.billboard-media {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.billboard-stage {
  position: absolute;
  inset: 0;
}
.billboard-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(.92) contrast(1.02);
}

/* --- Mupi overlay --- */
.mupi {
  position: absolute;
  /* approximate bounds of the painted mupi inside the photo */
  left: calc(14% - 20px);
  top: calc(15% + 35px);
  width: calc(47% - 43px);
  height: calc(46% + 15px);
  pointer-events: none;
  /* match the slight tilt of the billboard in the photo (~ -0.5deg) */
  transform: skewY(-0.4deg);
  transform-origin: center;
}
.mupi-panel {
  position: absolute;
  inset: 0;
  background: #DE9DAC;
  overflow: hidden;
  will-change: clip-path;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 6px 18px rgba(0,0,0,.28);
}
.mupi-grain {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E"),
    radial-gradient(120% 80% at 30% 20%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(100% 80% at 80% 90%, rgba(0,0,0,.12), transparent 60%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.mupi-lines {
  position: absolute;
  left: 8%;
  top: 32%;
  right: 8%;
  display: flex;
  flex-direction: column;
  gap: 0.18em;
}
.mupi-line {
  overflow: hidden;
  font-family: "Helvetica Neue", "Inter Tight", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 3.6vw, 60px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #f6e9dc;
  text-transform: uppercase;
}
.mupi-line-inner {
  display: inline-block;
  will-change: transform, opacity;
}
.mupi-line-2 em {
  font-style: normal;
  color: #ffffff;
}
.mupi-mark {
  position: absolute;
  right: 8%;
  bottom: 12%;
  display: flex;
  align-items: baseline;
  gap: .25em;
  color: #ffffff;
  will-change: opacity, transform;
}
.mupi-mark-la {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(8px, 1vw, 16px);
  letter-spacing: 0.02em;
  opacity: .9;
}
.mupi-mark-name {
  font-family: "Helvetica Neue", "Inter Tight", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(8px, 1vw, 16px);
  letter-spacing: 0.16em;
}
.billboard-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: clamp(20px, 3vw, 36px) clamp(20px, 4vw, 56px);
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 70%);
}
.billboard-eyebrow {
  font-style: italic;
  letter-spacing: 0.3em;
  opacity: .85;
}
.billboard-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  opacity: .85;
}
.billboard-meta .dot { opacity: .55; }

/* ---- Holding / Sister brands ---- */
.holding {
  padding: clamp(60px, 10vh, 110px) var(--gutter);
  background: var(--ivory);
  border-top: 1px solid var(--line);
}
.holding-head {
  max-width: 1300px;
  margin: 0 auto clamp(36px, 5vh, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.holding-mark {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-family: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
  justify-content: center;
}
.hm-little {
  font-weight: 300;
  font-size: clamp(26px, 3.8vw, 54px);
  letter-spacing: 0.04em;
}
.hm-big {
  font-weight: 800;
  font-size: clamp(26px, 3.8vw, 54px);
  letter-spacing: 0.02em;
  margin-left: 2px;
}
.hm-sub {
  font-family: var(--sans); /* parte del lockup del grupo LittleBIG — se mantiene sans */
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-mute);
  display: block;
  text-align: center;
}

.holding-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
}
.holding-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.holding-cat {
  font-family: var(--sans);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  min-height: 2.6em;
  line-height: 1.3;
  text-align: center;
}
.holding-thumb {
  position: relative;
  aspect-ratio: 9 / 10;
  background: #1a1a1a;
  overflow: hidden;
  isolation: isolate;
  border-radius: 10px;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.holding-card:hover .holding-thumb {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,.38);
}
.holding-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(.92);
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.holding-card:hover .holding-img { transform: scale(1.06); }
.holding-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.52) 0%,
    rgba(0,0,0,.12) 55%,
    rgba(0,0,0,.06) 100%
  );
  z-index: 1;
}
.holding-name {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: clamp(16px, 1.9vw, 26px);
  letter-spacing: 0.01em;
  color: #f0ebe3;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
  padding: 10px;
  text-align: center;
  line-height: 1.05;
}
/* Logos de marca (sustituyen al texto) */
.brand-logo { display: block; width: auto; height: auto; }
.holding-name .brand-logo {
  max-width: 76%;
  max-height: clamp(22px, 2.4vw, 32px);
  filter: brightness(0) invert(1); /* logo oscuro → blanco sobre la tarjeta */
}
.lbw-brand .brand-logo {
  max-width: 100%;
  max-height: clamp(26px, 2.6vw, 34px);
  filter: brightness(0); /* logo a oscuro sobre fondo claro */
}
/* Header LittleBig (Holding) — logo del grupo */
.holding-logo {
  display: block;
  width: auto;
  height: clamp(40px, 5.5vw, 60px);
}
.holding-arrow {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  color: rgba(255,255,255,.85);
  transition: color .3s ease, transform .4s cubic-bezier(.2,.8,.2,1);
}
.holding-card:hover .holding-arrow {
  color: #fff;
  transform: translate(3px, -3px);
}
.holding-current {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--highlight);
  background: rgba(0,0,0,.42);
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px;
}
.holding-card.is-current .holding-thumb {
  outline: 1px solid var(--highlight);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .holding-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .holding-grid { grid-template-columns: repeat(2, 1fr); }
  .billboard-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* --- responsive --- */
@media (max-width: 900px) {
  .nav { gap: 16px; }
  .nav-links { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-label { position: static; }
  .presence-head { grid-template-columns: 1fr; gap: 16px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .map-wrap { grid-template-columns: 1fr; }
  .services-foot { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .press-card.wide, .press-card.tall, .press-card.third { grid-column: span 12; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Footer corporativo ========== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.9);
  font-family: var(--sans);
}
.site-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px var(--gutter) 40px;
}
.footer-ws-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 48px;
}
.footer-offices {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 0 64px;
  align-items: start;
}
.footer-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.footer-city {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
}
.footer-addr {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.footer-contact-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-top: 4px;
}
.footer-lets-talk {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.footer-contact-link {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.footer-contact-link:hover { color: var(--accent); }
.footer-rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,.15);
  margin: 48px 0 24px;
}
.footer-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-brand-logo {
  height: 16px;
  width: auto;
  display: block;
  opacity: .7;
}
.footer-bar-nav {
  display: flex;
  gap: 28px;
}
.footer-bar-nav a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-bar-nav a:hover { color: #fff; }
.footer-bar-legal {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.35);
}
.footer-bar-legal a {
  color: inherit;
  transition: color .2s;
}
.footer-bar-legal a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 900px) {
  .footer-offices { grid-template-columns: 1fr; gap: 48px 0; }
  .footer-offices-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-contact-col { align-items: flex-start; }
  .footer-bar { grid-template-columns: 1fr; gap: 16px; }
  .footer-bar-nav { flex-wrap: wrap; gap: 16px; }
  .footer-bar-legal { justify-content: flex-start; }
}

/* ========================================
   SECCIONES NUEVAS — Diseño Figma 2025
   ======================================== */

/* ---- HERO V2 ---- */
.hero-v2 {
  position: relative;
  height: 100vh;
  min-height: 880px;
  overflow: hidden;
  background: #282828;
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
}
.hero-v2-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-v2-dark {
  position: absolute;
  inset: 0;
  background: rgba(40, 40, 40, 0.2);
  pointer-events: none;
}
.hero-v2-blend {
  position: absolute;
  inset: 0;
  background: #282828;
  mix-blend-mode: color;
  pointer-events: none;
}
.hero-v2-gif {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%);
  width: min(789px, 60vw);
  z-index: 1;
}
.hero-v2-gif img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.hero-v2-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: none;
  z-index: 2;
}
.hero-v2-mark-logo {
  height: 31px;
  width: auto;
  filter: invert(0);
}
.hero-v2-mark-text {
  font-family: var(--signature);
  font-style: normal;
  font-size: clamp(16px, 2.1vw, 30px);
  color: #282828;
  text-align: center;
  line-height: 1.5;
  margin: 0;
  white-space: nowrap;
}

/* ---- Botón Abrir el sobre (estilo indicador, sobre el sello de la carta) ---- */
/* El botón es un área circular GRANDE y TRANSPARENTE centrada en el sello del vídeo
   (left/top los fija el JS según el recorte cover). Así hay mucho margen de acierto. */
.hero-open {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: clamp(140px, 17vw, 220px);
  height: clamp(140px, 17vw, 220px);
  border-radius: 50%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--crimson, #9B2C3A);
  -webkit-tap-highlight-color: transparent;
}
/* Indicador visual: cuelga justo bajo el borde del sello (--seal-r lo da el JS) */
.hero-open-indicator {
  position: absolute;
  left: 50%;
  top: calc(50% + var(--seal-r, 42px) + 8px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  transition: transform .35s ease, opacity .35s ease;
}
.hero-open:hover .hero-open-indicator { transform: translateX(-50%) translateY(4px); }
/* Línea vertical que sube hacia el sello (animación ascendente, como el indicador SCROLL) */
.hero-open-line {
  position: relative;
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(40, 40, 40, 0.22);
}
.hero-open-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  background: currentColor;
  animation: heroOpenLine 1.9s cubic-bezier(.7, 0, .3, 1) infinite;
}
@keyframes heroOpenLine {
  0%   { transform: translateY(110%); }
  100% { transform: translateY(-260%); }
}
.hero-open-text {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding-left: 0.3em;
  transition: letter-spacing .3s ease;
}
.hero-open:hover .hero-open-text { letter-spacing: 0.38em; }

/* ---- Indicador de scroll (hero home) ---- */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 4vh, 44px);
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.82);
  transition: color .3s ease, gap .3s ease;
}
.hero-scroll:hover { color: #fff; gap: 13px; }
.hero-scroll-text {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding-left: 0.3em;
}
.hero-scroll-line {
  position: relative;
  width: 1px;
  height: 52px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 45%;
  background: currentColor;
  animation: heroScrollLine 1.9s cubic-bezier(.7, 0, .3, 1) infinite;
}
@keyframes heroScrollLine {
  0%   { transform: translateY(-110%); }
  100% { transform: translateY(260%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line::after { animation: none; }
}

/* ---- BLOQUE 2: VIDEO & QUOTE ---- */
.vq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.vq-left {
  position: relative;
  overflow: hidden;
}
.vq-left-bg {
  position: absolute;
  inset: 0;
}
.vq-left-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.vq-left-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 40, 40, 0.2);
}
.vq-left-content {
  position: absolute;
  z-index: 1;
  left: 31%;
  top: 37%;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.vq-heading {
  font-family: var(--signature);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.05;
  color: #fbf9f8;
  margin: 0;
}
.vq-body {
  font-family: var(--sans);
  font-size: clamp(14px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  color: #fbf9f8;
  margin: 0;
}
.vq-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 20px);
  color: #fbf9f8;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap .3s ease;
}
.vq-cta:hover { gap: 24px; color: #fbf9f8; }
.vq-arrow-icon {
  display: inline-block;
  width: 18px; height: 18px;
  position: relative;
  flex-shrink: 0;
}
.vq-arrow-icon::before,
.vq-arrow-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.vq-arrow-icon::before {
  width: 12px; height: 1.4px;
  top: 50%; left: 0;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: right center;
}
.vq-arrow-icon::after {
  width: 12px; height: 1.4px;
  bottom: 50%; left: 0;
  transform: translateY(50%) rotate(45deg);
  transform-origin: right center;
}
.vq-right {
  position: relative;
  overflow: hidden;
  background: #282828;
}
.vq-right-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.vq-right-blend {
  position: absolute;
  inset: 0;
  background: #282828;
  mix-blend-mode: color;
  pointer-events: none;
}

/* ---- MANIFESTO — overrides para label nuevo ---- */
.manifesto-label-v2 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.19em;
  color: var(--ink);
  position: sticky;
  top: 100px;
  width: 257px;
  flex-shrink: 0;
}
.manifesto-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: flex-start;
}
.manifesto-body .display { margin: 0; }
.manifesto-body-sub {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  width: min(527px, 100%);
}
.manifesto-body-sub p {
  width: 100%;
}
.manifesto-cta-btn {
  margin-top: 0;
}

/* ---- TEXT LINK CTA (reutilizable) ---- */
.text-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 20px);
  color: var(--crimson);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap .3s ease;
}
.text-link-cta:hover { gap: 18px; color: var(--crimson); }
.text-link-cta--light { color: #fbf9f8; }
.text-link-cta--light:hover { color: #fbf9f8; }
.text-link-arrow {
  display: inline-block;
  width: 16px; height: 16px;
  position: relative;
  flex-shrink: 0;
}
.text-link-arrow::before,
.text-link-arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.text-link-arrow::before {
  width: 11px; height: 1.4px;
  top: 50%; left: 0;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: right center;
}
.text-link-arrow::after {
  width: 11px; height: 1.4px;
  bottom: 50%; left: 0;
  transform: translateY(50%) rotate(45deg);
  transform-origin: right center;
}

/* ---- BLOQUE 4: SERVICIOS V2 ---- */
.services-v2 {
  background: #282828;
  color: #fbf9f8;
  padding: clamp(80px, 12vh, 150px) clamp(40px, 6.5vw, 96px);
  overflow: hidden;
}
.services-v2-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-end;
  max-width: 1300px;
  margin: 0 auto;
}
.services-v2-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
}
.services-v2-label {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.19em;
  color: #fbf9f8;
  margin: 0;
  width: 257px;
}
.services-v2-headline {
  font-family: var(--signature);
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  color: #fbf9f8;
  margin: 0;
  max-width: 900px;
}
.services-v2-headline em {
  font-style: italic;
  color: #e69fa3;
}
.services-v2-names {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}
.services-v2-name {
  font-family: var(--serif);
  font-size: clamp(48px, 8.5vw, 128px);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--accent); /* Pink Cosmos */
  line-height: 1.1;
  margin: 0;
  white-space: nowrap;
}

/* ---- Scroll-driven marquee (INFLUENCER MARKETING) ---- */
.services-v2-marquee-wrap {
  overflow: hidden;
  width: 100%;
}
/* Capa intermedia: recibe el empujón sutil del scroll (vía JS) sin pelear
   con la animación CSS del track. Transición suave para que el scroll fluya. */
.services-v2-marquee-shift {
  will-change: transform;
  transition: transform .25s linear;
}
.services-v2-marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: services-marquee 14s linear infinite;
}
.services-v2-marquee-track .services-v2-name {
  flex-shrink: 0;
}
/* 3 copias idénticas: desplazar 1/3 del track = ancho de una copia → bucle perfecto */
@keyframes services-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}
@media (prefers-reduced-motion: reduce) {
  .services-v2-marquee-track { animation: none; }
}

/* ---- MAPA BLOCK (imagen a sangre) ---- */
.mapa-block {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.mapa-block img {
  position: absolute;
  left: 0;
  top: -2.5%;
  width: 100%;
  height: 105%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ---- BLOQUE 7: QUOTE "Y SÍ" ---- */
.quote-section {
  padding: clamp(80px, 12vh, 150px) clamp(40px, 6.5vw, 96px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  background: var(--ivory);
}
.qs-pre {
  font-family: var(--serif);
  font-size: clamp(56px, 8.5vw, 120px);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}
.qs-main {
  font-family: var(--signature);
  font-size: clamp(38px, 6.5vw, 96px);
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  margin: 0;
  line-height: 1.05;
}
.qs-main em {
  font-style: italic;
  color: var(--crimson);
}
.qs-sub {
  font-family: var(--sans);
  font-size: clamp(14px, 2.5vw, 40px);
  font-weight: 100;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin: 0;
  line-height: 1.35;
}
.qs-cta-text {
  font-family: var(--signature);
  font-size: clamp(18px, 2.5vw, 40px);
  font-style: normal;
  color: var(--ink);
  margin: 0;
}

/* ---- Press / Archivo — fondo blanco y formato consistente ---- */
.press--white {
  background: var(--ivory) !important;
  padding: 150px clamp(40px, 6.7vw, 96px);
  border-top: none;
}
.press--white .press-head {
  max-width: 1300px;
  margin: 0 auto clamp(60px, 8vh, 96px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.press--white .press-head h2 {
  font-family: var(--signature);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.press--white .press-head h2 em { font-style: italic; color: var(--crimson); }
.press--white .press-grid {
  max-width: 1300px;
  margin: 0 auto;
}
.press--white .section-overline { margin-bottom: 28px; }

/* ---- Overline compartido entre secciones ---- */
.section-overline {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.19em;
  color: var(--ink);
  margin: 0 0 28px;
}

/* ---- Status badges (open / closed / soon) ---- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-open  { color: #2e7d32; }
.status-open  .status-dot { background: #4caf50; box-shadow: 0 0 4px rgba(76,175,80,.5); }
.status-closed { color: var(--ink-mute); }
.status-closed .status-dot { background: #bbb; }
.status-soon  { color: var(--ink-mute); font-style: italic; letter-spacing: 0.12em; }

/* Tipo de oficina en sidebar */
.office-type {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}
/* Tipo de oficina en tarjeta carousel */
.carousel-type {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}

/* ---- Media queries nuevas secciones ---- */
@media (max-width: 900px) {
  .hero-v2-gif { width: min(480px, 85vw); }
  .hero-v2-mark-text { font-size: clamp(12px, 3.5vw, 22px); }

  .vq-section { grid-template-columns: 1fr; height: auto; }
  .vq-left { min-height: 75vh; }
  .vq-right { display: none; }

  .services-v2-name { white-space: normal; letter-spacing: 0.08em; }

  .mapa-block { height: auto !important; min-height: 40vw; }
  .mapa-block img { position: relative; top: 0; height: 100%; }
}

/* =====================================================================
   PÁGINA NOSOTROS
   ===================================================================== */

/* ---- Hero a sangre ---- */
.nos-hero {
  position: relative;
  height: 94vh;
  min-height: 680px;
  overflow: hidden;
  background: #282828;
}
.nos-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.nos-hero-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40,40,40,.28) 0%, rgba(40,40,40,0) 22%);
  pointer-events: none;
}

/* ---- Titular "Chispa" ---- */
.chispa {
  background: var(--ivory);
  padding: 0 var(--gutter) clamp(40px, 6vh, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.chispa-title {
  position: relative;
  z-index: 2;
  margin-top: clamp(-85px, -4vh, -30px);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.02;
  color: var(--ink);
}
.chispa-l1 {
  font-size: clamp(40px, 7vw, 104px);
  font-weight: 300;
  letter-spacing: 0.01em;
}
.chispa-l1 strong { font-weight: 600; }
.chispa-l2 {
  font-size: clamp(40px, 7vw, 104px);
  font-weight: 300;
}
.chispa-l2 em { font-style: italic; }
.chispa-l3 {
  font-family: var(--signature);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(54px, 9.5vw, 150px);
  color: var(--crimson);
  line-height: 1;
  margin-top: 4px;
}
.chispa-overline {
  font-family: var(--sans);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--ink);
  margin: clamp(28px, 4vh, 48px) 0 0;
  max-width: 720px;
  line-height: 1.9;
}

/* ---- Intro a dos columnas ---- */
.chispa-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 88px);
  width: min(1040px, 100%);
  margin: clamp(48px, 7vh, 96px) auto 0;
  text-align: left;
}
.chispa-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.chispa-col p {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---- Hospitality View (carrusel horizontal) ---- */
.hview {
  background: var(--ivory);
  padding: clamp(60px, 9vh, 120px) var(--gutter);
}
.hview-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 3vw, 56px);
}
.hview-overline {
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.19em;
  color: var(--ink);
  margin: 0;
  padding-top: 6px;
}
.hview-viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  padding: 4px 0 24px;
}
.hview-track {
  display: flex;
  width: max-content;
  animation: hview-marquee 48s linear infinite;
}
.hview-viewport:hover .hview-track { animation-play-state: paused; }
@keyframes hview-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hview-track { animation: none; }
}
.hview-card {
  flex: 0 0 clamp(260px, 30vw, 380px);
  margin-right: clamp(20px, 2.4vw, 36px);
  display: flex;
  flex-direction: column;
}
.hview-thumb {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ivory-deep);
  margin-bottom: 20px;
}
.hview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.hview-card:hover .hview-thumb img { transform: scale(1.05); }
.hview-tag {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.hview-body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---- QuoteSection centrada (solo Nosotros) ---- */
.nos-quote { padding: 0 var(--gutter); background: var(--ivory); }
.nos-quote .quote-section {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

/* ---- Equipo ---- */
.team { display: flex; flex-direction: column; }
.team-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 4.5vw, 80px);
  padding: clamp(56px, 9vh, 120px) var(--gutter);
}
.team-photo {
  flex: 0 0 auto;
  width: clamp(280px, 38vw, 540px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ivory-deep);
}
.team-text { flex: 0 1 460px; }
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.98;
}
.team-role {
  margin: 16px 0 24px;
  font-family: var(--sans);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.team-bio { display: flex; flex-direction: column; gap: 14px; max-width: 520px; }
.team-bio p {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.7;
}

/* Andrea — fondo burdeos */
.team-andrea { background: var(--crimson); }
.team-andrea .team-name { color: #F6ECE2; }
.team-andrea .team-role { color: var(--accent); }
.team-andrea .team-bio p { color: rgba(246, 236, 226, 0.82); }

/* Antonio — fondo ivory */
.team-antonio { background: var(--ivory); }
.team-antonio .team-name { color: var(--ink); }
.team-antonio .team-role { color: var(--crimson); }
.team-antonio .team-bio p { color: var(--ink-soft); }

/* ---- Responsive Nosotros ---- */
@media (max-width: 860px) {
  .chispa-intro { grid-template-columns: 1fr; gap: 28px; }
  .team-row { flex-direction: column; gap: 28px; }
  .team-antonio { flex-direction: column-reverse; }
  .team-photo { width: 100%; max-width: 460px; }
  .team-text { flex-basis: auto; width: 100%; }
  .hview-inner { flex-direction: column; gap: 24px; }
  .hview-overline { width: auto; padding-top: 0; }
  .hview-card { flex-basis: 78vw; }
}

/* =====================================================================
   PÁGINA SERVICIOS
   ===================================================================== */

/* ---- Hero (oscuro + foto que sobresale) ---- */
.serv-hero {
  position: relative;
  background: var(--ivory);
}
.serv-hero-dark {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: clamp(440px, 60vh, 620px);
  background: #1f1c1c center/cover no-repeat;
  background-image:
    linear-gradient(180deg, rgba(20,18,18,.45), rgba(20,18,18,.78)),
    url("assets/servicios/hero-bg.jpg");
}
.serv-hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding: clamp(130px, 17vh, 190px) var(--gutter) clamp(48px, 6vh, 80px);
}
.serv-hero-heading {
  margin: 0;
  align-self: start;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(23px, 2.6vw, 38px);
  line-height: 1.3;
  color: #F6ECE2;
  max-width: 440px;
}
.serv-hero-photo {
  width: 100%;
  max-width: 460px;
  justify-self: end;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ivory-deep);
}
.serv-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 22% center;
}

/* ---- Lista de servicios ---- */
.serv-list {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(32px, 4.5vh, 56px) var(--gutter) clamp(56px, 8vh, 110px);
}
.serv-list-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.serv-item { border-bottom: 1px solid var(--line); }
.serv-item-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 2.6vh, 30px) 4px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  transition: color .3s ease, padding-left .3s ease;
}
.serv-item-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.1;
}
.serv-item-head:hover { color: var(--crimson); padding-left: 16px; }
.serv-item.is-open .serv-item-head { color: var(--crimson); }
/* Chevron: apunta a la derecha cerrado, gira hacia abajo al abrir */
.serv-item-chevron {
  display: inline-flex;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.serv-item.is-open .serv-item-chevron { transform: rotate(90deg); }
/* Panel desplegable */
.serv-item-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.4, 0, .2, 1);
}
.serv-item.is-open .serv-item-panel { grid-template-rows: 1fr; }
.serv-item-panel-inner {
  overflow: hidden;
  opacity: 0;
  transition: opacity .35s ease;
}
.serv-item.is-open .serv-item-panel-inner { opacity: 1; }
.serv-item-tagline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--ink);
  margin: 0 0 10px;
  padding-left: 4px;
}
.serv-item-text {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 1080px;
  margin: 0 0 clamp(22px, 3vh, 34px);
  padding-left: 4px;
}

/* ---- CTA: Si el chisme importa ---- */
.chisme-cta {
  background: #1f1c1c;
  color: #F6ECE2;
  padding: clamp(80px, 14vh, 170px) var(--gutter);
}
.chisme-inner { max-width: 1300px; margin: 0 auto; }
.chisme-overline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 236, 226, 0.5);
  margin: 0 0 clamp(28px, 4vh, 48px);
}
.chisme-headline {
  margin: 0;
  font-family: var(--signature);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 100px);
  line-height: 1.05;
  color: #F6ECE2;
  max-width: 1050px;
}
.chisme-headline em { font-style: italic; color: var(--accent); }
.chisme-sub {
  margin: clamp(26px, 3.5vh, 40px) 0 0;
  max-width: 300px;
  font-family: var(--sans);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(246, 236, 226, 0.78);
}
.chisme-mail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(26px, 3.5vh, 40px);
  padding: 13px 22px;
  border: 1px solid rgba(246, 236, 226, 0.4);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #F6ECE2;
  text-decoration: none;
  transition: gap .3s ease, background .3s ease;
}
.chisme-mail:hover { gap: 18px; background: rgba(246, 236, 226, 0.08); }

/* ---- Responsive Servicios ---- */
@media (max-width: 860px) {
  .serv-hero-grid { grid-template-columns: 1fr; gap: 28px; padding-top: clamp(110px, 16vh, 150px); }
  .serv-hero-heading { align-self: start; max-width: none; }
  .serv-hero-dark { height: clamp(320px, 42vh, 460px); }
}

/* =====================================================================
   PÁGINA ARCHIVO / PRENSA
   ===================================================================== */
.archivo-inner { max-width: 1300px; margin: 0 auto; }

/* ---- Featured News ---- */
.archivo-featured {
  background: #E7E3DD;
  padding: clamp(110px, 15vh, 180px) var(--gutter) clamp(70px, 10vh, 120px);
}
.archivo-overline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 18px;
}
.archivo-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 clamp(36px, 5vh, 56px);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(28px, 3.5vw, 56px);
  align-items: stretch;
}
.featured-main {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 72vh, 900px);
}
.featured-main img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(1);
}
.featured-main-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,18,18,0) 30%, rgba(20,18,18,.72) 100%);
}
.featured-main-text {
  position: absolute;
  right: clamp(20px, 2.4vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  width: min(56%, 360px);
  text-align: right;
  color: #fff;
}
.fm-outlet {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: 0.04em;
  margin: 0 0 6px;
}
.fm-region {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin: 0 0 18px;
  opacity: 0.85;
}
.fm-title {
  font-family: var(--sans);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

/* Lista lateral */
.featured-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(16px, 2vh, 26px);
}
.featured-item {
  display: grid;
  grid-template-columns: clamp(120px, 12vw, 168px) 1fr;
  gap: clamp(16px, 1.6vw, 24px);
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.fi-thumb {
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: var(--ivory-deep);
}
.fi-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform .5s ease;
}
.featured-item:hover .fi-thumb img { transform: scale(1.05); }
.fi-outlet {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: 0.03em;
  margin: 0 0 5px;
}
.fi-region {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  margin: 0 0 8px;
}
.fi-desc {
  font-family: var(--sans);
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* ---- Latest News ---- */
.archivo-latest {
  background: var(--ivory);
  padding: clamp(80px, 11vh, 140px) var(--gutter);
}
.latest-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 clamp(40px, 6vh, 64px);
}
.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 4vh, 56px) clamp(24px, 2.6vw, 44px);
  animation: archivoFade .45s ease;
}
@keyframes archivoFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.latest-card { text-decoration: none; color: var(--ink); display: block; }
.lc-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ivory-deep);
  margin-bottom: 18px;
}
.lc-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform .5s ease;
}
.latest-card:hover .lc-thumb img { transform: scale(1.04); }
.lc-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(15px, 1.3vw, 19px);
  letter-spacing: 0.04em;
  margin: 0 0 6px;
}
.lc-region {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  margin: 0 0 10px;
}
.lc-desc {
  font-family: var(--sans);
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* Paginación */
.latest-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(48px, 7vh, 84px);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}
.pager-arrow {
  background: none; border: none; cursor: pointer;
  color: var(--ink); padding: 6px;
  display: inline-flex; align-items: center;
  transition: opacity .3s ease;
}
.pager-arrow:hover { opacity: 0.55; }
.pager-arrow:disabled { opacity: 0.25; cursor: default; }
.pager-num { cursor: pointer; transition: color .3s ease; }
.pager-num:hover { color: var(--ink); }
.pager-num.active { color: var(--ink); font-weight: 600; }
.pager-rule { width: 40px; height: 1px; background: var(--line); display: inline-block; }

/* ---- Responsive Archivo ---- */
@media (max-width: 860px) {
  .featured-grid { grid-template-columns: 1fr; gap: 36px; }
  .featured-main { min-height: 380px; }
  .latest-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (min-width: 861px) and (max-width: 1100px) {
  .latest-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   BADGE CIRCULAR "LET'S CONNECT" (sticky giratorio)
   ===================================================================== */
.connect-badge {
  position: fixed;
  right: clamp(16px, 2.2vw, 32px);
  bottom: clamp(16px, 2.2vw, 32px);
  width: clamp(64px, 6vw, 84px);
  height: clamp(64px, 6vw, 84px);
  border-radius: 50%;
  /* relleno rosa de abajo hacia arriba según el scroll (--fillpct: 0% → 100%) */
  background-color: transparent;
  background-image: linear-gradient(
    to top,
    #DE9DAC var(--fillpct, 0%),
    transparent var(--fillpct, 0%)
  );
  display: grid;
  place-items: center;
  z-index: 95;
  text-decoration: none;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.connect-badge:hover { transform: scale(1.07); }
.connect-badge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: connectSpin 16s linear infinite;
  transition: opacity .3s ease;
}
.connect-badge-ring text {
  font-family: var(--sans);
  font-size: 8.4px;
  font-weight: 600;
  letter-spacing: 0.04em;
  fill: #282828;
  text-transform: uppercase;
}
.connect-badge-icon {
  position: relative;
  z-index: 1;
  width: 40%;
  display: flex;
  transition: opacity .3s ease;
}
.connect-badge-icon img {
  width: 100%;
  height: auto;
  filter: brightness(0);
}
@keyframes connectSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .connect-badge-ring { animation: none; } }

/* Hover: se llena de rosa y aparece "bla bla bla" en script */
.connect-badge-bla {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  font-family: "Yellowtail", "Sacramento", cursive;
  font-size: clamp(15px, 1.7vw, 21px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: #6B1F2C;
  text-align: center;
  transform: rotate(-8deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.connect-badge:hover { background: #DE9DAC; }
.connect-badge:hover .connect-badge-ring,
.connect-badge:hover .connect-badge-icon { opacity: 0; }
.connect-badge:hover .connect-badge-bla { opacity: 1; }

/* =====================================================================
   PÁGINA CONTACTO
   ===================================================================== */
.contact-inner { max-width: 1300px; margin: 0 auto; }

/* ---- Hero + formulario ---- */
.contact-hero {
  position: relative;
  min-height: clamp(640px, 92vh, 940px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1f1c1c;
}
.contact-hero-bg { position: absolute; inset: 0; }
.contact-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}
.contact-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(31,28,28,.22) 0%, rgba(31,28,28,.04) 45%, rgba(31,28,28,.18) 100%);
}
.contact-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(120px, 16vh, 180px) var(--gutter) clamp(60px, 8vh, 90px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.contact-hero-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 1.04;
  color: var(--crimson);
}

/* Form */
.contact-form {
  scroll-margin-top: 96px;
  background: rgba(30, 27, 27, 0.45);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border-radius: 12px;
  padding: clamp(28px, 2.8vw, 44px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vh, 22px);
}
.cf-field {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(246, 236, 226, 0.4);
  border-radius: 8px;
  padding: 16px 18px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: #F6ECE2;
  outline: none;
  transition: border-color .3s ease;
}
.cf-field::placeholder { color: rgba(246, 236, 226, 0.65); }
.cf-field:focus { border-color: var(--accent); }
.cf-textarea { resize: none; min-height: 112px; }
.cf-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(246, 236, 226, 0.7);
  cursor: pointer;
}
.cf-check input { margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.cf-submit {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #F6ECE2;
  transition: gap .3s ease;
}
.cf-submit:hover { gap: 16px; }

/* ---- Let's get social ---- */
.social {
  background: var(--ivory);
  padding: clamp(70px, 10vh, 130px) var(--gutter);
}
.social-overline {
  font-family: var(--sans);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 clamp(28px, 4vh, 44px);
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
}
.social-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 500;
  letter-spacing: 0.16em;
  transition: color .3s ease, padding-left .3s ease;
}
.social-item:hover { color: var(--crimson); padding-left: 12px; }

/* ---- Workspaces ---- */
.workspaces {
  background: var(--ivory);
  padding: clamp(40px, 6vh, 80px) var(--gutter) clamp(80px, 11vh, 140px);
}
.workspaces-overline {
  font-family: var(--sans);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 clamp(28px, 4vh, 44px);
}
.workspaces-viewport {
  overflow: hidden;
  padding-bottom: 6px;
}
.workspaces-track {
  display: flex;
  width: max-content;
  animation: wsMarquee 48s linear infinite;
}
.workspaces-viewport:hover .workspaces-track { animation-play-state: paused; }
@keyframes wsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .workspaces-track { animation: none; }
}
.ws-card {
  position: relative;
  flex: 0 0 clamp(240px, 26vw, 320px);
  margin-right: clamp(16px, 1.6vw, 24px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 14px;
}
.ws-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform .6s ease;
}
.ws-card:hover img { transform: scale(1.05); }
.ws-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,28,28,.1) 30%, rgba(31,28,28,.75) 100%);
}
.ws-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(18px, 1.8vw, 28px);
  display: flex;
  flex-direction: column;
  color: #fff;
}
.ws-code {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.ws-city {
  font-family: var(--sans);
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-top: 12px;
}
.ws-role {
  font-family: var(--sans);
  font-size: clamp(9px, 0.8vw, 11px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
}

/* ---- LittleBig World ---- */
.lbworld {
  background: var(--ivory);
  padding: clamp(60px, 9vh, 120px) var(--gutter) clamp(80px, 11vh, 140px);
}
.lbworld-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: clamp(40px, 6vh, 64px);
  flex-wrap: wrap;
}
.lbworld-mark {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--sans);
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.lbworld-logo {
  display: block;
  width: auto;
  height: clamp(24px, 3vw, 44px);
}
.lbworld-mark .hm-little { font-weight: 400; }
.lbworld-mark .hm-big { font-weight: 700; }
.lbworld-word { font-weight: 300; }
.lbworld-claim {
  font-family: var(--sans);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-align: right;
  color: var(--ink-soft);
  margin: 0;
}
.lbworld-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 1.8vw, 28px);
}
.lbw-col { display: flex; flex-direction: column; }
.lbw-cat {
  font-family: var(--sans);
  font-size: clamp(8px, 0.7vw, 10px);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  min-height: 2.4em;
}
.lbw-brand {
  display: flex;
  align-items: flex-end;
  height: clamp(46px, 3.6vw, 62px);
  margin-bottom: 16px;
}
.lbw-thumb {
  position: relative;
  aspect-ratio: 9 / 20;
  overflow: hidden;
  background: var(--ivory-deep);
  margin-bottom: 14px;
}
.lbw-here {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}
.lbw-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform .5s ease, filter .5s ease;
}
/* laChismosa = "estás aquí": a color, el resto en monocromo */
.lbw-col--current .lbw-thumb img { filter: none; }
.lbw-col:hover .lbw-thumb img { transform: scale(1.05); }
.lbw-desc {
  font-family: var(--sans);
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* ---- Responsive Contacto ---- */
@media (max-width: 980px) {
  .lbworld-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 18px; }
}
@media (max-width: 860px) {
  .contact-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .social-grid { grid-template-columns: 1fr; gap: 0; }
  .ws-card { flex-basis: 72vw; }
}
@media (max-width: 560px) {
  .lbworld-grid { grid-template-columns: repeat(2, 1fr); }
  .lbworld-claim { text-align: left; }
}


/* =====================================================================
   PÁGINAS LEGALES (Aviso Legal / Privacidad / Cookies)
   ===================================================================== */
.legal {
  background: #161313;
  padding: clamp(120px, 16vh, 180px) var(--gutter) clamp(80px, 12vh, 140px);
}
.legal-inner { max-width: 880px; margin: 0 auto; }
.legal h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  color: #F6ECE2;
  margin: 0 0 12px;
  line-height: 1.05;
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  color: #F6ECE2;
  margin: clamp(40px, 5vh, 60px) 0 14px;
}
.legal h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #F6ECE2;
  margin: 28px 0 10px;
}
.legal p,
.legal ul,
.legal ol {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(246, 236, 226, 0.72);
  margin: 0 0 14px;
}
.legal ul, .legal ol { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal .legal-meta {
  font-size: 13px;
  color: rgba(246, 236, 226, 0.5);
  margin: 0 0 4px;
}
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* =====================================================================
   CURSOR — punto + anillo elegante (reemplaza el crayón)
   ===================================================================== */
.ec-active, .ec-active * { cursor: none !important; }
.ec-ring {
  position: fixed; top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1.5px solid #6B1F2C;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  transition: width .28s ease, height .28s ease, background-color .28s ease, opacity .3s ease, border-color .3s ease;
  will-change: transform, width, height;
}
.ec-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: #6B1F2C;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  transition: opacity .3s ease, background-color .3s ease;
  will-change: transform;
}
.ec-ring.ec-hover {
  width: 62px; height: 62px;
  background-color: rgba(107, 31, 44, 0.10);
}
/* Fondo oscuro / similar al cursor → cambia a rosa Pink Cosmos */
.ec-on-dark .ec-ring { border-color: #DE9DAC; }
.ec-on-dark .ec-dot  { background: #DE9DAC; }
.ec-on-dark .ec-ring.ec-hover { background-color: rgba(222, 157, 172, 0.14); }
@media (pointer: coarse) { .ec-ring, .ec-dot { display: none; } }

/* ==========================================================================
   NORMALIZACIÓN TIPOGRÁFICA — Brand Manual 2025
   Golden = titulares + detalles · Libre Franklin = textos generales.
   Las secciones V2 (archivo, nosotros, servicios, contacto) se diseñaron
   íntegramente en sans; aquí se alinean al sistema de 2 fuentes.
   Excluidos a propósito: mockup MUPI, lockup del grupo LittleBIG, Unna/Yellowtail.
   ========================================================================== */

/* — Titulares (Golden) — */
.archivo-title,
.latest-title,
.fm-outlet,
.fi-outlet,
.lc-title,
.ws-code { font-family: var(--serif); }
/* .lbworld-mark se mantiene en sans: es el lockup-logo de LittleBig World */

/* — Detalles: eyebrows, overlines, labels, meta, regiones (Golden) — */
.section-overline,
.archivo-overline,
.chispa-overline,
.hview-overline,
.social-overline,
.workspaces-overline,
.manifesto-label-v2,
.services-v2-label,
.fm-region,
.fi-region,
.lc-region,
.team-role,
.hview-tag,
.ws-city,
.ws-role,
.lbw-cat,
.lbw-here,
.holding-cat,
.hero-scroll-text,
.lbworld-claim,
.social-item,
.legal h3 { font-family: var(--serif); }
