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

:root {
  --ivory: #f5f1ea;
  --ivory-warm: #ede6da;
  --ivory-deep: #e3dccd;
  --ink: #141210;
  --ink-soft: #2a2622;
  --ink-mute: #6b6358;
  --line: rgba(20, 18, 16, 0.14);
  --line-soft: rgba(20, 18, 16, 0.08);
  --accent: #8a6b3a;        /* warm bronze */
  --accent-deep: #5e4923;
  --crimson: #a4202a;        /* carmesí editorial */
  --highlight: #D86489;     /* destacados — guideline */
  --link-hover: #4A202A;    /* link hover — guideline */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --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);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: none; /* custom cursor */
}

a { color: inherit; text-decoration: none; transition: color .25s ease; }
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(20,18,16,.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(245,241,234,.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(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 64px);
  color: rgba(245,241,234,.88);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
}
.intro-mark-text em { font-style: italic; color: var(--highlight); }

/* ---- custom cursor ---- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--ink);
  transition: opacity .3s, transform .15s ease-out, background .3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(20,18,16,.5);
  transition: width .25s ease, height .25s ease, border-color .3s, background .3s, opacity .3s;
  mix-blend-mode: normal;
}
.cursor-ring.hover {
  width: 72px; height: 72px;
  background: var(--ink);
  border-color: var(--ink);
  mix-blend-mode: difference;
}
.cursor-ring.hover-invert {
  width: 64px; height: 64px;
  background: var(--ivory);
  border-color: var(--ivory);
  mix-blend-mode: difference;
}
.cursor-label {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ivory);
  mix-blend-mode: difference;
  white-space: nowrap;
  user-select: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.cursor-label.visible { opacity: 1; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  mix-blend-mode: difference;
  color: var(--ivory);
  transition: padding .4s ease;
}
.nav.scrolled { padding-top: 14px; padding-bottom: 14px; }

.nav-brand {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}
.nav-brand .amp { font-style: normal; opacity: .55; margin: 0 .15em; }

.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(--link-hover); }
.nav-links a.active { color: var(--link-hover); }
.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;
}
.lang-toggle {
  display: inline-flex;
  gap: 6px;
}
.lang-toggle .on { opacity: 1; }
.lang-toggle .off { opacity: .45; }
.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(20,18,16,.08);
  overflow: hidden;
}
.envelope::before {
  /* paper texture */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(20,18,16,.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(245,241,234,.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(20,18,16,.2);
}
.envelope-flap::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: linear-gradient(175deg, rgba(20,18,16,.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(20,18,16,.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(245,241,234,.6); }
.hero-top .eyebrow::before { background: rgba(245,241,234,.5); }
.hero-who {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(245,241,234,.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(245,241,234,.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(245,241,234,.6);
}
.hero-signature {
  font-family: var(--serif);
  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(245,241,234,.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(245,241,234,.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; }
}

/* ---- MANIFESTO ---- */
.manifesto {
  background: var(--ivory);
  padding: clamp(120px, 18vh, 220px) var(--gutter);
  border-top: 1px solid var(--line);
}
.manifesto-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.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, 5vw, 78px);
  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(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
  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(245,241,234,.55); }
.services-head .eyebrow::before { background: rgba(245,241,234,.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(245,241,234,.7);
  padding: 10px 18px;
  border: 1px solid rgba(245,241,234,.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(245,241,234,.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(245,241,234,.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(245,241,234,.75);
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: none;
  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(245,241,234,.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(--serif);
  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: none;
}
.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: none;
  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: none;
  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(20,18,16,.06) 0 2px,
      transparent 2px 9px);
}
.carousel-card.soon .carousel-stripes {
  background-image:
    repeating-linear-gradient(135deg,
      rgba(20,18,16,.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: none;
  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: none;
  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;
  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(245,241,234,.03) 0 2px, transparent 2px 9px),
    linear-gradient(160deg, rgba(90, 52, 14, 0.52) 0%, rgba(52, 28, 6, 0.62) 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(245,241,234,.5);
  margin-bottom: 30px;
  display: flex; align-items: center; gap: 10px;
}
.contact-kicker::before {
  content: ""; width: 40px; height: 1px; background: rgba(245,241,234,.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(245,241,234,.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(245,241,234,.15);
}
.contact-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,241,234,.45);
  margin: 0 0 16px;
  font-weight: 500;
}
.contact-col a, .contact-col p {
  display: block;
  font-family: var(--serif);
  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(245,241,234,.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(245,241,234,.5);
  padding-top: 24px;
  border-top: 1px solid rgba(245,241,234,.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: none;
  pointer-events: auto;
  white-space: nowrap;
  display: block;
}
.footer-mega-letter {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,241,234,.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: none;
  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(138, 107, 58, 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(216, 100, 137, 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: #dc6691;
  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(80px, 12vh, 140px) var(--gutter);
  background: var(--ivory);
  border-top: 1px solid var(--line);
}
.holding-head {
  max-width: 1300px;
  margin: 0 auto clamp(40px, 6vh, 72px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: clamp(24px, 5vw, 80px);
}
.holding-head .eyebrow { align-self: start; padding-top: 10px; }
.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;
}
.hm-little {
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 64px);
  letter-spacing: 0.04em;
}
.hm-big {
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 64px);
  letter-spacing: 0.02em;
  margin-left: 2px;
}
.hm-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-mute);
  margin-left: clamp(14px, 2vw, 26px);
  align-self: center;
  padding-left: clamp(14px, 2vw, 26px);
  border-left: 1px solid var(--line);
}
.holding-lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.45;
  color: var(--ink-mute);
  max-width: 380px;
  text-align: right;
  margin: 0;
}
.holding-lede em { font-style: italic; color: var(--ink); }

.holding-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}
.holding-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  cursor: none;
}
.holding-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  min-height: 2.4em;
  line-height: 1.2;
}
.holding-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #1a1a1a;
  overflow: hidden;
  isolation: isolate;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.holding-card:hover .holding-thumb {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px -18px rgba(0,0,0,.35);
}
.holding-stripes {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.06) 0,
      rgba(255,255,255,.06) 1px,
      transparent 1px,
      transparent 9px);
  filter: grayscale(1) contrast(1.05);
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.holding-stripes.tone-1 { background-color: #2b2725; }
.holding-stripes.tone-2 { background-color: #322c28; }
.holding-stripes.tone-3 { background-color: #292523; }
.holding-stripes.tone-4 { background-color: #2f2a26; }
.holding-stripes.tone-5 { background-color: #25201d; }
.holding-stripes.tone-6 { background-color: #2c2624; }
.holding-card:hover .holding-stripes { transform: scale(1.05); }

.holding-name {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing: 0.01em;
  color: #f3ece2;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
  padding: 12px;
  text-align: center;
  line-height: 1;
}
.holding-arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transition: color .3s ease, border-color .3s ease, transform .4s cubic-bezier(.2,.8,.2,1);
}
.holding-card:hover .holding-arrow {
  color: #fff;
  border-color: rgba(255,255,255,.6);
  transform: translate(2px, -2px);
}

.holding-current {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--highlight);
  background: rgba(0,0,0,.4);
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.12);
}
.holding-card.is-current .holding-thumb {
  outline: 1px solid var(--highlight);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .holding-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .holding-head { grid-template-columns: 1fr; gap: 18px; }
  .holding-lede { text-align: left; }
  .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 { grid-template-columns: 1fr auto; }
  .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); }
}
