/* ============================================================
   NORTHBRIDGE GROUP — Corporate Evening 2027
   Premium corporate identity · Deep navy × warm gold × cream
   Typeset in Inter (display) × FiraGO (Georgian body)
   ============================================================ */

:root {
  /* ── Palette ── */
  --navy:       #0d1f2d;
  --navy-2:     #152637;
  --navy-3:     #1e3448;
  --gold:       #c9a96e;
  --gold-2:     #e8c98a;
  --gold-3:     #f5e6c8;
  --cream:      #f9f6f0;
  --cream-2:    #f3ede3;
  --white:      #ffffff;
  --ink:        #0d1f2d;
  --muted:      #5c7a8a;
  --line:       rgba(13, 31, 45, .10);
  --line-light: rgba(255, 255, 255, .14);

  /* ── Shadow ── */
  --shadow-sm:  0 2px 12px rgba(13, 31, 45, .07);
  --shadow-md:  0 12px 48px rgba(13, 31, 45, .12);
  --shadow-lg:  0 32px 100px rgba(13, 31, 45, .18);

  /* ── Type ── */
  --font-en:    "Inter", system-ui, -apple-system, sans-serif;
  --font-ka:    "FiraGO", "Inter", sans-serif;

  /* ── Motion ── */
  --ease:       cubic-bezier(.22, .75, .18, 1);
  --ease-out:   cubic-bezier(0, 0, .22, 1);

  /* ── Layout ── */
  --container:  1180px;
  --radius:     3px;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ka);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; cursor: pointer; }
img, svg { display: block; }

/* ── Container ──────────────────────────────────── */
.container {
  width: min(var(--container), calc(100% - 56px));
  margin-inline: auto;
}

/* ── Kicker ──────────────────────────────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker-light { color: rgba(201, 169, 110, .85); }

/* ── Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.show { opacity: 1; transform: none; }

/* ── Section ─────────────────────────────────────── */
.section { position: relative; padding: clamp(96px, 10vw, 152px) 0; }


/* ══════════════════════════════════════════════════
   CURSOR
══════════════════════════════════════════════════ */
.cursor {
  pointer-events: none;
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), opacity .3s var(--ease);
  z-index: 9999;
  mix-blend-mode: multiply;
}
body:hover .cursor { opacity: 1; }


/* ══════════════════════════════════════════════════
   LOADER
══════════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: var(--navy);
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.loader-logo {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201, 169, 110, .35);
  display: grid;
  place-items: center;
  animation: loader-pulse 2s ease-in-out infinite;
}
.loader-nb {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold);
}
.loader-bar {
  width: 160px;
  height: 1px;
  background: rgba(201, 169, 110, .18);
  overflow: hidden;
}
.loader-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  animation: loader-slide 1.6s var(--ease) infinite;
}
.loader p {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, .6);
}
@keyframes loader-pulse {
  0%, 100% { opacity: .6; transform: scale(.97); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes loader-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}


/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.topbar.scrolled {
  padding-block: 18px;
  background: rgba(249, 246, 240, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line), 0 8px 32px rgba(13, 31, 45, .06);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  flex-shrink: 0;
  transition: background .28s var(--ease);
}
.brand:hover .brand-mark { background: var(--gold); color: var(--navy); }
.brand-text { display: flex; flex-direction: column; gap: 3px; }
.brand-text span {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--navy);
}
.brand-text small {
  font-family: var(--font-en);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: .52em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  position: relative;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(13, 31, 45, .6);
  transition: color .25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { width: 100%; }

/* Topbar right */
.topbar-right { display: flex; align-items: center; gap: 16px; }

.music-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  height: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  transition: .28s var(--ease);
}
.music-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.music-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.music-btn svg { fill: currentColor; }
.icon-pause { display: none; }
.music-btn.active .icon-music { display: none; }
.music-btn.active .icon-pause { display: block; }
.music-label { line-height: 1; }

.nav-cta {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 20px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: .28s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }


/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  background: url("northbridge-hero.png") center/cover no-repeat;
  opacity: .18;
  filter: saturate(.7) contrast(1.1);
  animation: heroFloat 20s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 75% 55%, rgba(201, 169, 110, .06), transparent 65%),
    linear-gradient(155deg, rgba(13, 31, 45, .8) 0%, rgba(13, 31, 45, .4) 55%, rgba(13, 31, 45, .85) 100%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
@keyframes heroFloat {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.01) translate(-8px, 10px); }
}

/* Grid lines on hero */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 88px 88px;
}

/* Ambient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.orb-1 {
  width: min(600px, 55vw);
  height: min(600px, 55vw);
  right: -8%;
  top: -10%;
  background: radial-gradient(circle, rgba(201, 169, 110, .09), transparent 65%);
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb-2 {
  width: min(400px, 40vw);
  height: min(400px, 40vw);
  left: -5%;
  bottom: -5%;
  background: radial-gradient(circle, rgba(77, 140, 190, .07), transparent 65%);
  animation: orbFloat 15s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, -30px) scale(1.06); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1000px, calc(100% - 56px));
  margin: 0 auto;
  padding-block: 130px 80px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, .78);
}
.hero-eyebrow .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6;
  flex-shrink: 0;
}
.hero-title {
  display: block;
  font-family: var(--font-en);
  font-weight: 200;
  letter-spacing: -.04em;
  line-height: .88;
  color: var(--white);
}
.hero-title-top {
  display: block;
  font-size: clamp(72px, 10.5vw, 148px);
}
.hero-title-bottom {
  display: block;
  font-size: clamp(72px, 10.5vw, 148px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .38);
  margin-left: clamp(30px, 4vw, 60px);
}
.hero-meta { margin-top: 36px; }
.hero-lead {
  font-family: var(--font-ka);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, .72);
  max-width: 580px;
}
.hero-copy {
  margin-top: 16px;
  font-family: var(--font-ka);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, .46);
  max-width: 520px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  max-width: 700px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 36px;
}
.hero-stat strong {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.04em;
  color: var(--gold-2);
  line-height: 1;
}
.hero-stat span {
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}
.hero-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .12);
  margin-right: 36px;
  flex-shrink: 0;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  animation: scrollBounce 2.2s ease-in-out infinite;
  transition: color .25s var(--ease);
}
.scroll-cue svg { stroke: currentColor; }
.scroll-cue:hover { color: var(--gold); }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}


/* ── Buttons ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: .28s var(--ease);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 169, 110, .35); }
.btn-primary svg { stroke: currentColor; flex-shrink: 0; }

.btn-light {
  background: rgba(255, 255, 255, .14);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(12px);
}
.btn-light:hover { background: rgba(255, 255, 255, .22); transform: translateY(-2px); box-shadow: none; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: transparent;
  color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 255, 255, .2);
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: .28s var(--ease);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, .5); color: #fff; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: .28s var(--ease);
  margin-top: 32px;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); transform: translateY(-2px); }
.btn-outline svg { stroke: currentColor; flex-shrink: 0; }


/* ══════════════════════════════════════════════════
   INTRO
══════════════════════════════════════════════════ */
.intro { background: var(--cream); }
.intro-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.intro-left h2 {
  font-family: var(--font-ka);
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .9;
  color: var(--navy);
  margin-top: 18px;
}
.intro-letter {
  padding: 52px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.intro-letter p {
  font-size: 16px;
  line-height: 1.95;
  color: rgba(13, 31, 45, .72);
}
.intro-letter p + p { margin-top: 22px; }
.intro-sig {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.sig-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.sig-name {
  display: block;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
}
.sig-role {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}


/* ══════════════════════════════════════════════════
   BRAND STORY
══════════════════════════════════════════════════ */
.brand-story {
  position: relative;
  padding: clamp(96px, 10vw, 152px) 0;
  background: var(--navy);
  overflow: hidden;
}
.brand-story-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.story-left .kicker { margin-bottom: 18px; }
.story-left h2 {
  font-family: var(--font-ka);
  font-size: clamp(36px, 4.2vw, 66px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .95;
  color: var(--white);
  margin-bottom: 26px;
}
.story-left p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .58);
}
.story-left .btn-outline {
  border-color: rgba(201, 169, 110, .35);
  color: var(--gold);
}
.story-left .btn-outline:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Metrics */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .06);
}
.metric-card {
  position: relative;
  padding: 42px 36px;
  background: rgba(255, 255, 255, .04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  overflow: hidden;
  transition: background .3s var(--ease);
}
.metric-card:hover { background: rgba(201, 169, 110, .06); }
.metric-card .counter {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(46px, 5.5vw, 72px);
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: .85;
  color: var(--white);
}
.metric-card span {
  display: block;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .45);
  font-family: var(--font-ka);
}
.metric-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .5s var(--ease);
}
.metric-card:hover .metric-accent { width: 100%; }


/* ══════════════════════════════════════════════════
   EVENT SECTION
══════════════════════════════════════════════════ */
.event-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.event-bg { position: absolute; inset: 0; z-index: 0; }
.event-img {
  position: absolute;
  inset: 0;
  background: url("northbridge-event.png") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(.85);
}
.event-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7,16,26,.96) 0%, rgba(7,16,26,.7) 50%, rgba(7,16,26,.18) 100%),
    linear-gradient(90deg, rgba(7,16,26,.6) 0%, transparent 60%);
}
.event-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 72px;
  align-items: end;
  padding: 100px 0 90px;
  width: 100%;
}
.event-head .kicker { margin-bottom: 16px; }
.event-head h2 {
  font-family: var(--font-ka);
  font-size: clamp(40px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .94;
  color: var(--white);
  margin-bottom: 22px;
}
.event-head p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .62);
  max-width: 540px;
}
.event-info { display: flex; flex-direction: column; gap: 16px; }
.event-details-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.event-detail {
  padding: 26px 24px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.ed-label {
  display: block;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
  margin-bottom: 10px;
}
.ed-value {
  display: block;
  font-family: var(--font-ka);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, .7);
  transition: color .25s var(--ease);
}
.map-link svg { fill: currentColor; flex-shrink: 0; }
.map-link:hover { color: var(--gold); }


/* ══════════════════════════════════════════════════
   PROGRAM
══════════════════════════════════════════════════ */
.program { background: var(--cream); }
.program-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}
.program-head h2 {
  font-family: var(--font-ka);
  font-size: clamp(40px, 4.8vw, 74px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .95;
  color: var(--navy);
}
.program-timeline {
  border-top: 1px solid var(--line);
}
.program-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .28s var(--ease);
}
.program-item:hover { background: rgba(201, 169, 110, .04); }
.pi-time {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-right: 28px;
}
.pi-time time {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold);
  padding-top: 5px;
  white-space: nowrap;
}
.pi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  margin-top: 7px;
  flex-shrink: 0;
  transition: background .25s var(--ease);
}
.program-item:hover .pi-dot { background: var(--gold); }

.pi-body h3 {
  font-family: var(--font-en);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -.045em;
  color: var(--navy);
  margin-bottom: 8px;
}
.pi-body p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}


/* ══════════════════════════════════════════════════
   AWARDS
══════════════════════════════════════════════════ */
.awards { background: var(--white); }
.awards-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.awards-head h2 {
  font-family: var(--font-ka);
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .95;
  color: var(--navy);
  margin: 16px 0 22px;
}
.awards-head p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 380px;
}
.awards-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.award-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: var(--cream);
  transition: .28s var(--ease);
  cursor: default;
}
.award-item:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateX(6px);
}
.award-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 169, 110, .12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  transition: .28s var(--ease);
}
.award-icon svg { stroke: var(--gold); width: 20px; height: 20px; }
.award-item:hover .award-icon { background: rgba(201, 169, 110, .2); }
.award-item span {
  font-family: var(--font-ka);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: color .28s var(--ease);
}
.award-item:hover span { color: var(--white); }


/* ══════════════════════════════════════════════════
   RSVP
══════════════════════════════════════════════════ */
.rsvp {
  position: relative;
  background: var(--cream-2);
  overflow: hidden;
}
.rsvp-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(201, 169, 110, .07), transparent 65%),
    radial-gradient(ellipse 50% 40% at 5% 20%, rgba(13, 31, 45, .04), transparent 60%);
  pointer-events: none;
}
.rsvp-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.rsvp-info h2 {
  font-family: var(--font-ka);
  font-size: clamp(40px, 4.8vw, 72px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .9;
  color: var(--navy);
  margin: 16px 0 22px;
}
.rsvp-info p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 360px;
}
.rsvp-deadline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 14px 18px;
  background: rgba(201, 169, 110, .1);
  border-left: 2px solid var(--gold);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--navy);
}
.rsvp-deadline svg { stroke: var(--gold); flex-shrink: 0; }

/* Form */
.rsvp-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.rsvp-form { display: grid; gap: 20px; }
.field-group { display: flex; flex-direction: column; gap: 8px; }
.field-group label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
}
.optional {
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 9px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rsvp-form input,
.rsvp-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 31, 45, .12);
  background: var(--cream);
  padding: 14px 16px;
  outline: 0;
  color: var(--navy);
  font-size: 14px;
  border-radius: var(--radius);
  transition: .25s var(--ease);
}
.rsvp-form input::placeholder,
.rsvp-form textarea::placeholder { color: rgba(13, 31, 45, .35); }
.rsvp-form input:focus,
.rsvp-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, .12);
}
.rsvp-form textarea { min-height: 110px; resize: none; }
.select-wrap { position: relative; }
.rsvp-form select {
  width: 100%;
  border: 1px solid rgba(13, 31, 45, .12);
  background: var(--cream);
  padding: 14px 36px 14px 16px;
  outline: 0;
  color: var(--navy);
  font-size: 14px;
  border-radius: var(--radius);
  appearance: none;
  -webkit-appearance: none;
  transition: .25s var(--ease);
  cursor: pointer;
}
.rsvp-form select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, .12);
}
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  stroke: var(--muted);
}
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 17px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: .28s var(--ease);
}
.btn-submit svg { stroke: currentColor; }
.btn-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201, 169, 110, .3); }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(201, 169, 110, .1);
  border: 1px solid rgba(201, 169, 110, .3);
  border-radius: var(--radius);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.form-success svg { stroke: var(--gold); flex-shrink: 0; }
.form-success.show { display: flex; }


/* ══════════════════════════════════════════════════
   CLOSING
══════════════════════════════════════════════════ */
.closing {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.closing-bg { position: absolute; inset: 0; z-index: 0; }
.closing-img {
  position: absolute;
  inset: 0;
  background: url("northbridge-closing.png") center/cover no-repeat;
  filter: saturate(.7);
}
.closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,31,45,.72) 0%, rgba(13,31,45,.88) 100%);
}
.closing-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.closing-content .kicker { margin-bottom: 18px; }
.closing-content h2 {
  font-family: var(--font-ka);
  font-size: clamp(38px, 5vw, 82px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .94;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 900px;
}
.closing-content > .reveal > p {
  font-size: 15px;
  color: rgba(255, 255, 255, .52);
  margin-bottom: 40px;
}


/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 30px 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-brand {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}
.footer-year {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, .5);
}
.footer-credit {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  transition: color .25s var(--ease);
}
.footer-credit:hover { color: var(--gold); }


/* ══════════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .intro-layout,
  .story-layout,
  .event-wrap,
  .awards-layout,
  .rsvp-layout { grid-template-columns: 1fr; gap: 48px; }
  .event-wrap { padding-block: 110px 72px; }
  .hero-stats { max-width: 100%; flex-wrap: wrap; gap: 20px; }
  .hero-stat-div { display: none; }
  .hero-stat { padding-right: 0; }
}


/* ══════════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════════ */
@media (max-width: 680px) {
  :root { --container: calc(100% - 32px); }
  .container { width: calc(100% - 32px); }
  .topbar { padding: 16px 16px; }
  .topbar-right .nav-cta { display: none; }
  .brand-mark { width: 32px; height: 32px; font-size: 10px; }
  .brand-text span { font-size: 12px; }

  .hero { align-items: flex-end; padding-bottom: 0; }
  .hero-content { padding-block: 100px 56px; width: calc(100% - 32px); }
  .hero-title-top,
  .hero-title-bottom { font-size: clamp(60px, 16vw, 88px); }
  .hero-title-bottom { margin-left: 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { margin-top: 40px; padding-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-stat-div { display: none; }
  .scroll-cue { display: none; }

  .section { padding: 72px 0; }
  .intro-layout { gap: 36px; }
  .intro-left h2 { font-size: clamp(38px, 11vw, 56px); }
  .intro-letter { padding: 28px 24px; }

  .story-layout { gap: 36px; }
  .story-left h2 { font-size: clamp(34px, 10vw, 52px); }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric-card { padding: 26px 20px; min-height: 140px; }

  .event-wrap { padding-block: 240px 60px; gap: 28px; }
  .event-head h2 { font-size: clamp(32px, 9.5vw, 50px); }
  .event-details-card { grid-template-columns: 1fr 1fr; }
  .event-detail { padding: 18px 16px; }

  .program-head { flex-direction: column; gap: 12px; }
  .program-head h2 { font-size: clamp(34px, 9.5vw, 52px); }
  .program-item { grid-template-columns: 72px 1fr; padding: 24px 0; }
  .pi-time { gap: 12px; }
  .pi-body h3 { font-size: 20px; }

  .awards-layout { gap: 40px; }
  .awards-head h2 { font-size: clamp(34px, 9.5vw, 52px); }

  .rsvp-layout { gap: 40px; }
  .rsvp-info h2 { font-size: clamp(36px, 10vw, 54px); }
  .rsvp-form-wrap { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; }

  .closing h2 { font-size: clamp(32px, 10vw, 50px); }

  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
}


/* ══════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cursor { display: none; }
}