:root {
  --c-red: #D71126;
  --c-red-soft: #ff2e44;
  --c-navy: #013068;
  --c-navy-deep: #001a3a;
  --c-blue: #0051C6;
  --c-green: #1FC478;
  --c-green-deep: #0fa362;
  --c-cream: #F5F1E8;
  --c-paper: #FFFFFF;
  --c-ink: #0A0F1F;
  --c-mute: #6B7280;
  --c-line: rgba(10, 15, 31, 0.08);

  --f-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --f-body: 'Geist', system-ui, sans-serif;
  --f-mono: 'Geist Mono', 'SF Mono', monospace;

  --max: 1400px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--c-red); color: white; }

/* ─────────────────────────────────────
   TYPOGRAPHY ENGINE
   ───────────────────────────────────── */
.bricolage {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
}
.italic-display {
  font-style: italic;
  font-variation-settings: "opsz" 96, "wght" 500;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-red);
  position: relative;
}
.eyebrow .pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--c-red);
  opacity: 0.4;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ─────────────────────────────────────
   PILL - the visual signature from your Instagram
   ───────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: 999px;
  padding: 8px 22px 8px 8px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--c-ink);
  box-shadow: 0 6px 20px -10px rgba(0,0,0,0.15);
}
.pill-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--c-red);
  color: white;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pill-tag.green { background: var(--c-green); }
.pill-tag.navy { background: var(--c-navy); }
.pill-tag.outline { background: transparent; border: 1.5px solid currentColor; color: var(--c-ink); }
.pill .dot { color: var(--c-red); font-weight: 700; }
.pill .accent { color: var(--c-red); font-family: var(--f-mono); font-weight: 600; }

/* ─────────────────────────────────────
   LAYOUT
   ───────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ─────────────────────────────────────
   BUTTONS
   ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform .3s cubic-bezier(.5,0,.2,1), background .3s ease, color .3s ease, box-shadow .3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--c-red); color: white; }
.btn-primary:hover { background: var(--c-red-soft); box-shadow: 0 18px 40px -12px rgba(215,17,38,.55); }
.btn-navy { background: var(--c-navy); color: white; }
.btn-navy:hover { background: var(--c-blue); box-shadow: 0 18px 40px -12px rgba(0,81,198,.55); }
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-ink);
}
.btn-ghost:hover { background: var(--c-ink); color: var(--c-cream); }
.btn-on-dark { background: white; color: var(--c-navy); }
.btn-on-dark:hover { background: var(--c-green); color: var(--c-navy-deep); box-shadow: 0 18px 40px -12px rgba(31,196,120,.5); }
.btn-arrow { transition: transform .3s cubic-bezier(.5,0,.2,1); display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* ─────────────────────────────────────
   ORGANIC BLOBS - floating decoration
   ───────────────────────────────────── */
.blob {
  position: absolute;
  pointer-events: none;
  filter: blur(0px);
  z-index: 1;
}
.blob.b-red {
  background: var(--c-red);
  border-radius: 71% 29% 41% 59% / 59% 43% 57% 41%;
}
.blob.b-green {
  background: var(--c-green);
  border-radius: 41% 59% 70% 30% / 43% 45% 55% 57%;
}
.blob.b-blue {
  background: var(--c-blue);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0,0) rotate(0deg); border-radius: 71% 29% 41% 59% / 59% 43% 57% 41%; }
  50% { transform: translate(30px, -20px) rotate(8deg); border-radius: 41% 59% 70% 30% / 43% 45% 55% 57%; }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0,0) rotate(0deg); border-radius: 41% 59% 70% 30% / 43% 45% 55% 57%; }
  50% { transform: translate(-25px, 30px) rotate(-6deg); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}
.drift-1 { animation: drift1 18s ease-in-out infinite; }
.drift-2 { animation: drift2 22s ease-in-out infinite; }

/* ─────────────────────────────────────
   GRAIN OVERLAY (subtle texture)
   ───────────────────────────────────── */
.grain {
  position: relative;
}
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
}

/* ─────────────────────────────────────
   TOP STATUS BAR
   ───────────────────────────────────── */
.status-bar {
  background: var(--c-ink);
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
}
.status-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.status-bar-inner .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-green);
}
.status-bar-inner .live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 0 var(--c-green);
  animation: pulse-dot 1.6s ease-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(31,196,120,0.6); }
  100% { box-shadow: 0 0 0 9px rgba(31,196,120,0); }
}

/* ─────────────────────────────────────
   NAV
   ───────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 232, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(10, 15, 31, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-navy);
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-text {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 24, "wght" 600;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.nav-logo-text small {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 3px;
  letter-spacing: 0.14em;
}
.nav-links {
  display: flex;
  gap: 4px;
  background: rgba(10,15,31,0.04);
  padding: 5px;
  border-radius: 999px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--c-ink);
  transition: all .25s ease;
}
.nav-links a:hover {
  background: white;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.08);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px 10px 20px;
  background: var(--c-ink);
  color: white;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  transition: all .25s ease;
}
.nav-cta-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(.5,0,.2,1);
}
.nav-cta:hover { background: var(--c-navy); }
.nav-cta:hover .nav-cta-arrow { transform: rotate(-45deg); }
@media (max-width: 920px) {
  .nav-links { display: none; }
}

/* ─────────────────────────────────────
   HERO - wall of type
   ───────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(30px, 6vw, 80px) 0 clamp(40px, 8vw, 100px);
  overflow: hidden;
  background: var(--c-cream);
  isolation: isolate;
}
.hero .blob.b-red {
  width: 480px;
  height: 480px;
  top: 8%;
  right: -8%;
  z-index: 0;
}
.hero .blob.b-green {
  width: 460px;
  height: 460px;
  bottom: -15%;
  left: -12%;
  z-index: 0;
  opacity: 0.92;
}
/* Mobile: shrink the hero red blob and tuck it into the top-right corner
   so it stops overlapping the h1 "relie" */
@media (max-width: 760px) {
  .hero .blob.b-red {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
  }
}
@media (max-width: 480px) {
  .hero .blob.b-red {
    width: 200px;
    height: 200px;
    top: -10px;
    right: -10px;
  }
}
.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(60px, 14vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.055em;
  color: var(--c-ink);
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
  text-transform: uppercase;
}
.hero h1 .relie {
  font-style: italic;
  font-variation-settings: "opsz" 96, "wght" 400;
  color: var(--c-red);
  letter-spacing: -0.04em;
  text-transform: lowercase;
  display: inline-block;
  position: relative;
}
.hero h1 .relie::after {
  content: ".";
  color: var(--c-red);
  font-style: normal;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .hero-bottom { grid-template-columns: 1fr; gap: 32px; } }
.hero-lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.45;
  color: var(--c-ink);
  font-weight: 400;
  max-width: 540px;
  letter-spacing: -0.01em;
}
.hero-lede strong {
  font-weight: 600;
  color: var(--c-navy);
  font-variation-settings: "wght" 600;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
@media (max-width: 880px) { .hero-ctas { justify-content: flex-start; } }

/* Hero metrics row */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 90px;
  border-top: 1px solid var(--c-line);
  position: relative;
  z-index: 2;
}
@media (max-width: 760px) { .hero-metrics { grid-template-columns: repeat(2, 1fr); } }
.metric {
  padding: 28px 24px 0 0;
  border-right: 1px solid var(--c-line);
  position: relative;
}
.metric:last-child { border-right: none; }
.metric-num {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.95;
  color: var(--c-ink);
  letter-spacing: -0.05em;
}
.metric-num sup {
  font-size: 0.4em;
  vertical-align: top;
  font-variation-settings: "wght" 500;
  margin-left: 2px;
}
.metric-label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 12px;
  max-width: 180px;
  line-height: 1.5;
}

/* ─────────────────────────────────────
   MARQUEE
   ───────────────────────────────────── */
.marquee-section {
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 26px 0;
  overflow: hidden;
  position: relative;
}
.marquee {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee .ball {
  width: 18px; height: 18px;
  background: var(--c-red);
  border-radius: 50%;
  display: inline-block;
}
.marquee .ball.green { background: var(--c-green); }
.marquee em {
  font-style: italic;
  color: var(--c-red);
  font-variation-settings: "opsz" 96, "wght" 400;
}
.marquee em.green { color: var(--c-green); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────────────────────────────
   SOLIDARITY - high impact, navy
   ───────────────────────────────────── */
.solidarity {
  background: var(--c-navy);
  color: var(--c-cream);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.solidarity .blob.b-red {
  width: 540px; height: 540px;
  top: -20%; left: -10%;
  opacity: 0.85;
  z-index: 0;
}
.solidarity .blob.b-green {
  width: 380px; height: 380px;
  bottom: -15%; right: -8%;
  z-index: 0;
}
.solidarity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) { .solidarity-grid { grid-template-columns: 1fr; gap: 40px; } }
.solidarity-quote {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: clamp(46px, 7vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: white;
  text-transform: uppercase;
}
.solidarity-quote em {
  font-style: italic;
  color: var(--c-green);
  font-variation-settings: "opsz" 96, "wght" 400;
  text-transform: lowercase;
  letter-spacing: -0.03em;
}
.solidarity-quote .dash {
  display: inline-block;
  width: clamp(40px, 6vw, 90px);
  height: 0.08em;
  background: var(--c-red);
  vertical-align: middle;
  margin: 0 0.1em 0.18em 0;
}
.solidarity-text {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.65;
}
.solidarity-text p { margin-bottom: 18px; }
.solidarity-text p:last-of-type { margin-bottom: 30px; }
.solidarity-text strong {
  color: white;
  font-weight: 500;
  position: relative;
  background: linear-gradient(transparent 60%, rgba(31,196,120,0.4) 60%);
  padding: 0 2px;
}
.signature {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 30px;
  margin-bottom: 30px;
  display: block;
}
.solidarity-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Partner credit pill — used in solidarity section to credit Red Cross */
.partner-credit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px 8px 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.partner-credit-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.partner-credit-logo img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}
.partner-credit-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.partner-credit-eyebrow {
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.partner-credit-name {
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: white;
}

/* ─────────────────────────────────────
   PROGRAMME - bento with big dates
   ───────────────────────────────────── */
.programme {
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 10vw, 120px);
  position: relative;
  background: var(--c-cream);
}
.programme-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}
.programme-head h2 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(52px, 9vw, 130px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  max-width: 12ch;
}
.programme-head h2 em {
  font-style: italic;
  color: var(--c-blue);
  font-variation-settings: "opsz" 96, "wght" 400;
  text-transform: lowercase;
  letter-spacing: -0.04em;
}
.programme-head-side {
  max-width: 360px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-mute);
  padding-bottom: 12px;
}
.programme-head-side .pill-tag { margin-bottom: 16px; }

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.event-card {
  position: relative;
  background: var(--c-paper);
  border-radius: 24px;
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform .4s cubic-bezier(.5,0,.2,1);
  isolation: isolate;
}
.event-card:hover { transform: translateY(-6px); }
.event-card .blob {
  z-index: 0;
  opacity: 0.95;
}
.event-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.event-card-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: auto;
}
.event-date {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 500;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--c-ink);
  text-transform: uppercase;
  margin-bottom: 14px;
  margin-top: 12px;
}
.event-date .day {
  font-size: clamp(60px, 7vw, 88px);
  display: block;
}
.event-date .month {
  font-size: clamp(20px, 2vw, 26px);
  font-variation-settings: "opsz" 24, "wght" 500;
  letter-spacing: 0.02em;
  margin-top: 6px;
  display: block;
}
.event-date.tba .day {
  font-size: clamp(40px, 4vw, 56px);
  font-style: italic;
  font-variation-settings: "opsz" 96, "wght" 400;
  text-transform: lowercase;
  letter-spacing: -0.04em;
}
.event-title {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 36, "wght" 500;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  margin-bottom: 12px;
  margin-top: 20px;
}
.event-title em {
  font-style: italic;
  font-variation-settings: "opsz" 36, "wght" 400;
}
.event-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 16px;
  line-height: 1.5;
}
.event-tba-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 8px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.event-tba-sub::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-red);
  display: inline-block;
  flex-shrink: 0;
}
.event-card.navy .event-tba-sub,
.event-card.red .event-tba-sub { color: rgba(255,255,255,0.7); }
.event-card.green .event-tba-sub { color: rgba(0,26,58,0.65); }

/* In-card CTA button — placed at end of card, dark by default */
.event-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 20px;
  background: var(--c-ink);
  color: white;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-top: 18px;
  align-self: flex-start;
  transition: transform .25s cubic-bezier(.5,0,.2,1), background .25s ease, box-shadow .25s ease;
}
.event-cta:hover {
  transform: translateY(-2px);
  background: var(--c-navy);
  box-shadow: 0 14px 30px -10px rgba(1,48,104,0.5);
}
.event-cta .btn-arrow {
  display: inline-block;
  transition: transform .25s cubic-bezier(.5,0,.2,1);
}
.event-cta:hover .btn-arrow { transform: translateX(3px); }
/* Variants for colored cards */
.event-card.navy .event-cta {
  background: white;
  color: var(--c-navy);
}
.event-card.navy .event-cta:hover {
  background: var(--c-green);
  color: var(--c-navy-deep);
  box-shadow: 0 14px 30px -10px rgba(31,196,120,0.5);
}
.event-card.red .event-cta {
  background: var(--c-ink);
  color: white;
}
.event-card.red .event-cta:hover {
  background: white;
  color: var(--c-red);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4);
}
.event-card.green .event-cta {
  background: var(--c-ink);
  color: white;
}
.event-card.green .event-cta:hover {
  background: var(--c-navy);
  box-shadow: 0 14px 30px -10px rgba(0,26,58,0.5);
}

/* MEA partner — discreet badge (small pill with logo) */
.mea-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: white;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink);
  border: 1px solid var(--c-line);
  white-space: nowrap;
}
.mea-badge img {
  height: 14px;
  width: auto;
  display: block;
}
.mea-badge.dim {
  background: rgba(255,255,255,0.92);
  border-color: transparent;
}

/* MEA partner — prominent block (used once, in Beirut section) */
.mea-partner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px 24px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.mea-partner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--c-red);
}
.mea-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 22px;
  border-right: 1px solid var(--c-line);
}
.mea-partner-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.mea-partner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mea-partner-tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-red);
}
.mea-partner-headline {
  font-size: 14px;
  line-height: 1.4;
  color: var(--c-ink);
}
.mea-partner-headline strong {
  color: var(--c-navy);
  font-weight: 600;
}
@media (max-width: 600px) {
  .mea-partner { grid-template-columns: 1fr; gap: 14px; }
  .mea-partner-logo { padding-right: 0; padding-bottom: 14px; border-right: none; border-bottom: 1px solid var(--c-line); }
}
.event-talks {
  list-style: none;
  border-top: 1px solid var(--c-line);
  padding-top: 14px;
  margin-top: auto;
  font-size: 15.5px;
}
.event-talks li {
  padding: 8px 0;
  border-bottom: 1px solid var(--c-line);
  line-height: 1.45;
}
.event-talks li:last-child { border-bottom: none; }
.event-talks .talk-title {
  font-weight: 500;
  color: var(--c-ink);
  display: block;
  margin-bottom: 2px;
}
.event-talks .talk-speaker {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-mute);
}

/* Bento positions */
.event-card.span-7 { grid-column: span 7; }
.event-card.span-5 { grid-column: span 5; }
.event-card.span-6 { grid-column: span 6; }
.event-card.span-4 { grid-column: span 4; }
.event-card.span-12 { grid-column: span 12; }

/* Variants */
.event-card.navy {
  background: var(--c-navy);
  color: var(--c-cream);
}
.event-card.navy .event-date,
.event-card.navy .event-title { color: white; }
.event-card.navy .event-talks { border-color: rgba(255,255,255,0.12); }
.event-card.navy .event-talks li { border-color: rgba(255,255,255,0.08); }
.event-card.navy .event-talks .talk-title { color: white; }
.event-card.navy .event-talks .talk-speaker { color: rgba(255,255,255,0.55); }
.event-card.navy .event-meta { color: rgba(255,255,255,0.55); }
.event-card.navy .blob.b-red {
  width: 240px; height: 240px;
  top: -20%; right: -10%;
}
.event-card.navy .blob.b-green {
  width: 200px; height: 200px;
  bottom: -25%; right: 30%;
  opacity: 0.85;
}

.event-card.green {
  background: var(--c-green);
  color: var(--c-navy-deep);
}
.event-card.green .event-date,
.event-card.green .event-title { color: var(--c-navy-deep); }
.event-card.green .event-talks { border-color: rgba(0,26,58,0.15); }
.event-card.green .event-talks li { border-color: rgba(0,26,58,0.1); }
.event-card.green .event-talks .talk-speaker { color: rgba(0,26,58,0.6); }
.event-card.green .event-meta { color: rgba(0,26,58,0.6); }

.event-card.red {
  background: var(--c-red);
  color: white;
}
.event-card.red .event-date,
.event-card.red .event-title { color: white; }
.event-card.red .event-talks { border-color: rgba(255,255,255,0.18); }
.event-card.red .event-talks li { border-color: rgba(255,255,255,0.12); }
.event-card.red .event-talks .talk-title { color: white; }
.event-card.red .event-talks .talk-speaker { color: rgba(255,255,255,0.7); }
.event-card.red .event-meta { color: rgba(255,255,255,0.7); }

.event-card.cream .blob.b-red {
  width: 220px; height: 220px;
  bottom: -30%; right: -15%;
  opacity: 0.92;
}
.event-card.cream .blob.b-green {
  width: 180px; height: 180px;
  top: -25%; left: -10%;
  opacity: 0.85;
}

/* Prize indicator */
.prize-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 14px;
  padding: 6px 12px;
  background: rgba(31,196,120,0.12);
  border-radius: 999px;
  align-self: flex-start;
}
.event-card.navy .prize-tag {
  background: rgba(31,196,120,0.2);
  color: var(--c-green);
}

@media (max-width: 980px) {
  .event-card.span-7,
  .event-card.span-5,
  .event-card.span-6,
  .event-card.span-4 { grid-column: span 12; }
}

/* ─────────────────────────────────────
   BEIRUT FEATURE
   ───────────────────────────────────── */
.beirut {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--c-paper);
  position: relative;
  overflow: hidden;
}
.beirut-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 960px) { .beirut-grid { grid-template-columns: 1fr; gap: 40px; } }

.beirut-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--c-navy);
  isolation: isolate;
}
.beirut-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.beirut-visual .blob.b-red {
  width: 200px; height: 200px;
  top: -8%; left: -8%;
  z-index: 2;
}
.beirut-visual .blob.b-green {
  width: 220px; height: 220px;
  bottom: -10%; right: -10%;
  z-index: 2;
}
.beirut-visual-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 3;
  color: white;
}
.beirut-visual-overlay .city {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.beirut-visual-overlay .coord {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: right;
  opacity: 0.85;
  line-height: 1.6;
}

.beirut h2 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(48px, 7.5vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--c-ink);
}
.beirut h2 em {
  font-style: italic;
  color: var(--c-green);
  font-variation-settings: "opsz" 96, "wght" 400;
  text-transform: none;
  letter-spacing: -0.04em;
}
.beirut p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-ink);
  margin-bottom: 24px;
  max-width: 520px;
}

.beirut-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 36px 0;
  border-top: 1px solid var(--c-line);
}
.beirut-stat {
  padding: 24px 16px 0 0;
  border-right: 1px solid var(--c-line);
}
.beirut-stat:last-child { border-right: none; }
.beirut-stat-num {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  color: var(--c-navy);
  letter-spacing: -0.04em;
}
.beirut-stat-num sup { font-size: 0.4em; vertical-align: top; }
.beirut-stat-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 8px;
}
.beirut-perk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(31,196,120,0.12);
  border: 1px solid rgba(31,196,120,0.3);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 24px;
}
.beirut-perk .star { color: var(--c-red); font-weight: 700; }

/* ─────────────────────────────────────
   REJOINDRE
   ───────────────────────────────────── */
.rejoindre {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.rejoindre-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 880px) { .rejoindre-head { grid-template-columns: 1fr; gap: 24px; } }
.rejoindre h2 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(52px, 9vw, 130px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.rejoindre h2 em {
  font-style: italic;
  color: var(--c-red);
  font-variation-settings: "opsz" 96, "wght" 400;
  text-transform: lowercase;
}
.rejoindre-head-side p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-mute);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .tier-grid { grid-template-columns: 1fr; } }

.tier {
  background: var(--c-paper);
  border-radius: 24px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s cubic-bezier(.5,0,.2,1);
}
.tier:hover { transform: translateY(-6px); }
.tier-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.tier-name {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
  padding: 6px 12px;
  background: var(--c-cream);
  border-radius: 999px;
}
.tier-price {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: 90px;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.tier-price sup {
  font-size: 0.35em;
  vertical-align: top;
  font-variation-settings: "wght" 500;
  margin-left: 4px;
}
.tier-sub {
  font-size: 13px;
  color: var(--c-mute);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
  line-height: 1.5;
}
.tier ul {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.tier li {
  font-size: 14px;
  padding: 9px 0 9px 22px;
  position: relative;
  color: var(--c-ink);
  line-height: 1.45;
}
.tier li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 12px;
  height: 1.5px;
  background: var(--c-red);
}
.tier .btn { width: 100%; justify-content: center; padding: 15px 24px; }

.tier.featured {
  background: var(--c-navy);
  color: var(--c-cream);
}
.tier.featured .tier-name { background: var(--c-red); color: white; }
.tier.featured .tier-price { color: white; }
.tier.featured .tier-sub { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.12); }
.tier.featured li { color: rgba(255,255,255,0.92); }
.tier.featured li::before { background: var(--c-green); }
.tier.featured .blob.b-green {
  width: 200px; height: 200px;
  bottom: -20%; right: -10%;
  opacity: 0.7;
  z-index: 0;
  position: absolute;
}
.tier.featured > * { position: relative; z-index: 2; }
.tier.featured .featured-badge {
  position: absolute;
  top: 32px; right: 28px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-green);
  z-index: 3;
}

/* "All benefits included" indicator inside tier cards */
.tier-included {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 28px;
  padding: 10px 14px;
  background: var(--c-cream);
  border-radius: 999px;
  align-self: flex-start;
  line-height: 1.4;
}
.tier-included::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
}
.tier.featured .tier-included {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}

/* Bienfaiteur callout — sits below the tier grid */
.bienfaiteur-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 28px;
  background: var(--c-paper);
  border-radius: 999px;
  border: 1.5px dashed var(--c-line);
  margin-bottom: 60px;
}
.bienfaiteur-text {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.bienfaiteur-text .label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-red);
}
.bienfaiteur-text .desc {
  font-size: 14px;
  color: var(--c-ink);
}
.bienfaiteur-text .desc strong { color: var(--c-navy); font-weight: 600; }

/* Vos avantages section header */
.benefits-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-top: 20px;
}
.benefits-head h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.benefits-head h3 em {
  font-style: italic;
  color: var(--c-green);
  font-variation-settings: "opsz" 96, "wght" 400;
  text-transform: lowercase;
  letter-spacing: -0.03em;
}
.benefits-head .lede {
  max-width: 380px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-mute);
  padding-bottom: 8px;
}

/* Benefits grid */
/* Benefits grid — 12-col bento with mixed sizes */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-bottom: 60px;
}
@media (max-width: 880px) {
  .benefits-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 540px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

.benefit-card {
  position: relative;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: 24px;
  padding: 28px 26px 28px;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.5,0,.2,1), border-color .35s ease, box-shadow .35s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(1,48,104,0.25);
}

/* Bento spans */
.benefit-card.span-3 { grid-column: span 3; }
.benefit-card.span-4 { grid-column: span 4; }
.benefit-card.span-5 { grid-column: span 5; }
.benefit-card.span-6 { grid-column: span 6; }
.benefit-card.span-7 { grid-column: span 7; }
.benefit-card.span-8 { grid-column: span 8; }
.benefit-card.span-12 { grid-column: span 12; }

@media (max-width: 880px) {
  .benefit-card.span-3,
  .benefit-card.span-4,
  .benefit-card.span-5 { grid-column: span 3; }
  .benefit-card.span-6,
  .benefit-card.span-7,
  .benefit-card.span-8 { grid-column: span 6; }
  .benefit-card.span-12 { grid-column: span 6; }
}
@media (max-width: 540px) {
  .benefit-card.span-3,
  .benefit-card.span-4,
  .benefit-card.span-5,
  .benefit-card.span-6,
  .benefit-card.span-7,
  .benefit-card.span-8,
  .benefit-card.span-12 { grid-column: span 1; }
}

/* Numbered eyebrow */
.benefit-num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--c-mute);
  z-index: 2;
}

/* Title */
.benefit-title {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-top: auto;
  margin-bottom: 10px;
  color: var(--c-ink);
  text-transform: uppercase;
  z-index: 2;
}
.benefit-title em {
  font-style: italic;
  font-variation-settings: "opsz" 96, "wght" 400;
  text-transform: lowercase;
}

.benefit-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-mute);
  z-index: 2;
}

/* Color variants */
.benefit-card.cream { background: var(--c-cream); border-color: transparent; }
.benefit-card.navy {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: white;
}
.benefit-card.navy .benefit-num { color: rgba(255,255,255,0.55); }
.benefit-card.navy .benefit-title { color: white; }
.benefit-card.navy .benefit-title em { color: var(--c-green); }
.benefit-card.navy .benefit-desc { color: rgba(255,255,255,0.7); }

.benefit-card.red {
  background: var(--c-red);
  border-color: var(--c-red);
  color: white;
}
.benefit-card.red .benefit-num { color: rgba(255,255,255,0.65); }
.benefit-card.red .benefit-title { color: white; }
.benefit-card.red .benefit-title em { color: rgba(255,255,255,0.85); }
.benefit-card.red .benefit-desc { color: rgba(255,255,255,0.85); }

.benefit-card.green {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-navy-deep);
}
.benefit-card.green .benefit-num { color: rgba(0,26,58,0.6); }
.benefit-card.green .benefit-title { color: var(--c-navy-deep); }
.benefit-card.green .benefit-desc { color: rgba(0,26,58,0.7); }

/* Photo hero card */
.benefit-card.photo {
  color: white;
  border-color: transparent;
  min-height: 360px;
  background: var(--c-navy-deep);
}
.benefit-card.photo .benefit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.benefit-card.photo .benefit-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(.5,0,.2,1);
}
.benefit-card.photo:hover .benefit-bg img {
  transform: scale(1.04);
}
.benefit-card.photo .benefit-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,31,0) 0%, rgba(10,15,31,0.3) 40%, rgba(10,15,31,0.85) 90%),
    linear-gradient(135deg, rgba(1,48,104,0.4), transparent 50%);
}
.benefit-card.photo .benefit-num,
.benefit-card.photo .benefit-title,
.benefit-card.photo .benefit-desc { color: white; }
.benefit-card.photo .benefit-num { color: rgba(255,255,255,0.7); }
.benefit-card.photo .benefit-desc { color: rgba(255,255,255,0.85); max-width: 460px; }
.benefit-card.photo .benefit-title {
  font-size: clamp(34px, 4.5vw, 56px);
}

/* Stat card — for the MEA −10% */
.benefit-card.stat .benefit-stat {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: clamp(64px, 8vw, 100px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--c-red);
  margin-top: 20px;
  margin-bottom: 4px;
  z-index: 2;
}
.benefit-card.stat .benefit-stat sup {
  font-size: 0.4em;
  vertical-align: top;
  font-variation-settings: "wght" 500;
  margin-left: 2px;
}
.benefit-card.stat .benefit-mea-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 0;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-mute);
  z-index: 2;
}
.benefit-card.stat .benefit-mea-mark img {
  height: 14px;
  width: auto;
  opacity: 0.75;
}
.benefit-card.stat .benefit-title {
  margin-top: 0;
}

/* Big number ornament for some cards */
.benefit-card .benefit-big-num {
  position: absolute;
  top: -10px;
  right: -8px;
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: clamp(140px, 18vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: rgba(0,0,0,0.04);
  z-index: 1;
  pointer-events: none;
  font-style: italic;
}
.benefit-card.navy .benefit-big-num { color: rgba(255,255,255,0.06); }
.benefit-card.red .benefit-big-num { color: rgba(255,255,255,0.1); }
.benefit-card.green .benefit-big-num { color: rgba(0,26,58,0.08); }

.payment-info {
  background: var(--c-paper);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) { .payment-info { grid-template-columns: 1fr; gap: 24px; } }
.payment-info dt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 10px;
}
.payment-info dd { font-size: 14px; line-height: 1.55; color: var(--c-ink); }
.payment-info code {
  font-family: var(--f-mono);
  font-size: 12.5px;
  background: var(--c-cream);
  padding: 3px 7px;
  border-radius: 5px;
}
.payment-info a { color: var(--c-blue); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }

/* ─────────────────────────────────────
   BUREAU
   ───────────────────────────────────── */
.bureau {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--c-paper);
  border-top: 1px solid var(--c-line);
}
.bureau-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}
@media (max-width: 880px) { .bureau-head { grid-template-columns: 1fr; gap: 24px; } }
.bureau h2 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.bureau h2 em {
  font-style: italic;
  color: var(--c-blue);
  font-variation-settings: "opsz" 96, "wght" 400;
  text-transform: lowercase;
}
.bureau-intro {
  color: var(--c-mute);
  font-size: 16px;
  line-height: 1.55;
  padding-bottom: 12px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card {
  position: relative;
  border: 1px solid var(--c-line);
  background: var(--c-cream);
  border-radius: 18px;
  padding: 24px 22px;
  transition: all .35s cubic-bezier(.5,0,.2,1);
  overflow: hidden;
  isolation: isolate;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.team-card:hover {
  background: var(--c-ink);
  color: white;
  transform: translateY(-4px);
}
.team-num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--c-mute);
}
.team-card:hover .team-num { color: var(--c-green); }
.team-name {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 36, "wght" 500;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 24px;
}
span.specialty {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-top: 12px;
}
.team-card.cta {
  background: var(--c-red);
  color: white;
  border-color: var(--c-red);
}
.team-card.cta:hover { background: var(--c-red-soft); }
.team-card.cta .team-num { color: rgba(255,255,255,0.7); }
.team-card.cta .team-name {
  font-style: italic;
  font-variation-settings: "opsz" 36, "wght" 400;
}

/* ─────────────────────────────────────
   FOOTER
   ───────────────────────────────────── */
.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.footer .blob.b-red {
  width: 180px; height: 180px;
  top: -10%; right: 10%;
  opacity: 0.5;
  filter: blur(30px);
  z-index: 0;
}
.footer .blob.b-green {
  width: 200px; height: 200px;
  bottom: -10%; left: 30%;
  opacity: 0.4;
  filter: blur(40px);
  z-index: 0;
}
.footer-mega {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}
.footer-mega-text {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(60px, 14vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: white;
  text-transform: uppercase;
}
.footer-mega-text em {
  font-style: italic;
  color: var(--c-green);
  font-variation-settings: "opsz" 96, "wght" 400;
  text-transform: lowercase;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255,255,255,0.55);
  margin-top: 18px;
}
.footer h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 14px; }
.footer li a { transition: color .2s ease; }
.footer li a:hover { color: var(--c-green); }
.footer-bottom {
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.footer-bottom a { transition: color .2s ease; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* Footer agency partner credit */
.footer-partner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
}
.footer-partner-eyebrow {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-partner-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  display: inline-block;
}
.footer-partner-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  transition: background .25s ease, border-color .25s ease, transform .25s cubic-bezier(.5,0,.2,1);
}
.footer-partner-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
.footer-partner-logo {
  background: white;
  padding: 6px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  height: 40px;
  flex-shrink: 0;
}
.footer-partner-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.footer-partner-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.footer-partner-label {
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-partner-name {
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: white;
}
.footer-partner-arrow {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-left: 4px;
  transition: transform .25s cubic-bezier(.5,0,.2,1);
}
.footer-partner-link:hover .footer-partner-arrow {
  transform: translate(3px, -3px) rotate(0deg);
  color: var(--c-green);
}

@media (max-width: 600px) {
  .footer-partner-row { justify-content: flex-start; }
  .footer-partner-eyebrow::before { display: none; }
}

img.logo {
    width: 180px;
}
/* ─────────────────────────────────────
   REVEALS
   ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}