/* =========================================================
   S&A GLOBAL — Modern minimal, Pretendard, red point
   ========================================================= */

:root {
  /* === LIGHT THEME (default) === */
  --bg:        oklch(0.99 0.003 60);
  --bg-soft:   oklch(0.965 0.005 60);
  --bg-tint:   oklch(0.55 0.205 27 / .05);
  --bg-overlay: oklch(0.99 0.003 60 / .92);

  --ink:       oklch(0.17 0.006 30);
  --ink-2:     oklch(0.36 0.008 30);
  --ink-3:     oklch(0.55 0.008 30);
  --ink-4:     oklch(0.70 0.008 30);

  --border:    oklch(0.92 0.005 30);
  --border-2:  oklch(0.85 0.006 30);
  --border-strong: oklch(0.30 0.006 30);

  --red:       oklch(0.55 0.205 27);
  --red-dark:  oklch(0.46 0.180 27);
  --red-soft:  oklch(0.55 0.205 27 / .10);

  --shadow-card: 0 1px 2px oklch(0.15 0.01 30 / .04);

  color-scheme: light;

  /* Type — Pretendard for KO/EN, Noto Sans fallbacks for JP/CN/Thai/Khmer */
  --t: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
       system-ui, "Apple SD Gothic Neo", "Noto Sans KR",
       "Noto Sans JP", "Noto Sans SC", "Noto Sans Thai", "Noto Sans Khmer",
       sans-serif;

  /* Scale */
  --t--1: 0.9375rem;  /* 15 */
  --t-0:  1.0625rem;  /* 17 */
  --t-1:  1.1875rem;  /* 19 */
  --t-2:  1.5rem;     /* 24 */
  --t-3:  1.9375rem;  /* 31 */
  --t-4:  2.5rem;     /* 40 */
  --t-5:  3.25rem;    /* 52 */
  --t-hero: clamp(2.5rem, 2.1rem + 2.8vw, 4.25rem);

  /* Space — 4pt scale */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  --ease: cubic-bezier(.22, 1, .36, 1);

  --gutter: clamp(20px, 4vw, 56px);
  --max: 1200px;
  --radius: 8px;
  --radius-sm: 4px;
}

/* === DARK THEME === */
:root[data-theme="dark"] {
  --bg:        oklch(0.14 0.012 30);
  --bg-soft:   oklch(0.10 0.014 30);
  --bg-tint:   oklch(0.62 0.205 27 / .12);
  --bg-overlay: oklch(0.14 0.012 30 / .92);

  --ink:       oklch(0.96 0.005 60);
  --ink-2:     oklch(0.78 0.008 50);
  --ink-3:     oklch(0.58 0.010 40);
  --ink-4:     oklch(0.42 0.012 35);

  --border:    oklch(0.24 0.012 30);
  --border-2:  oklch(0.34 0.014 30);
  --border-strong: oklch(0.70 0.012 30);

  --red:       oklch(0.62 0.205 27);
  --red-dark:  oklch(0.55 0.180 27);
  --red-soft:  oklch(0.62 0.205 27 / .15);

  --shadow-card: 0 1px 2px oklch(0 0 0 / .35);

  color-scheme: dark;
}

/* Light is the default. Dark requires explicit data-theme="dark". */

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote, table { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--t);
  font-size: var(--t-0);
  font-weight: 400;
  line-height: 1.65;
  font-variant-numeric: tabular-nums lining-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.accent { color: var(--red); }
.muted { color: var(--ink-3); }

/* ===========================================================
   HEADER
   =========================================================== */
.head {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-4) var(--gutter);
  background: var(--bg-overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.head__end {
  display: inline-flex; align-items: center; gap: var(--sp-3);
}
.head__tools {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}

/* Language switcher */
.head__lang {
  position: relative;
}
.head__lang-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px;
  padding: 0 10px 0 10px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink-2);
  font-family: inherit;
  font-size: var(--t--1);
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.head__lang-btn:hover { color: var(--red); border-color: var(--red); transform: translateY(-1px); }
.head__lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", system-ui, sans-serif;
  font-variation-settings: normal;
  flex-shrink: 0;
  filter: saturate(1.05);
}
.head__lang-flag--current { font-size: 15px; }
.head__lang-label { line-height: 1; }
.head__lang-caret {
  width: 9px; height: 5px;
  margin-left: 2px;
  transition: transform .2s var(--ease);
}
.head__lang.is-open .head__lang-caret { transform: rotate(180deg); }

.head__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  padding: 6px;
  margin: 0;
  list-style: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -28px oklch(0 0 0 / 0.35);
  z-index: 50;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
  pointer-events: none;
}
.head__lang.is-open .head__lang-menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.head__lang-menu li { margin: 0; }
.head__lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  font-family: inherit;
  font-size: var(--t--1);
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background-color .15s var(--ease), color .15s var(--ease);
}
.head__lang-menu button .head__lang-flag { font-size: 16px; }
.head__lang-menu button:hover {
  background: var(--bg-soft);
  color: var(--ink);
}
.head__lang-menu li[aria-selected="true"] button {
  color: var(--red);
  font-weight: 700;
  background: oklch(0.97 0.012 30 / 0.6);
}
:root[data-theme="dark"] .head__lang-menu li[aria-selected="true"] button {
  background: oklch(0.30 0.018 30 / 0.5);
}

@media (max-width: 640px) {
  .head__lang-label { display: none; }
  .head__lang-btn { padding: 0; width: 36px; justify-content: center; }
  .head__lang-caret { display: none; }
}

.head__theme {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  padding: 0;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.head__theme:hover { color: var(--red); border-color: var(--red); transform: translateY(-1px); }
.head__theme svg { width: 16px; height: 16px; }
.head__theme .head__theme-sun  { display: block; }
.head__theme .head__theme-moon { display: none; }

/* Sun is default (light mode), moon shows when dark is active */
:root[data-theme="dark"] .head__theme .head__theme-sun  { display: none; }
:root[data-theme="dark"] .head__theme .head__theme-moon { display: block; }
.head__brand {
  display: inline-flex; align-items: center;
  color: var(--ink);
}
.head__logo {
  display: block;
  width: auto;
  height: 56px;
  object-fit: contain;
  transition: opacity .2s var(--ease);
}
.head__brand:hover .head__logo { opacity: .82; }

/* Theme-aware logo: red on light, gold on dark — img selector bumps specificity */
img.head__logo--dark { display: none; }
:root[data-theme="dark"] img.head__logo--light { display: none; }
:root[data-theme="dark"] img.head__logo--dark  { display: block; }
.head__nav {
  display: flex; justify-content: center; gap: var(--sp-6);
  font-size: var(--t--1);
  font-weight: 500;
  color: var(--ink-2);
}
.head__nav a {
  padding-block: 4px;
  transition: color .25s var(--ease);
}
.head__nav a:hover { color: var(--red-dark); }
.head__office {
  font-size: var(--t--1);
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 14px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.head__office:hover { color: var(--red); border-color: var(--red); }

@media (max-width: 980px) {
  .head { grid-template-columns: 1fr auto; }
  .head__nav { display: none; }
}

/* ===========================================================
   BUTTON
   =========================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  font-size: var(--t--1);
  font-weight: 600;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--bg);
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn--primary {
  background: var(--red);
  color: var(--bg);
  border-color: var(--red);
}
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--bg); }

/* ===========================================================
   HERO — full-bleed video, always-dark zone
   =========================================================== */
.hero {
  /* Hero is always a dark cinematic zone, regardless of page theme */
  --hero-bg:       oklch(0.09 0.020 30);
  --hero-ink:      oklch(0.97 0.005 60);
  --hero-ink-2:    oklch(0.82 0.010 50);
  --hero-ink-3:    oklch(0.62 0.012 40);
  --hero-border:   oklch(0.30 0.015 30);
  --hero-border-2: oklch(0.42 0.015 30);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(640px, 92vh, 880px);
  display: flex; align-items: center;
  background: var(--hero-bg);
  color: var(--hero-ink);
}
.hero__bg {
  position: absolute;
  inset: -8px;  /* slight overscale to hide blur edges */
  width: calc(100% + 16px); height: calc(100% + 16px);
  object-fit: cover;
  z-index: 0;
  filter: blur(4px) saturate(1.05) contrast(1.06);
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* asymmetric darken — stronger on text side, lighter on right */
    linear-gradient(
      90deg,
      color-mix(in oklch, var(--hero-bg) 78%, transparent) 0%,
      color-mix(in oklch, var(--hero-bg) 68%, transparent) 35%,
      color-mix(in oklch, var(--hero-bg) 50%, transparent) 65%,
      color-mix(in oklch, var(--hero-bg) 40%, transparent) 100%
    ),
    /* bottom vignette for live pill area */
    linear-gradient(
      180deg,
      transparent 60%,
      color-mix(in oklch, var(--hero-bg) 30%, transparent) 100%
    );
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: clamp(48px, 9vh, 120px) var(--gutter);
  display: flex; flex-direction: column;
  gap: var(--sp-5);
}

/* Hero entrance animation — sequential fade-up on page load */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero__eyebrow,
.hero__title,
.hero__sub,
.hero__cta,
.trust,
.hero__scroll,
.hero__live {
  opacity: 0;
  animation: heroRise .9s var(--ease) forwards;
}
.hero__eyebrow { animation-delay: .15s; }
.hero__title   { animation-delay: .30s; }
.hero__sub     { animation-delay: .50s; }
.hero__cta     { animation-delay: .68s; }
.trust         { animation-delay: .85s; }
.hero__scroll  { animation-delay: 1.0s; }
.hero__live    { animation-delay: 1.15s; }

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__title, .hero__sub,
  .hero__cta, .trust, .hero__scroll, .hero__live {
    opacity: 1;
    animation: none;
  }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--t--1);
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.02em;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
}
.hero__title {
  font-size: var(--t-hero);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.028em;
  color: var(--hero-ink);
  max-width: 22ch;
  text-shadow: 0 1px 24px oklch(0.05 0.02 30 / .4);
}
.hero__sub {
  font-size: var(--t-1);
  line-height: 1.7;
  color: var(--hero-ink-2);
  max-width: 56ch;
  text-shadow: 0 1px 12px oklch(0.05 0.02 30 / .35);
}
.hero__cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* Secondary button inside hero — bright outline on dark video */
.hero .btn:not(.btn--primary) {
  background: transparent;
  color: var(--hero-ink);
  border-color: var(--hero-border-2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero .btn:not(.btn--primary):hover {
  border-color: var(--hero-ink);
  color: var(--hero-ink);
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0;
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--hero-border);
  width: max-content;
  max-width: 100%;
}
.trust li {
  display: flex; flex-direction: column; gap: 4px;
  padding-right: var(--sp-5);
}
.trust li + li { padding-left: var(--sp-5); border-left: 1px solid var(--hero-border); }
.trust__num {
  font-size: var(--t-3);
  font-weight: 700;
  color: var(--hero-ink);
  letter-spacing: -0.024em;
  line-height: 1.1;
}
.trust__num small {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--hero-ink-3);
  padding-left: 4px;
}
.trust__lbl {
  font-size: var(--t--1);
  color: var(--hero-ink-3);
  font-weight: 500;
}

/* Floating "live" pill (was the figcaption on the old visual) */
.hero__live {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(40px, 7vh, 80px);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: oklch(0.05 0.02 30 / .55);
  color: oklch(0.98 0.005 60);
  font-size: var(--t--1);
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.hero__live-dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px oklch(0.55 0.205 27 / .25);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.55 0.205 27 / .5); }
  100% { box-shadow: 0 0 0 8px oklch(0.55 0.205 27 / 0); }
}

.hero__scroll {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: var(--sp-4);
  padding: 8px 4px;
  width: max-content;
  font-size: var(--t--1);
  font-weight: 500;
  color: var(--hero-ink-3);
  letter-spacing: 0.04em;
  transition: color .25s var(--ease);
}
.hero__scroll svg {
  width: 12px; height: 22px;
  animation: scrollHint 2s var(--ease) infinite;
}
.hero__scroll:hover { color: var(--red); }
.hero__scroll:hover svg { color: var(--red); }
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(4px); opacity: .55; }
}

@media (max-width: 920px) {
  .hero { min-height: 720px; }
  .hero__live { right: 50%; transform: translateX(50%); bottom: 24px; }
}
@media (max-width: 540px) {
  .trust { grid-template-columns: 1fr; gap: var(--sp-3); width: 100%; }
  .trust li + li { padding-left: 0; border-left: 0; padding-top: var(--sp-3); border-top: 1px solid var(--border); }
  .trust li { padding-right: 0; }
}

/* ===========================================================
   REEL — auto-scrolling image strip (two rows, opposite dirs)
   =========================================================== */
.reel {
  position: relative;
  padding: clamp(40px, 6vh, 72px) 0;
  display: grid;
  gap: clamp(12px, 1.4vw, 20px);
  overflow: hidden;
  background: var(--bg);
}
.reel__row {
  position: relative;
  overflow: hidden;
  --gap: clamp(12px, 1.4vw, 20px);
}
.reel__row::before, .reel__row::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(60px, 8vw, 140px);
  z-index: 2; pointer-events: none;
}
.reel__row::before { left: 0;  background: linear-gradient(90deg,  var(--bg), transparent); }
.reel__row::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.reel__track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  will-change: transform;
}
.reel__track figure {
  flex: 0 0 auto;
  width: clamp(220px, 22vw, 340px);
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.reel__track img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  filter: saturate(.92);
  transition: filter .4s var(--ease), transform .8s var(--ease);
}
.reel__track figure:hover img { filter: saturate(1.05); transform: scale(1.03); }

/* 24s loop covers exactly one full copy of the duplicated track */
@keyframes reelLeft  { from { transform: translateX(0); }   to { transform: translateX(-50%); } }
@keyframes reelRight { from { transform: translateX(-50%); } to { transform: translateX(0); }    }
.reel__row--left  .reel__track { animation: reelLeft  60s linear infinite; }
.reel__row--right .reel__track { animation: reelRight 70s linear infinite; }

/* Pause on hover */
.reel__row:hover .reel__track { animation-play-state: paused; }

@media (max-width: 720px) {
  .reel__track figure { width: clamp(180px, 50vw, 260px); }
  .reel__row--left  .reel__track { animation-duration: 45s; }
  .reel__row--right .reel__track { animation-duration: 50s; }
}

@media (prefers-reduced-motion: reduce) {
  .reel__track { animation: none !important; }
}

/* ===========================================================
   SECTION (shared)
   =========================================================== */
.sec {
  scroll-margin-top: 96px;
  padding: clamp(64px, 12vh, 130px) var(--gutter);
}
.sec > * { max-width: var(--max); margin-inline: auto; }
.sec--alt { background: var(--bg-soft); }

.sec__head {
  margin-bottom: var(--sp-7);
}
.sec__head > * {
  max-width: 56ch;
}
.sec__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--t--1);
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-4);
}
.sec__kicker::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--red);
}
.sec__title {
  font-size: var(--t-4);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}
.sec__lead {
  font-size: var(--t-1);
  line-height: 1.7;
  color: var(--ink-2);
}

/* ===========================================================
   ABRA
   =========================================================== */
.abra__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sp-8);
  align-items: stretch;
  margin-bottom: var(--sp-8);
}
.abra__col {
  display: flex; flex-direction: column;
}
.abra__col .sec__head { margin-bottom: var(--sp-6); }
.abra__col .sec__head > * { max-width: none; }
.abra__text p { color: var(--ink-2); line-height: 1.75; }
.abra__text p + p { margin-top: var(--sp-4); }
/* push pull quote to anchor with image bottom */
.abra__pull { margin-top: auto !important; }
.abra__text p { color: var(--ink-2); line-height: 1.75; }
.abra__text p + p { margin-top: var(--sp-4); }
.abra__pull {
  margin-top: var(--sp-7) !important;
  position: relative;
  padding-top: var(--sp-5);
  font-size: var(--t-2);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.018em;
  line-height: 1.45;
}
.abra__pull-mark {
  position: absolute;
  left: -4px; top: -10px;
  font-size: 3.2em;
  line-height: 1;
  color: var(--red);
  font-weight: 700;
}
.abra__pull-cite {
  display: block;
  margin-top: var(--sp-3);
  font-size: var(--t--1);
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0;
}

.abra__figure {
  margin: 0;
  display: flex; flex-direction: column;
  gap: var(--sp-3);
  min-height: 0;
}
.abra__figure img {
  width: 100%;
  flex: 1 1 0;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--radius);
}
.abra__figure figcaption,
.sec__figure-wide figcaption,
.gallery figure figcaption,
.aug__figure figcaption,
.genie__figure figcaption {
  margin-top: var(--sp-3);
  font-size: var(--t--1);
  color: var(--ink-3);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}
.stats > div {
  display: flex; flex-direction: column; gap: 6px;
  padding-inline: var(--sp-5);
}
.stats > div:first-child { padding-left: 0; }
.stats > div + div { border-left: 1px solid var(--border); }
.stats dt {
  font-size: var(--t--1);
  color: var(--ink-3);
  font-weight: 500;
}
.stats dd {
  font-size: var(--t-3);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--ink);
}
.stats dd small {
  font-size: 0.48em;
  font-weight: 600;
  color: var(--ink-3);
  padding-left: 4px;
  letter-spacing: 0;
}

@media (max-width: 820px) {
  .abra__split { grid-template-columns: 1fr; gap: var(--sp-6); align-items: start; }
  .abra__figure img { aspect-ratio: 4 / 3; height: auto; flex: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .stats > div { padding: 0; border: 0 !important; }
}

/* ===========================================================
   STRENGTHS (cards)
   =========================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.card {
  display: flex; flex-direction: column; gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { border-color: var(--ink-3); transform: translateY(-2px); }
.card__top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.card__num {
  display: inline-block;
  font-size: var(--t-2);
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.card__tag {
  display: inline-block;
  font-size: var(--t--1);
  font-weight: 600;
  color: var(--ink-3);
  padding: 3px 8px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
}
.card__title {
  font-size: var(--t-1);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.4;
  margin-top: var(--sp-2);
}
.card__body {
  font-size: var(--t--1);
  line-height: 1.65;
  color: var(--ink-2);
}
.cards__partners {
  margin-top: var(--sp-6);
  font-size: var(--t--1);
  color: var(--ink-3);
  text-align: center;
}

@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .cards { grid-template-columns: 1fr; }
}

/* ===========================================================
   FLOW (process steps)
   =========================================================== */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.flow li {
  position: relative;
  padding: var(--sp-5);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 4px;
}
.flow__arr {
  position: absolute;
  right: -16px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 12px;
  color: var(--ink-4);
  z-index: 1;
  background: var(--bg);
  padding: 0 4px;
}
.sec--alt .flow__arr { background: var(--bg-soft); }
.flow__num {
  font-size: var(--t--1);
  font-weight: 700;
  color: var(--red);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.02em;
}
.flow__title {
  font-size: var(--t-1);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.flow__desc {
  font-size: var(--t--1);
  color: var(--ink-2);
  line-height: 1.55;
}

@media (max-width: 820px) {
  .flow { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .flow__arr { display: none; }
}
@media (max-width: 480px) {
  .flow { grid-template-columns: 1fr; }
}

/* ===========================================================
   PRODUCTION TABLE
   =========================================================== */
.table {
  width: 100%;
  font-variant-numeric: tabular-nums lining-nums;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.table thead th {
  font-weight: 500;
  font-size: var(--t--1);
  color: var(--ink-3);
  text-align: right;
  padding: var(--sp-4) var(--sp-4);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.table thead th:first-child { text-align: left; }
.table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .2s var(--ease);
}
.table tbody tr:last-child { border-bottom: 0; }
.table tbody tr:hover { background: var(--bg-soft); }
.table tbody th {
  text-align: left;
  padding: var(--sp-5) var(--sp-4);
  font-weight: 600;
  display: flex; flex-direction: column; gap: 2px;
}
.r-name { font-size: var(--t-1); color: var(--ink); font-weight: 700; letter-spacing: -0.01em; }
.r-loc  { font-size: var(--t--1); color: var(--ink-3); font-weight: 500; }
.table td.num {
  font-size: var(--t-1);
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  padding: var(--sp-5) var(--sp-4);
}
.table td.num.accent { color: var(--red); }
.table tfoot th {
  font-weight: 700;
  font-size: var(--t-0);
  color: var(--ink);
  text-align: left;
  padding: var(--sp-5) var(--sp-4);
  background: var(--bg-soft);
  border-top: 1px solid var(--border-strong);
}
.table tfoot td {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-strong);
}
.table__note {
  margin-top: var(--sp-4);
  font-size: var(--t--1);
  color: var(--ink-3);
}

.sec__figure-wide { margin-top: var(--sp-8); }
.sec__figure-wide img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius);
}

@media (max-width: 820px) {
  .table thead { display: none; }
  .table { display: block; }
  .table tbody, .table tfoot { display: block; }
  .table tbody tr,
  .table tfoot tr {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
    padding: var(--sp-4);
  }
  .table tbody th, .table tfoot th { grid-column: 1 / -1; padding: 0 0 var(--sp-2); border: 0; background: transparent; }
  .table tbody td, .table tfoot td { padding: 0; text-align: left; border: 0; background: transparent; }
}

/* ===========================================================
   GALLERY
   =========================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  display: block;
  transition: transform .8s var(--ease), filter .4s var(--ease);
  filter: saturate(.95);
}
.gallery figure:hover img { transform: scale(1.04); filter: saturate(1.05); }
.gallery figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
  margin: 0;
  font-size: var(--t--1);
  font-weight: 600;
  color: var(--bg);
  background: linear-gradient(180deg, transparent, oklch(0.05 0.01 30 / .7));
  transform: translateY(8px);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.gallery figure:hover figcaption { transform: none; opacity: 1; }

@media (max-width: 820px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
}

/* ===========================================================
   AUG
   =========================================================== */
.aug__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sp-8);
  align-items: start;
}
.bullets {
  display: flex; flex-direction: column; gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}
.bullets li {
  position: relative;
  padding-left: 28px;
  line-height: 1.65;
  color: var(--ink-2);
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 14px;
  background: var(--red-soft);
  border-radius: 50%;
}
.bullets li::after {
  content: "";
  position: absolute;
  left: 5px; top: 14px;
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
}
.bullets strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: var(--t-1);
  letter-spacing: -0.014em;
}
.aug__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

.aug__figure { margin: 0; position: sticky; top: 100px; }
.aug__figure video {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius);
  background: var(--ink);
}

@media (max-width: 820px) {
  .aug__grid { grid-template-columns: 1fr; }
  .aug__figure { position: static; }
}

/* ===========================================================
   HOW IT WORKS (inside AUG section)
   =========================================================== */
.howit {
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
}
.howit__head { margin-bottom: var(--sp-7); max-width: 56ch; }
.howit__title {
  font-size: var(--t-3);
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}
.howit__sub {
  font-size: var(--t-0);
  color: var(--ink-3);
}
.howit__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.howit__steps li {
  padding: var(--sp-5);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: var(--sp-2);
  position: relative;
}
.howit__steps li:last-child { border-right: 0; }
.howit__steps li::before {
  content: "";
  position: absolute;
  left: var(--sp-5); top: 0;
  width: 32px; height: 2px;
  background: var(--red);
}
.howit__step {
  font-size: var(--t--1);
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.02em;
  margin-top: var(--sp-4);
}
.howit__steps h4 {
  font-size: var(--t-1);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 4px;
}
.howit__steps p {
  font-size: var(--t--1);
  line-height: 1.65;
  color: var(--ink-2);
  margin-top: 4px;
}

@media (max-width: 820px) {
  .howit__steps { grid-template-columns: repeat(2, 1fr); }
  .howit__steps li { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .howit__steps li:nth-child(2n) { border-right: 0; }
  .howit__steps li:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 480px) {
  .howit__steps { grid-template-columns: 1fr; }
  .howit__steps li { border-right: 0; border-bottom: 1px solid var(--border); }
  .howit__steps li:last-child { border-bottom: 0; }
}

/* ===========================================================
   GENIE — full-width video + stats row + CTA
   =========================================================== */
.genie__figure-wide {
  margin-bottom: var(--sp-7);
  overflow: hidden;
  border-radius: var(--radius);
}
.genie__figure-wide video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink);
  display: block;
}
.genie__figure-wide figcaption {
  margin-top: var(--sp-3);
  font-size: var(--t--1);
  color: var(--ink-3);
}

.genie__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--sp-6);
}

.kv {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.kv > div {
  display: flex; flex-direction: column; gap: 4px;
  padding: var(--sp-5);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.kv > div:nth-child(2n) { border-right: 0; }
.kv > div:nth-last-child(-n+2) { border-bottom: 0; }
.kv dt { font-size: var(--t--1); color: var(--ink-3); font-weight: 500; }
.kv dd { font-size: var(--t-2); font-weight: 700; color: var(--ink); letter-spacing: -0.022em; line-height: 1.1; }
.kv dd small { font-size: 0.5em; font-weight: 600; color: var(--ink-3); padding-left: 3px; }

/* Single-row variant for genie bottom — 4 columns, no inner bottom borders */
.kv--row {
  grid-template-columns: repeat(4, 1fr);
}
.kv--row > div {
  border-bottom: 0;
}
.kv--row > div:nth-child(2n) {
  border-right: 1px solid var(--border);
}
.kv--row > div:last-child {
  border-right: 0;
}

@media (max-width: 820px) {
  .genie__bottom { grid-template-columns: 1fr; }
  .kv--row { grid-template-columns: repeat(2, 1fr); }
  .kv--row > div { border-bottom: 1px solid var(--border); }
  .kv--row > div:nth-child(2n) { border-right: 0; }
  .kv--row > div:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ===========================================================
   TIMELINE (Roadmap)
   =========================================================== */
.timeline {
  display: flex; flex-direction: column;
}
.timeline__item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-7);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline__item:last-child { border-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: 0; top: var(--sp-6); bottom: 0;
  width: 1px; background: var(--border);
  margin-left: 6px;
}
.timeline__item:last-child::before { display: none; }
.timeline__item::after {
  content: "";
  position: absolute;
  left: 0; top: calc(var(--sp-6) + 4px);
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--ink-4);
}
.timeline__item--done::after { background: var(--red); border-color: var(--red); }
.timeline__item--active::after {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
}
.timeline__meta {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: var(--sp-6);
}
.timeline__date {
  font-size: var(--t-1);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.014em;
}
.timeline__status {
  display: inline-flex; align-items: center;
  width: fit-content;
  padding: 3px 10px;
  font-size: var(--t--1);
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  color: var(--ink-3);
}
.timeline__item--done .timeline__status {
  background: var(--red-soft);
  border-color: transparent;
  color: var(--red-dark);
}
.timeline__item--active .timeline__status {
  background: var(--red);
  border-color: transparent;
  color: var(--bg);
}
.timeline__body h3 {
  font-size: var(--t-2);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.022em;
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}
.timeline__body p {
  font-size: var(--t-0);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 60ch;
}

@media (max-width: 720px) {
  .timeline__item { grid-template-columns: 1fr; gap: var(--sp-3); padding: var(--sp-5) 0 var(--sp-5) var(--sp-6); }
  .timeline__meta { padding-left: 0; flex-direction: row; align-items: center; gap: var(--sp-3); }
  .timeline__item::before { left: 6px; }
  .timeline__item::after { left: 0; }
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq {
  border-top: 1px solid var(--border-2);
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  cursor: pointer;
  list-style: none;
  transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover .faq__q { color: var(--red-dark); }
.faq__q {
  font-size: var(--t-1);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.014em;
  line-height: 1.4;
  transition: color .2s var(--ease);
}
.faq__plus {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: var(--ink-2);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.faq__plus::before {
  left: 2px; right: 2px; top: 9px; height: 2px;
}
.faq__plus::after {
  top: 2px; bottom: 2px; left: 9px; width: 2px;
}
.faq__item[open] .faq__plus::after { transform: rotate(90deg); background: var(--red); }
.faq__item[open] .faq__plus::before { background: var(--red); }
.faq__item[open] .faq__q { color: var(--red-dark); }
.faq__a {
  padding: 0 var(--sp-6) var(--sp-5) 0;
  font-size: var(--t-0);
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 80ch;
}

/* ===========================================================
   CLOSING CTA
   =========================================================== */
.closing {
  padding: clamp(64px, 12vh, 130px) var(--gutter);
  background: var(--bg);
  border-block: 1px solid var(--border);
}
.closing__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: left;
}
.closing__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--t--1);
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-4);
}
.closing__kicker::before,
.closing__kicker::after {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--red);
}
.closing__title {
  font-size: var(--t-5);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: var(--sp-4);
  max-width: 18ch;
}
.closing__sub {
  font-size: var(--t-1);
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: var(--sp-6);
  max-width: 60ch;
}
.closing__cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* ===========================================================
   PRESS — magazine cover story
   =========================================================== */
.press__split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: var(--sp-8);
  align-items: start;
  margin-bottom: var(--sp-8);
}
.press__cover {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow:
    0 1px 0 var(--border) inset,
    0 22px 60px -28px oklch(0 0 0 / 0.25);
  transform: rotate(-0.4deg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.press__cover:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow:
    0 1px 0 var(--border) inset,
    0 32px 80px -32px oklch(0 0 0 / 0.32);
}
.press__cover img {
  display: block;
  width: 100%;
  height: auto;
}
.press__cover-corner {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--red);
  border-radius: var(--radius-sm);
}
.press__cover-corner::before {
  content: "";
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
}

.press__editorial {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding-top: var(--sp-4);
}
.press__source {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--t--1);
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.press__source strong {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.press__source-dot {
  width: 4px; height: 4px;
  background: var(--ink-4);
  border-radius: 50%;
}
.press__headline {
  font-size: var(--t-4);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.press__headline .accent { color: var(--red); }
.press__quote {
  position: relative;
  padding: var(--sp-4) 0 var(--sp-4) var(--sp-5);
  border-left: 2px solid var(--red);
  font-size: var(--t-1);
  line-height: 1.75;
  color: var(--ink-2);
}
.press__byline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--t--1);
  color: var(--ink-3);
}
.press__byline span + span { position: relative; padding-left: var(--sp-4); }
.press__byline span + span::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1px; height: 12px;
  background: var(--border-2);
  transform: translateY(-50%);
}

.press__spreads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.press__spread {
  display: flex; flex-direction: column;
  gap: var(--sp-3);
}
.press__spread-figure {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.press__spread-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.press__spread:hover .press__spread-figure img {
  transform: scale(1.03);
}
.press__spread-num {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: oklch(1 0 0 / 0.85);
  backdrop-filter: blur(6px);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.press__spread-cap {
  font-size: var(--t--1);
  line-height: 1.55;
  color: var(--ink-2);
}
.press__spread-cap strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

@media (max-width: 980px) {
  .press__split { grid-template-columns: 1fr; gap: var(--sp-6); }
  .press__cover { max-width: 460px; margin-inline: auto; transform: none; }
  .press__editorial { padding-top: 0; }
  .press__headline { font-size: var(--t-3); }
  .press__spreads { grid-template-columns: 1fr; }
}

/* ===========================================================
   EVENTS — leader meeting schedule
   =========================================================== */
.events {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.event {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.event:hover {
  transform: translateY(-3px);
  border-color: var(--ink-3);
  box-shadow: 0 18px 50px -28px oklch(0 0 0 / 0.25);
}
.event__poster {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-soft);
}
.event__poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.event:hover .event__poster img { transform: scale(1.04); }
.event__status {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: oklch(1 0 0 / 0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.event__status::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--red);
  animation: eventPulse 2s ease-out infinite;
}
@keyframes eventPulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.55 0.18 30 / 0.5); }
  100% { box-shadow: 0 0 0 10px oklch(0.55 0.18 30 / 0); }
}
.event--done .event__status { color: var(--ink-3); }
.event--done .event__status::before {
  background: var(--ink-4);
  animation: none;
  box-shadow: none;
}

.event__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  border-top: 1px solid var(--border);
}
.event__city {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
}
.event__city-ko {
  font-size: var(--t-2);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.event__city-en {
  font-size: var(--t--1);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink-4);
}
.event__date {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  font-size: var(--t-1);
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.01em;
}
.event__time {
  font-size: var(--t--1);
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0;
}
.event__meta {
  display: grid;
  gap: 6px;
  padding-top: var(--sp-3);
  margin-top: var(--sp-2);
  border-top: 1px dashed var(--border-2);
  font-size: var(--t--1);
  line-height: 1.55;
  color: var(--ink-2);
}
.event__meta dt {
  display: inline-block;
  width: 44px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.event__meta dd { display: inline; margin: 0; }
.event__meta-row { display: flex; gap: var(--sp-2); align-items: baseline; }
.event__meta-row dd { color: var(--ink); }

.events__note {
  margin-top: var(--sp-6);
  font-size: var(--t--1);
  color: var(--ink-3);
  text-align: center;
}

@media (max-width: 1180px) {
  .events { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .events { grid-template-columns: 1fr; }
}

/* ===========================================================
   FOOTER
   =========================================================== */
.foot {
  padding: var(--sp-7) var(--gutter) var(--sp-6);
}
.foot__top,
.foot__bottom {
  max-width: var(--max);
  margin-inline: auto;
}
.foot__top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.foot__brand {
  display: inline-flex; align-items: center;
  color: var(--ink);
  transition: opacity .2s var(--ease);
}
.foot__brand:hover { opacity: .82; }
.foot__logo {
  display: block;
  width: auto;
  height: 72px;
  object-fit: contain;
}
.foot__tagline {
  font-size: var(--t--1);
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.foot__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--t--1);
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: var(--sp-3);
}

@media (max-width: 720px) {
  .foot__bottom { flex-direction: column; align-items: flex-start; }
}

/* ===========================================================
   Scroll reveal
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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