/* bertin.cd Phase 1 design system
   Yellow carries attention, dark blue carries depth, white carries space. */

:root {
  --yellow: #FFC700;
  --yellow-soft: #FFF3C4;
  --yellow-deep: #EAB000;
  --blue: #0B1E3C;
  --blue-deep: #071530;
  --blue-ink: #0B1E3C;
  --paper: #FFFDF6;
  --white: #FFFFFF;
  --line: rgba(11, 30, 60, .14);
  --font: 'Titillium Web', 'Segoe UI', Arial, sans-serif;
  --maxw: 1200px;
  --pad: clamp(20px, 4vw, 48px);
  --r-lg: 28px;
  --r-md: 18px;
  --ease: cubic-bezier(.22, .8, .28, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--blue-ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1.0625rem;
  overflow-x: hidden;
}

/* faint paper grain, human touch */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

::selection { background: var(--yellow); color: var(--blue-deep); }

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

a { color: inherit; text-decoration: none; }

a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  background: var(--blue-deep);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  z-index: 3000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 14px; }

/* Type scale */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 18px;
}
.kicker::before {
  content: "";
  width: 26px; height: 10px;
  background: var(--yellow);
  border-radius: 2px;
  transform: rotate(-3deg) scaleX(0);
  transform-origin: left center;
  transition: transform .7s var(--ease) .25s;
}
.kicker.in::before { transform: rotate(-3deg) scaleX(1); }

.h-display {
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 0;
}

.h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 24px;
  max-width: 20ch;
}

.lead {
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.45;
  max-width: 34em;
}

section { position: relative; }

[id] { scroll-margin-top: 90px; }

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform .18s var(--ease); }
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0) scale(.99); }

.btn-primary {
  background: var(--yellow);
  color: var(--blue-deep);
  box-shadow: 0 10px 24px -12px rgba(11, 30, 60, .55);
}
.btn-primary:hover { box-shadow: 0 16px 30px -12px rgba(11, 30, 60, .6); background: #FFD23D; }

.btn-ghost {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-ghost:hover { background: var(--blue); color: #fff; }

.btn-light {
  background: var(--blue);
  color: #fff;
}
.btn-light:hover { background: var(--blue-deep); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  transition: gap .18s var(--ease), border-color .18s var(--ease);
}
.link-arrow:hover { gap: 14px; border-color: var(--blue); }
.link-arrow svg { width: 16px; height: 16px; }

/* ============================= NAV ============================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), backdrop-filter .25s var(--ease);
  animation: navIn .9s var(--ease) .05s both;
}
@keyframes navIn {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: none; }
}
.nav.scrolled {
  background: rgba(255, 253, 246, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 28px;
}
.wordmark {
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.wordmark .dotcd { color: transparent; background: var(--yellow); border-radius: 6px; padding: 0 5px; margin-left: 3px; transform: rotate(-2deg); }
.wordmark .dotcd { color: var(--blue-deep); }

.nav-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
  list-style: none;
  padding: 0;
}
.nav-links a {
  display: block;
  padding: 9px 13px;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 999px;
  color: rgba(11, 30, 60, .82);
  transition: background .16s var(--ease), color .16s var(--ease);
}
.nav-links a:hover { background: var(--yellow-soft); color: var(--blue-deep); }
.nav-links a.active { background: var(--yellow); color: var(--blue-deep); }

.lang-switch {
  display: inline-flex;
  border: 2px solid var(--blue);
  border-radius: 999px;
  overflow: hidden;
  font-weight: 700;
  font-size: .82rem;
  flex: none;
}
.lang-switch a { padding: 7px 13px; line-height: 1; color: var(--blue); }
.lang-switch a.on { background: var(--blue); color: var(--yellow); }

.burger {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border: 2px solid var(--blue);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1102;
}
.burger span {
  display: block;
  width: 20px; height: 2.5px;
  background: var(--blue);
  margin: 4.5px auto;
  border-radius: 2px;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--blue-deep);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  transform: translateY(-102%);
  transition: transform .34s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  color: #fff;
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a:hover, .mobile-menu a:focus-visible { color: var(--yellow); }
.mobile-menu a .idx { font-size: .85rem; font-weight: 400; color: rgba(255, 255, 255, .5); }
.mobile-menu .lang-switch { margin-top: 28px; align-self: flex-start; border-color: var(--yellow); }
.mobile-menu .lang-switch a { color: #fff; border: 0; font-size: .95rem; padding: 10px 18px; }
.mobile-menu .lang-switch a.on { background: var(--yellow); color: var(--blue-deep); }

/* ============================= HERO ============================= */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 84px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(48% 55% at 80% 24%, rgba(255, 199, 0, .18), transparent 62%),
    radial-gradient(36% 44% at 4% 90%, rgba(11, 30, 60, .07), transparent 60%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-inner {
  flex: 1;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.hero-micro {
  font-weight: 600;
  font-size: 1rem;
  color: rgba(11, 30, 60, .75);
  margin: 0 0 20px;
  max-width: 34ch;
}
.hero-title {
  font-size: clamp(3.2rem, 8.2vw, 7rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.02em;
  margin: 0 0 26px;
}
.hero-title .wi {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: .09em;
  margin-bottom: -.09em;
}
.hero-title .wo {
  display: inline-block;
  transform: translateY(112%);
  animation: wordRise 1.05s var(--ease) forwards;
  animation-delay: var(--wd, 0ms);
}
@keyframes wordRise {
  to { transform: translateY(0); }
}
.hero-title .na {
  position: relative;
  display: inline-block;
  color: var(--yellow-deep);
  transform: rotate(-2deg);
}
.hero-title .na svg.scribble {
  position: absolute;
  left: -4%; right: -6%; bottom: -.18em;
  width: 110%;
  height: .32em;
  overflow: visible;
}
.hero-title .na svg.scribble path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  animation: drawScribble .9s var(--ease) 1s forwards;
}
@keyframes drawScribble {
  to { stroke-dashoffset: 0; }
}
.hero-sub {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.4;
  font-weight: 600;
  max-width: 30ch;
  margin: 0 0 34px;
}
.hero-sub strong { color: var(--blue-deep); box-shadow: inset 0 -.42em var(--yellow-soft); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stage {
  position: relative;
  align-self: stretch;
  min-height: 420px;
  animation: stageIn 1.3s var(--ease) .1s both;
}
@keyframes stageIn {
  from { opacity: 0; transform: translateY(30px) scale(.965); }
  to { opacity: 1; transform: none; }
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 2% -10% 0 0;
  background:
    radial-gradient(58% 52% at 52% 46%, var(--yellow) 0%, var(--yellow-soft) 68%, rgba(255, 243, 196, 0) 100%);
  border-radius: 50%;
  z-index: 0;
}
.hero-stage::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 10%;
  bottom: 4%;
  height: 16%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(7, 21, 48, .16), rgba(7, 21, 48, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-stage .chip-pos,
.hero-stage .portrait-wrap { pointer-events: auto; }

.portrait-wrap {
  position: absolute;
  right: -1%;
  bottom: -3%;
  width: min(41%, 310px);
  z-index: 4;
  will-change: transform;
}
.portrait-ring {
  animation: popIn 1.1s cubic-bezier(.34, 1.4, .5, 1) .55s both;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.55); }
  to { opacity: 1; transform: none; }
}
.portrait-wrap img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 7px solid var(--white);
  box-shadow: 0 32px 56px -22px rgba(7, 21, 48, .5);
  animation: breathe 7s ease-in-out infinite;
  transform-origin: 50% 90%;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.018); }
}

/* floating glass chips on the hero stage */
.chip-pos { position: absolute; z-index: 5; }
.chip-pos.a { top: 8%; right: 5%; }
.chip-pos.b { top: 42%; left: -6%; }
.chip-pos.c { bottom: 8%; left: 6%; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(11, 30, 60, .1);
  box-shadow: 0 16px 34px -16px rgba(11, 30, 60, .45);
  font-weight: 700;
  font-size: .95rem;
  color: var(--blue-deep);
  white-space: nowrap;
  opacity: 0;
  animation: chipIn .85s var(--ease) forwards, chipFloat 7s ease-in-out infinite;
}
.hero-chip .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  flex: none;
  animation: dotPulse 2.8s ease-in-out infinite;
}
.hero-chip.a { animation-delay: 1s, 1.8s; }
.hero-chip.b { animation-delay: 1.2s, 2.6s; }
.hero-chip.c { animation-delay: 1.4s, 3.6s; }
@keyframes chipIn {
  from { opacity: 0; transform: translateY(20px) scale(.82); }
  to { opacity: 1; transform: none; }
}
@keyframes chipFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 199, 0, .3); }
  50% { box-shadow: 0 0 0 7px rgba(255, 199, 0, .1); }
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 var(--pad) 26px;
  max-width: var(--maxw);
  margin-inline: auto;
  width: 100%;
  color: rgba(11, 30, 60, .55);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.scroll-cue .stem {
  width: 2px; height: 44px;
  background: var(--blue);
  transform-origin: top;
  animation: stem 2.4s var(--ease) infinite;
  border-radius: 2px;
}
@keyframes stem {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(12px); opacity: 0; }
}

/* ============================= MARQUEE ============================= */
.marquee {
  overflow: hidden;
  background: var(--yellow);
  transform: rotate(-1.3deg) scale(1.04);
  margin: 30px 0 -6px;
  padding: 15px 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 36px -24px rgba(11, 30, 60, .45);
}
.mq-track {
  display: flex;
  width: max-content;
  animation: mq 44s linear infinite;
}
.marquee:hover .mq-track { animation-play-state: paused; }
.mq-set {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.mq-dot {
  width: 9px; height: 9px;
  background: var(--blue-deep);
  border-radius: 2px;
  transform: rotate(45deg);
  margin: 0 26px;
  flex: none;
  opacity: .8;
}
@keyframes mq {
  to { transform: translateX(-50%); }
}

/* ============================= WHO ============================= */
.who { padding: clamp(90px, 12vw, 150px) 0; background: var(--white); }
.who-text {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.32;
  max-width: 26em;
  margin: 0 0 64px;
}
.who-text .hl { box-shadow: inset 0 -.34em var(--yellow-soft); }
.roles { border-top: 1px solid var(--line); list-style: none; margin: 0; padding: 0; }
.role-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
  opacity: .18;
  transform: translateX(-6px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), background .2s var(--ease);
}
.role-row.lit { opacity: 1; transform: none; }
.role-row .num {
  font-weight: 300;
  font-size: .95rem;
  color: rgba(11, 30, 60, .55);
}
.role-row .word {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  transition: transform .25s var(--ease);
}
.role-row .go {
  width: 46px; height: 46px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(-8px) rotate(-45deg);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.role-row .go svg { width: 18px; height: 18px; }
.role-row:hover { background: var(--yellow-soft); }
.role-row:hover .word { transform: translateX(10px); }
.role-row:hover .go { opacity: 1; transform: translateX(0) rotate(0); background: var(--yellow); border-color: var(--yellow); }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.fact {
  padding: 30px 28px 34px;
  border-right: 1px solid var(--line);
  background: var(--paper);
}
.fact:last-child { border-right: 0; }
.fact .num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
}
.fact .num em { font-style: normal; color: var(--yellow-deep); }
.fact p { margin: 10px 0 0; color: rgba(11, 30, 60, .72); font-size: .98rem; line-height: 1.45; }

/* ============================= CHALLENGE ============================= */
.challenge { padding: clamp(90px, 12vw, 150px) 0; background: var(--paper); }
.challenge-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}
.challenge-sticky { position: sticky; top: 110px; }
.counter-card {
  margin-top: 34px;
  background: var(--blue-deep);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 34px 32px 30px;
  max-width: 380px;
  position: relative;
  overflow: hidden;
}
.counter-card::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .92;
}
.counter-card .clabel {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin: 0 0 8px;
}
.counter-card .cnum {
  font-size: clamp(3.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--yellow);
}
.counter-card .cnum small { font-size: .38em; font-weight: 700; color: rgba(255,255,255,.75); letter-spacing: 0; }
.counter-card .cnote { margin: 14px 0 0; font-size: .92rem; color: rgba(255, 255, 255, .78); max-width: 26ch; position: relative; z-index: 1; }
.counter-card .ccta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }
.counter-card .btn { padding: 12px 22px; font-size: .92rem; }
.counter-card .btn-ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.counter-card .btn-ghost:hover { background: #fff; color: var(--blue-deep); border-color: #fff; }

.timeline { position: relative; padding-left: 44px; }
.timeline .rail {
  position: absolute;
  left: 10px; top: 6px; bottom: 6px;
  width: 3px;
  background: rgba(11, 30, 60, .12);
  border-radius: 3px;
  overflow: hidden;
}
.timeline .rail .fill {
  display: block;
  width: 100%; height: 100%;
  background: var(--yellow);
  transform: scaleY(0);
  transform-origin: top;
  border-radius: 3px;
}
.tl-node { position: relative; padding: 26px 0; }
.tl-node + .tl-node { border-top: 1px dashed rgba(11, 30, 60, .14); }
.tl-node .dot {
  position: absolute;
  left: -44px; top: 38px;
  width: 23px; height: 23px;
  border-radius: 50%;
  background: var(--yellow);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 2px var(--blue);
  margin-left: 0;
  transform: scale(0);
}
.tl-node.in .dot {
  transform: scale(1);
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1) .2s;
}
.tl-node .step {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(11, 30, 60, .55);
}
.tl-node .big {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 4px 0 8px;
}
.tl-node p { margin: 0; max-width: 40ch; color: rgba(11, 30, 60, .78); }

/* ============================= MIGUEL ============================= */
.miguel { padding: clamp(90px, 12vw, 150px) 0; background: var(--white); }
.miguel-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.miguel-photo { position: relative; }
.miguel-photo img {
  border-radius: var(--r-lg);
  width: 100%;
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
}
.miguel-photo figcaption {
  margin-top: 12px;
  font-size: .88rem;
  color: rgba(11, 30, 60, .6);
  font-style: italic;
}
.miguel-photo::before {
  content: "";
  position: absolute;
  inset: -14px auto auto -14px;
  width: 70px; height: 70px;
  border-top: 3px solid var(--yellow);
  border-left: 3px solid var(--yellow);
  border-top-left-radius: var(--r-lg);
}
.miguel-copy .lead { color: rgba(11, 30, 60, .88); }
.miguel-line {
  margin: 26px 0 30px;
  font-size: 1.15rem;
  font-weight: 700;
  padding-left: 18px;
  border-left: 4px solid var(--yellow);
  max-width: 34ch;
}

/* ============================= WORK ============================= */
.work { padding: clamp(90px, 12vw, 150px) 0; background: var(--paper); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.work-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  cursor: default;
}
.work-card:hover, .work-card:focus-within, .work-card.tapped {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px -26px rgba(11, 30, 60, .35);
  border-color: rgba(11, 30, 60, .3);
}
.work-card .idx { font-weight: 300; color: rgba(11, 30, 60, .5); font-size: .9rem; }
.work-card h3 {
  margin: 12px 0 12px;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -.01em;
}
.work-card .public { margin: 0; color: rgba(11, 30, 60, .82); }
.work-card .secret {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--yellow-soft);
  border-left: 4px solid var(--yellow);
  border-radius: 0 12px 12px 0;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0; padding-bottom: 0;
  margin-top: 0;
  transition: max-height .3s var(--ease), opacity .3s var(--ease), padding .3s var(--ease), margin .3s var(--ease);
}
.work-card:hover .secret, .work-card:focus-within .secret, .work-card.tapped .secret {
  max-height: 220px;
  opacity: 1;
  padding-top: 14px; padding-bottom: 14px;
  margin-top: 16px;
}
.work-card .wlink {
  margin-top: auto;
  padding-top: 20px;
}
.work-card .hint {
  font-size: .8rem;
  color: rgba(11, 30, 60, .5);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.work-card .hint svg { width: 14px; height: 14px; }

/* ============================= TEAM ============================= */
.team { padding: clamp(90px, 12vw, 150px) 0; background: var(--white); }
.team-card {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.team-photo {
  position: relative;
  background: var(--yellow);
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 44px 24px;
  overflow: hidden;
}
.team-photo img {
  position: relative;
  width: min(62%, 280px);
  height: auto;
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: 0 28px 46px -20px rgba(7, 21, 48, .5);
  animation: breathe 8s ease-in-out infinite;
}
.team-info { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; }
.team-info h3 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
}
.team-info .role {
  display: inline-block;
  margin: 12px 0 0;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: var(--yellow);
  padding: 6px 14px;
  border-radius: 999px;
  align-self: flex-start;
  transform: rotate(-1.5deg);
}
.team-info .desc {
  margin: 22px 0 0;
  font-size: 1.12rem;
  line-height: 1.55;
  color: rgba(11, 30, 60, .82);
  max-width: 42ch;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), opacity .35s var(--ease);
}
.team-card:hover .desc, .team-card:focus-within .desc, .team-card.tapped .desc { max-height: 220px; opacity: 1; }
.team-info .hint {
  margin-top: auto;
  padding-top: 24px;
  font-size: .85rem;
  color: rgba(11, 30, 60, .5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.team-info .hint svg { width: 15px; height: 15px; }
.team-socials { display: flex; gap: 10px; margin-top: 20px; }
.team-socials a {
  width: 46px; height: 46px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.team-socials a svg { width: 20px; height: 20px; }
.team-socials a:hover { background: var(--blue); color: var(--yellow); transform: translateY(-3px); }

/* ============================= BUILDING ============================= */
.building { padding: clamp(90px, 12vw, 150px) 0; background: var(--paper); }
.venture {
  margin-top: 26px;
  border-radius: var(--r-lg);
  padding: clamp(30px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, .42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.venture-yoo, #ventures-list .venture:nth-of-type(odd) { background: var(--yellow); }
.venture-reecod, #ventures-list .venture:nth-of-type(even) { background: var(--white); border: 1px solid var(--line); }
.venture .vlogo { max-width: 230px; width: 100%; height: auto; }
.venture-reecod .vlogo, #ventures-list .venture:nth-of-type(even) .vlogo { max-width: 250px; }
.venture-yoo.in::after, #ventures-list .venture:nth-of-type(odd).in::after {
  content: "";
  position: absolute;
  top: -70%; bottom: -70%;
  left: 0;
  width: 140px;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .6), transparent);
  transform: translateX(-60vw) rotate(16deg);
  animation: shine 1.9s var(--ease) .3s forwards;
  pointer-events: none;
}
.venture-reecod.in::after, #ventures-list .venture:nth-of-type(even).in::after {
  content: "";
  position: absolute;
  top: -70%; bottom: -70%;
  left: 0;
  width: 140px;
  background: linear-gradient(100deg, transparent, rgba(255, 199, 0, .4), transparent);
  transform: translateX(-60vw) rotate(16deg);
  animation: shine 1.9s var(--ease) .45s forwards;
  pointer-events: none;
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
@keyframes shine {
  to { transform: translateX(150vw) rotate(16deg); }
}
.venture .vtag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(11, 30, 60, .7);
  border: 1.5px solid rgba(11, 30, 60, .4);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.venture h3 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -.015em;
  line-height: 1.05;
}
.venture p { margin: 0 0 24px; max-width: 56ch; color: rgba(11, 30, 60, .85); font-size: 1.06rem; }
.venture .vnum {
  font-weight: 300;
  font-size: .95rem;
  color: rgba(11, 30, 60, .5);
  display: block;
  margin-bottom: 14px;
}

/* ============================= STORIES ============================= */
.stories { padding: clamp(90px, 12vw, 150px) 0; background: var(--white); }
.stories.hidden { display: none; }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.story-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--paper);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.story-card:hover { transform: translateY(-4px); box-shadow: 0 20px 36px -24px rgba(11, 30, 60, .35); }
.story-card .sdate { font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(11, 30, 60, .55); }
.story-card h3 { margin: 0; font-size: 1.35rem; font-weight: 700; line-height: 1.2; }
.story-card p { margin: 0; color: rgba(11, 30, 60, .75); font-size: .98rem; }
.story-card .rt { margin-top: auto; font-size: .82rem; font-weight: 700; color: var(--yellow-deep); letter-spacing: .08em; text-transform: uppercase; }

/* ============================= CONGO NOTE ============================= */
.congo-note {
  background: var(--yellow);
  padding: clamp(80px, 11vw, 140px) 0;
  overflow: hidden;
}
.congo-note .note {
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
  max-width: 24em;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.congo-note .note .u { position: relative; white-space: nowrap; }
.congo-note .note .u svg {
  position: absolute;
  left: -3%; right: -3%; bottom: -.22em;
  width: 106%; height: .34em;
  overflow: visible;
}
.congo-note .note .u path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
}
.congo-note .note.in .u path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.3s var(--ease) .5s;
}
.congo-note .na-note {
  display: block;
  margin: 26px auto 0;
  text-align: center;
  font-style: italic;
  font-weight: 600;
  font-size: 1.02rem;
  color: rgba(11, 30, 60, .75);
  transform: rotate(-1.2deg);
}

/* ============================= FOOTER ============================= */
.footer {
  background: var(--blue-deep);
  color: #fff;
  padding: clamp(70px, 9vw, 110px) 0 40px;
}
.footer-mission {
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin: 0 0 8px;
  max-width: 22ch;
}
.footer-mission .hl { color: var(--yellow); }
.footer-sub { color: rgba(255, 255, 255, .65); margin: 0 0 48px; max-width: 46ch; }
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.footer-row .fcontact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
}
.footer-row .fcontact svg { width: 18px; height: 18px; color: var(--yellow); }
.footer-row .fcontact:hover { color: var(--yellow); }
.fsocials { display: flex; gap: 12px; margin-left: auto; }
.fsocials a {
  width: 48px; height: 48px;
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.fsocials a svg { width: 21px; height: 21px; }
.fsocials a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--blue-deep); transform: translateY(-3px); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .55);
  font-size: .9rem;
}

/* ============================= STUB PAGES ============================= */
.stub {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.stub-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 130px var(--pad) 80px;
}
.stub-card { max-width: 640px; text-align: center; }
.stub-card .soon {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  transform: rotate(-2deg);
  margin-bottom: 26px;
}
.stub-card h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.02;
  margin: 0 0 22px;
}
.stub-card p { font-size: 1.15rem; color: rgba(11, 30, 60, .78); margin: 0 auto 34px; max-width: 44ch; }

/* ============================= REVEALS ============================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--rd, 0ms);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ============================= RESPONSIVE ============================= */
@media (max-width: 1020px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav .lang-switch { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 10px; padding-top: 12px; }
  .hero { min-height: 0; padding-bottom: 30px; }
  .hero-stage { min-height: 340px; order: -1; margin-top: 10px; }
  .hero-stage::before { inset: 0 -22% 2% -18%; }
  .portrait-wrap { width: min(40%, 220px); right: 0; bottom: -2%; }
  .challenge-grid { grid-template-columns: 1fr; }
  .challenge-sticky { position: static; }
  .miguel-grid { grid-template-columns: 1fr; }
  .miguel-photo { max-width: 480px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 0; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { min-height: 300px; }
  .venture { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .role-row { grid-template-columns: 44px 1fr auto; gap: 12px; }
}

@media (max-width: 900px) {
  .chip-pos { display: none; }
  .marquee { margin: 18px 0 -4px; padding: 12px 0; }
  .mq-set { font-size: .88rem; }
}

@media (max-width: 560px) {
  .hero-title { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero-sub { font-size: 1.08rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .counter-card .ccta .btn { width: 100%; justify-content: center; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .fsocials { margin-left: 0; }
  .role-row .go { display: none; }
}

[data-parallax] { will-change: transform; }

/* ============================= REDUCED MOTION ============================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .role-row { opacity: 1; transform: none; }
  .portrait-wrap img { animation: none; }
  .timeline .rail .fill { transform: scaleY(1); }
}


/* ============================= CATALOG, STORIES, ARTICLE ============================= */
.page-hero {
  padding: 96px 0 34px;
}
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--blue);
}
.page-kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--blue-deep);
  line-height: 1.02;
  margin: 14px 0 16px;
}
.page-intro {
  max-width: 640px;
  font-size: 1.13rem;
  line-height: 1.65;
  color: rgba(11, 30, 60, .78);
}
.page-intro a { color: var(--blue); font-weight: 700; }

/* hand-written margin note, one per inner page, per the Anti-AI-Look rules */
.margin-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 4px 12px 5px;
  font-style: italic;
  font-weight: 600;
  font-size: .95rem;
  color: #0B1E3C;
  transform: rotate(-1.1deg);
  background: linear-gradient(104deg, rgba(255,199,0,0) .5%, rgba(255,199,0,.5) 3%, rgba(255,199,0,.38) 97%, rgba(255,199,0,0) 99.5%);
  border-radius: 2px;
}
.margin-note svg { flex: none; transform: rotate(8deg); }

/* catalog index */
.room-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
  padding: 26px 0 70px;
}
.room-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line, rgba(11, 30, 60, .1));
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -30px rgba(7, 21, 48, .35);
}
.room-card .rc-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--yellow-soft); }
.room-card .rc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-card .rc-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.room-card .rc-num {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yellow-deep);
}
.room-card h2 { font-size: 1.5rem; font-weight: 900; color: var(--blue-deep); letter-spacing: -.01em; }
.room-card .rc-region {
  font-size: .84rem;
  font-weight: 700;
  color: rgba(11, 30, 60, .55);
}
.room-card p {
  font-size: .96rem;
  line-height: 1.55;
  color: rgba(11, 30, 60, .75);
  flex: 1;
}
.room-card .rc-actions { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.room-card .rc-actions .btn { padding: .6em 1.2em; font-size: .9rem; }

/* room detail */
.crumbs {
  padding: 88px 0 0;
  font-size: .86rem;
  font-weight: 600;
  color: rgba(11, 30, 60, .55);
}
.crumbs a { color: var(--blue); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { margin: 0 8px; color: rgba(11, 30, 60, .3); }
.room-head { padding: 20px 0 8px; }
.room-head h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--blue-deep);
  line-height: 1;
  margin: 12px 0 10px;
}
.room-head .rh-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.region-chip {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45em 1em;
  border-radius: 999px;
}
.room-proverb {
  margin: 22px 0 6px;
  padding: 18px 24px;
  background: var(--yellow-soft);
  border-left: 4px solid var(--yellow);
  border-radius: 0 16px 16px 0;
  font-size: 1.14rem;
  font-weight: 600;
  font-style: italic;
  color: var(--blue);
  max-width: 640px;
}
.room-food {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 44px 0;
}
.room-food .rf-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 34px 60px -34px rgba(7, 21, 48, .45);
}
.room-food .rf-img img { width: 100%; height: auto; display: block; }
.room-food h2, .room-walls h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.015em;
  color: var(--blue-deep);
  margin-bottom: 14px;
}
.room-food .rf-desc { font-size: 1.06rem; line-height: 1.7; color: rgba(11, 30, 60, .8); }
.room-food .rf-meaning {
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(11, 30, 60, .1);
  border-radius: 16px;
  font-size: .98rem;
  line-height: 1.6;
  color: rgba(11, 30, 60, .75);
}
.room-food .rf-meaning strong { color: var(--blue); }
.room-walls { padding: 20px 0 40px; }
.walls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 26px;
  margin-top: 24px;
}
.wall-fig {
  background: var(--white);
  border: 1px solid rgba(11, 30, 60, .1);
  border-radius: 22px;
  overflow: hidden;
}
.wall-fig .wf-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--yellow-soft); }
.wall-fig .wf-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wall-fig figcaption { padding: 20px 22px 22px; }
.wall-fig .wf-kind {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yellow-deep);
}
.wall-fig h3 { font-size: 1.22rem; font-weight: 900; color: var(--blue-deep); margin: 6px 0 4px; }
.wall-fig .wf-artist { font-size: .86rem; font-weight: 700; color: rgba(11, 30, 60, .55); margin-bottom: 10px; }
.wall-fig .wf-meaning { font-size: .97rem; line-height: 1.6; color: rgba(11, 30, 60, .78); }
.wall-fig .wf-why {
  margin-top: 12px;
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(11, 30, 60, .62);
  padding-top: 12px;
  border-top: 1px dashed rgba(11, 30, 60, .16);
}
.wall-fig .wf-why strong { color: var(--blue); }
.wall-fig .wf-credit { margin-top: 10px; font-size: .8rem; color: rgba(11, 30, 60, .48); }
.room-credits {
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid rgba(11, 60, 30, .12);
  border-radius: 18px;
  font-size: .94rem;
  line-height: 1.6;
  color: rgba(11, 30, 60, .7);
  margin: 10px 0 40px;
}
.room-credits strong { color: var(--blue); }
.room-cta {
  margin: 0 0 80px;
  padding: 44px 40px;
  background: var(--blue);
  border-radius: 26px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.room-cta::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 199, 0, .5), rgba(255, 199, 0, 0) 68%);
}
.room-cta h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 900; letter-spacing: -.015em; max-width: 560px; }
.room-cta .btn { position: relative; z-index: 1; }

/* stories index */
.story-list { display: grid; grid-template-columns: 1fr; gap: 0; padding: 20px 0 80px; }
.story-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 26px;
  align-items: baseline;
  padding: 30px 6px;
  border-top: 1px solid rgba(11, 30, 60, .12);
  text-decoration: none;
  color: inherit;
  transition: background .35s var(--ease), padding .35s var(--ease);
}
.story-row:hover { background: var(--yellow-soft); padding-left: 18px; padding-right: 18px; }
.story-row .sr-date { font-size: .84rem; font-weight: 700; color: rgba(11, 30, 60, .5); }
.story-row h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 900; letter-spacing: -.015em; color: var(--blue-deep); }
.story-row p { margin-top: 8px; font-size: .98rem; line-height: 1.55; color: rgba(11, 30, 60, .7); max-width: 640px; }
.story-row .sr-rt { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow-deep); white-space: nowrap; }

/* article */
.art-head { padding: 40px 0 0; max-width: 760px; }
.art-head h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.04;
  color: var(--blue-deep);
  margin: 14px 0 16px;
}
.art-meta { display: flex; gap: 14px; font-size: .88rem; font-weight: 700; color: rgba(11, 30, 60, .55); flex-wrap: wrap; }
.art-hero { margin: 30px 0 10px; border-radius: 24px; overflow: hidden; box-shadow: 0 34px 60px -34px rgba(7, 21, 48, .45); }
.art-hero img { width: 100%; height: auto; display: block; }
.art-body { max-width: 680px; padding: 30px 0 20px; }
.art-body h2 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--blue-deep);
  margin: 40px 0 14px;
}
.art-body p { font-size: 1.09rem; line-height: 1.78; color: rgba(11, 30, 60, .85); margin: 0 0 20px; }
.art-cta { margin: 40px 0 80px; }
@media (max-width: 760px) {
  .room-food { grid-template-columns: 1fr; gap: 26px; }
  .story-row { grid-template-columns: 1fr; gap: 8px; }
  .room-cta { padding: 32px 26px; }
}

/* ---------- 9b. SAY MBOTE (contact) ---------- */
.contact { padding: clamp(72px, 9vw, 120px) 0; background: var(--paper); }
.contact .h2 { max-width: 30ch; }
.contact-form { margin-top: 38px; max-width: 760px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-field { display: block; margin-bottom: 18px; }
.cf-field span { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); opacity: .75; margin-bottom: 8px; }
.cf-field input, .cf-field textarea {
  width: 100%; box-sizing: border-box; border: 1.5px solid var(--line, #E7E2D2); border-radius: 14px;
  background: var(--white); padding: 13px 16px; font: inherit; color: var(--blue);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.cf-field input:focus, .cf-field textarea:focus {
  outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255, 199, 0, .22);
}
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cf-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.cf-status { margin: 0; font-weight: 600; color: var(--blue); font-size: .95rem; }
.cf-status a { color: inherit; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; }
.contact-form.sent .cf-field, .contact-form.sent .cf-actions { opacity: .45; pointer-events: none; }
.cf-fallback { margin: 16px 0 0; font-size: .92rem; color: rgba(11, 30, 60, .65); }
.cf-fallback a { color: var(--blue); font-weight: 700; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; }
@media (max-width: 700px) {
  .cf-row { grid-template-columns: 1fr; gap: 0; }
  .cf-actions { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .venture-yoo.in::after, .venture-reecod.in::after,
  #ventures-list .venture.in::after { animation: none; }
}


/* ============================= LANDING V2 (ribbon hero, unite, hero miguel, mates, mbote) ============================= */
.wordmark { align-items: center; }
.wordmark .brand-mark { width: 34px; height: 34px; margin-right: 9px; flex: none; }

/* ---------- centered hero ---------- */
.hero-center { display: grid; place-items: center; text-align: center; position: relative; }
.hero-center .hero-stage {
  position: absolute;
  inset: 0;
  min-height: 0;
  animation: none;
}
.hero-center .hero-stage::before,
.hero-center .hero-stage::after { display: none; }
.hero-column {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2.6vh, 26px);
  padding: 118px var(--pad) 70px;
}
.hero-center .portrait-wrap {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(52vw, 290px);
  z-index: 3;
  perspective: 720px;
}
.hero-center .portrait-ring { position: relative; }
.hero-cta-center { position: relative; z-index: 4; }
.btn-big { padding: 19px 38px; font-size: 1.12rem; }
.hero-title-center { font-size: clamp(2.3rem, 5.6vw, 4.4rem); margin: 0; }
.hero-center .chip-pos.a { top: 21%; right: 11%; bottom: auto; left: auto; }
.hero-center .chip-pos.b { top: 36%; left: 9%; bottom: auto; right: auto; }
.hero-center .chip-pos.c { top: 58%; right: 8%; bottom: auto; left: auto; }

/* welcome word loop */
.welcome-loop { position: relative; height: 46px; width: min(78vw, 340px); z-index: 4; }
.wl-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  opacity: 0;
  animation: wlCycle 12s infinite;
  animation-delay: var(--wd, 0s);
}
.wl-word b {
  background: var(--blue-deep);
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: .02em;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 26px -14px rgba(7, 21, 48, .6);
  white-space: nowrap;
}
.wl-word small {
  color: rgba(11, 30, 60, .6);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  white-space: nowrap;
}
@keyframes wlCycle {
  0% { opacity: 0; transform: translateY(12px) scale(.92); }
  2.4% { opacity: 1; transform: none; }
  14% { opacity: 1; transform: none; }
  16.6% { opacity: 0; transform: translateY(-12px) scale(.95); }
  100% { opacity: 0; }
}

/* artistic orbit decorations around the portrait */
.orbit-ring {
  position: absolute;
  inset: -17px;
  border-radius: 50%;
  border: 2px dashed rgba(11, 30, 60, .32);
  animation: spinSlow 26s linear infinite;
  pointer-events: none;
}
.orbit-ring::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 13px;
  height: 13px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 199, 0, .28);
}
.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--yellow-deep);
  pointer-events: none;
}
.orbit-dot.d1 { animation: orbitA 14s linear infinite; }
.orbit-dot.d2 { width: 8px; height: 8px; background: var(--blue); animation: orbitB 19s linear infinite reverse; }
@keyframes orbitA {
  from { transform: rotate(0deg) translate(min(31vw, 168px)); }
  to { transform: rotate(360deg) translate(min(31vw, 168px)); }
}
@keyframes orbitB {
  from { transform: rotate(0deg) translate(min(29vw, 156px)); }
  to { transform: rotate(360deg) translate(min(29vw, 156px)); }
}
.spark {
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  animation: twinkle 3.4s ease-in-out infinite;
  pointer-events: none;
}
.spark.s1 { top: -4%; left: 2%; }
.spark.s2 { top: 22%; right: -9%; width: 11px; height: 11px; animation-delay: 1.1s; }
.spark.s3 { bottom: 3%; left: -10%; width: 12px; height: 12px; animation-delay: 2s; }
@keyframes twinkle {
  0%, 100% { transform: scale(.55) rotate(0deg); opacity: .45; }
  50% { transform: scale(1.15) rotate(45deg); opacity: 1; }
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* ---------- unite section ---------- */
.unite {
  position: relative;
  background: var(--blue-deep);
  color: #fff;
  padding: clamp(90px, 12vw, 150px) 0;
  overflow: hidden;
}
.unite-watermark {
  position: absolute;
  top: -6%;
  right: -2%;
  font-size: clamp(16rem, 34vw, 30rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, .07);
  pointer-events: none;
  user-select: none;
}
.kicker-light { color: var(--yellow); }
.h2-light { color: #fff; }
.lead-light { color: rgba(255, 255, 255, .82); }
.tickets { margin-top: 46px; display: grid; gap: 18px; max-width: 800px; }
.ticket {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  color: var(--blue-deep);
  border-radius: 18px;
  padding: 20px 28px;
  position: relative;
  transform: rotate(-.6deg);
  box-shadow: 0 24px 44px -24px rgba(0, 0, 0, .55);
}
.ticket:nth-child(2n) { transform: rotate(.5deg); }
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  border-radius: 50%;
  background: var(--blue-deep);
}
.ticket::before { left: -12px; }
.ticket::after { right: -12px; }
.tnum {
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  font-weight: 900;
  color: var(--yellow-deep);
  min-width: 76px;
  line-height: 1;
}
.ticket h3 { margin: 0 0 4px; font-size: 1.25rem; }
.ticket p { margin: 0; color: rgba(11, 30, 60, .75); }
.tstub {
  margin-left: auto;
  flex: none;
  font-size: .66rem;
  letter-spacing: .26em;
  font-weight: 800;
  color: rgba(11, 30, 60, .42);
  border: 2px dashed rgba(11, 30, 60, .28);
  border-radius: 10px;
  padding: 12px 7px;
  writing-mode: vertical-rl;
}
.unite-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 46px; }
.btn-ghost-light {
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
}
.btn-ghost-light:hover { background: var(--yellow); border-color: var(--yellow); color: var(--blue-deep); }
.link-light { color: #fff; border-color: var(--yellow); }
.link-light:hover { border-color: #fff; }

/* ---------- miguel the hero ---------- */
.miguel-hero { position: relative; background: var(--blue-deep); color: #fff; overflow: hidden; }
.miguel-rays {
  position: absolute;
  inset: -45%;
  background: repeating-conic-gradient(from 0deg at 66% 40%, rgba(255, 199, 0, .08) 0deg 7deg, transparent 7deg 22deg);
  animation: spinSlow 80s linear infinite;
  pointer-events: none;
}
.miguel-hero .miguel-grid { position: relative; z-index: 1; }
.hero-photo { position: relative; }
.hero-photo::before {
  content: "";
  position: absolute;
  inset: -7%;
  border: 2px dashed rgba(255, 199, 0, .55);
  border-radius: 50%;
  animation: spinSlow 34s linear infinite;
  z-index: -1;
}
.hero-photo img {
  border: 6px solid var(--yellow);
  border-radius: 24px;
  box-shadow: 0 40px 70px -30px rgba(0, 0, 0, .65);
}
.hero-photo figcaption { color: rgba(255, 255, 255, .65); }
.hero-badge {
  position: absolute;
  top: -16px;
  left: -14px;
  z-index: 2;
  background: var(--yellow);
  color: var(--blue-deep);
  font-weight: 800;
  font-size: .85rem;
  padding: 10px 17px;
  border-radius: 999px;
  transform: rotate(-4deg);
  box-shadow: 0 14px 28px -14px rgba(0, 0, 0, .6);
  white-space: nowrap;
}
.miguel-hero-line {
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  font-weight: 900;
  line-height: 1.14;
  margin: 0 0 18px;
  color: var(--yellow);
}
.miguel-quote {
  font-style: italic;
  border-left: 4px solid var(--yellow);
  padding-left: 18px;
  color: rgba(255, 255, 255, .88);
  margin: 26px 0 30px;
  font-size: 1.08rem;
}
.miguel-hero .miguel-copy .lead { color: rgba(255, 255, 255, .82); }

/* ---------- team mates (Yoo360 + Reecod) ---------- */
.team-lead { max-width: 62ch; }
.mates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  margin-top: 28px;
}
.mate {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.mate:hover { transform: translateY(-4px); box-shadow: 0 26px 44px -26px rgba(11, 30, 60, .4); }
.mate-logo { height: 44px; width: auto; max-width: 180px; object-fit: contain; margin-bottom: 18px; }
.mate h3 { margin: 0 0 3px; font-size: 1.3rem; }
.mate-tag {
  display: block;
  font-weight: 700;
  color: var(--yellow-deep);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.mate p { color: rgba(11, 30, 60, .75); margin: 0 0 16px; }

/* ---------- giant mbote ---------- */
.contact { position: relative; overflow: hidden; }
.mbote-big {
  position: absolute;
  right: -1%;
  bottom: -5%;
  font-size: clamp(6rem, 17vw, 14rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(11, 30, 60, .13);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.contact .wrap { position: relative; z-index: 1; }

/* ---------- small screens ---------- */
@media (max-width: 860px) {
  .hero-center .chip-pos { display: none; }
  .hero-center .portrait-wrap { width: min(62vw, 260px); }
  .tstub { display: none; }
  .mbote-big { opacity: .7; }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-ring, .orbit-dot, .spark, .miguel-rays, .hero-photo::before { animation: none; }
  .wl-word { animation: none; opacity: 0; }
  .wl-word:first-child { opacity: 1; }
}
