/* ============================================================
   NANA OYE — Women's Network
   Brand: electric violet #9000FF (sampled from official wordmark)

   SHAPE RULE (applied everywhere, no exceptions):
     buttons + pills .... 999px (full pill)
     cards + panels ..... 16px
     inputs ............. 12px
     media .............. 4px

   MOTION: ease-out cubic-bezier(.23,1,.32,1)
     press 120ms / release 200-320ms, scale(.97) on :active
   ============================================================ */

:root {
  /* brand */
  --violet:        #9000FF;
  --violet-deep:   #6B00BF;
  --violet-press:  #520091;
  --violet-lift:   #B36BFF;
  --violet-glow:   rgba(144, 0, 255, 0.38);

  /* violet-tinted neutrals (one hue family, no stray grays) */
  --ink:           #0C0616;
  --ink-raised:    #170A29;
  --ink-line:      #2A1543;

  --paper:         #FFFFFF;
  --paper-soft:    #F7F2FF;
  --paper-line:    #E6DAF7;

  --text:          #1A1023;
  --text-mid:      #4A3D5C;
  --text-dim:      #6E6280;

  --on-dark:       #FFFFFF;
  --on-dark-mid:   #C9BCDC;
  --on-dark-dim:   #8E80A3;

  /* shape */
  --r-pill: 999px;
  --r-card: 16px;
  --r-input: 12px;
  --r-media: 4px;

  /* motion */
  --ease: cubic-bezier(.23, 1, .32, 1);

  /* layer scale */
  --z-sticky: 100;
  --z-menu: 200;
}

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

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

html.is-leaving .hero-in { visibility: hidden; }

body {
  font-family: 'Work Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell { max-width: 1180px; margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -0.01em;
  padding: .95rem 2rem;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 220ms var(--ease),
    color 220ms var(--ease),
    box-shadow 240ms var(--ease),
    transform 200ms var(--ease);
}

.btn:active { transform: scale(.97); transition-duration: 120ms; }

/* solid violet — the one primary action */
.btn-solid { background: var(--violet); color: #fff; }

@media (hover: hover) and (pointer: fine) {
  .btn-solid:hover {
    background: var(--violet-deep);
    box-shadow: 0 10px 30px var(--violet-glow);
    transform: translateY(-2px);
  }
}

/* outline on light */
.btn-line {
  background: transparent;
  color: var(--violet);
  box-shadow: inset 0 0 0 2px var(--violet);
}

@media (hover: hover) and (pointer: fine) {
  .btn-line:hover { background: var(--violet); color: #fff; transform: translateY(-2px); }
}

/* outline on dark */
.btn-ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.38);
}

@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover {
    background: rgba(255,255,255,.12);
    box-shadow: inset 0 0 0 2px #fff;
    transform: translateY(-2px);
  }
}

/* white on violet */
.btn-invert { background: #fff; color: var(--violet); }

@media (hover: hover) and (pointer: fine) {
  .btn-invert:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
}

.btn-sm { padding: .7rem 1.4rem; font-size: .87rem; }

/* ============================================================
   NAV
   ============================================================ */

nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--paper-line);
}

.nav-in {
  max-width: 1180px;
  margin: 0 auto;
  height: 76px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* logo: the official purple wordmark, shown as-is */
.brand {
  display: block;
  flex-shrink: 0;
  transition: opacity 200ms var(--ease);
}

.brand img { width: 184px; height: auto; display: block; }

@media (hover: hover) and (pointer: fine) {
  .brand:hover { opacity: .82; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links > li > a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: .93rem;
  color: var(--text-mid);
  transition: color 200ms var(--ease);
}

.nav-links > li > a:hover { color: var(--violet); }

.nav-links > li > a.here {
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 2px 0 var(--violet);
  padding-bottom: 3px;
}

/* NOBA-branded nav item: stack the mark above Events on desktop so the
   different logo proportions do not pull the label off the nav baseline. */
.nav-noba-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .12rem;
  line-height: 1;
}

.nav-noba-link .noba-logo {
  display: block;
  width: auto;
  height: 16px;
  min-height: 0;
}

.nav-noba-link > span { font-size: .82rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 260ms var(--ease), opacity 200ms var(--ease);
}

.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — full-bleed image, scrim, headline + inline signup
   ============================================================ */

.hero {
  position: relative;
  background: var(--ink);
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }

.hero-bg { background: var(--ink); }

.hero-bg img {
  width: 62%; height: 100%;
  margin-left: auto;
  object-fit: cover;
  object-position: 50% 22%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.72) 14%, #000 34%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.72) 14%, #000 34%, #000 100%);
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(12,6,22,.72) 0%, rgba(12,6,22,.34) 45%, rgba(12,6,22,.06) 82%, transparent 100%),
    linear-gradient(to right, rgba(12,6,22,.94) 0%, rgba(12,6,22,.72) 32%, rgba(12,6,22,.18) 68%, transparent 100%);
}

.hero-in {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 7rem 24px 3.5rem;
}

.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--violet-lift);
  margin-bottom: 1.1rem;
}

/* The NOBA Foundation lockup, used inline anywhere the name is mentioned in
   copy -- scales with the surrounding text (per brand request) but never
   shrinks past a legible floor, since the mark's own "FOUNDATION" sub-label
   turns to mush below that. */
.noba-logo {
  display: inline-block;
  height: 1.2em;
  width: auto;
  min-height: 16px;
  vertical-align: -0.24em;
}

.hero h1 {
  font-weight: 900;
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  color: #fff;
  max-width: 15ch;
  margin-bottom: 1.2rem;
}

.hero h1 em { color: var(--violet-lift); font-style: normal; }
.mobile-break { display: none; }

.hero-sub {
  font-size: 1.12rem;
  color: var(--on-dark-mid);
  max-width: 52ch;
  margin-bottom: 2.2rem;
}

/* ============================================================
   SIGN-UP FORM (hero variant + section variant)
   ============================================================ */

.join {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-card);
  padding: 1.5rem;
  max-width: 720px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.join-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 1rem;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-bottom: .9rem;
}

.join input,
.join select {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: var(--r-input);
  border: 1.5px solid rgba(255,255,255,.22);
  background: rgba(12,6,22,.55);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: .95rem;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}

.join input::placeholder { color: #A99CBC; }

.join input:focus,
.join select:focus {
  outline: none;
  border-color: var(--violet-lift);
  background: rgba(12,6,22,.8);
}

.join .btn {
  display: flex;
  align-items: center;
  justify-content: center !important;
  width: 100%;
  min-height: 48px;
  padding: .85rem 1.25rem;
  text-align: center;
  text-indent: 0;
}

.join-note { font-size: .82rem; color: var(--on-dark-dim); margin-top: .8rem; }

.join-check {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .9rem;
  font-size: .85rem;
  color: var(--on-dark-dim);
  cursor: pointer;
}

/* Overrides the generic ".join input" block styling (full-width, padded,
   bordered) which is meant for text/email fields, not a checkbox. */
.join-check input {
  width: auto;
  min-width: 0;
  padding: 0;
  border: 0;
  background: none;
  accent-color: var(--violet-lift);
}

.newsletter-consent {
  align-items: flex-start;
  padding: 1rem;
  color: var(--text-mid);
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-input);
}
.newsletter-consent input { margin-top: .25rem; }
.newsletter-consent span { display: grid; gap: .15rem; }
.newsletter-consent strong { color: var(--text); font-size: .9rem; }
.newsletter-consent small { color: var(--text-dim); font-size: .76rem; line-height: 1.45; }

/* ============================================================
   STAT STRIP
   ============================================================ */

.stats {
  background: var(--violet);
  padding: 2.4rem 24px;
}

.stats-in {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.stat-n {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-t {
  font-size: .92rem;
  color: rgba(255,255,255,.82);
  margin-top: .35rem;
  max-width: 22ch;
}

/* ============================================================
   SECTIONS
   ============================================================ */

section { padding: clamp(4rem, 8vw, 7rem) 24px; }

.sec-title {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  margin-bottom: 1.1rem;
}

.sec-title em { color: var(--violet); font-style: normal; }

.sec-lead {
  font-size: 1.08rem;
  color: var(--text-mid);
  max-width: 62ch;
}

.on-ink { background: var(--ink); color: var(--on-dark); }
.on-ink .sec-title { color: #fff; }
.on-ink .sec-title em { color: var(--violet-lift); }
.on-ink .sec-lead { color: var(--on-dark-mid); }

.soft { background: var(--paper-soft); }

/* ── INTRO SPLIT ── */

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.split-media { position: relative; z-index: 0; }

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-media);
}

.split-media::after {
  content: '';
  position: absolute;
  right: -14px; bottom: -14px;
  width: 62%; height: 42%;
  background: var(--violet);
  border-radius: var(--r-media);
  z-index: -1;
}

.split-body p { color: var(--text-mid); margin-bottom: 1.1rem; max-width: 60ch; }
.split-body .btn { margin-top: 1rem; }

/* ── PILLAR CARDS ── */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.card {
  background: var(--ink-raised);
  border-radius: var(--r-card);
  padding: 1.35rem 1.4rem 1.45rem;
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-5px); background: #1E0E36; }
}

.card h3 {
  font-size: 1.12rem;
  color: #fff;
  margin-bottom: .35rem;
}

.card p { font-size: .9rem; line-height: 1.45; color: var(--on-dark-mid); }

.card-mark {
  width: 34px; height: 34px;
  border-radius: var(--r-pill);
  background: var(--violet);
  display: grid; place-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: .85rem;
  color: #fff;
  margin-bottom: .75rem;
}

/* ── PRIORITIES: hairline list, deliberately NOT cards ── */

.rows { margin-top: 3rem; border-top: 1px solid var(--paper-line); }

.row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--paper-line);
  transition: background 220ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .row:hover { background: rgba(144,0,255,.035); }
}

.row h3 { font-size: 1.22rem; }
.row p { color: var(--text-mid); font-size: .98rem; }

/* ── PHOTO BAND ── */

.band { display: grid; grid-template-columns: repeat(3, 1fr); }

.band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms var(--ease), filter 400ms var(--ease);
}

.band > * { overflow: hidden; }

@media (hover: hover) and (pointer: fine) {
  .band img:hover { transform: scale(1.05); }
}

/* ── QUOTE ── */

.quote {
  background: var(--violet);
  padding: clamp(4rem, 8vw, 6.5rem) 24px;
  text-align: center;
}

.quote blockquote {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.24;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 20ch;
  margin: 0 auto;
  text-wrap: balance;
}

.quote cite {
  display: block;
  margin-top: 1.6rem;
  font-family: 'Work Sans', sans-serif;
  font-style: normal;
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
}

.quote cite a {
  display: block;
  width: fit-content;
  margin: .35rem auto 0;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.45);
  text-underline-offset: .25em;
}

/* ── HOMEPAGE EVENT SLIDER ── */

.event-slider-section {
  overflow: hidden;
  background: var(--paper-soft);
  padding: clamp(4rem, 8vw, 6.5rem) 24px;
}

.event-slider-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.event-slider-controls { display: flex; gap: .65rem; }

.slider-control {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--paper-line);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--violet);
  font: 700 1.2rem/1 'Poppins', sans-serif;
  cursor: pointer;
  transition: color 200ms var(--ease), background-color 200ms var(--ease), opacity 200ms var(--ease);
}

.slider-control:disabled { opacity: .35; cursor: default; }

@media (hover: hover) and (pointer: fine) {
  .slider-control:not(:disabled):hover { background: var(--violet); color: #fff; }
}

.event-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: .25rem .1rem 1.25rem;
}

.event-slider-track::-webkit-scrollbar { display: none; }
.event-slide { scroll-snap-align: start; min-height: 100%; }

.event-slider-all {
  display: inline-flex;
  margin-top: 1.2rem;
  color: var(--violet);
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  font-weight: 700;
}

@media (min-width: 721px) {
  .event-slider-track { grid-auto-columns: 56%; }
}

@media (min-width: 961px) {
  .event-slider-track { grid-auto-columns: 40%; }
}

/* ── CLOSING CTA ── */

.close-cta { text-align: center; }
.close-cta .sec-lead { margin: 0 auto 2.6rem; }
.close-cta .join { margin: 0 auto; text-align: left; }

/* ============================================================
   INNER PAGE HEADER
   ============================================================ */

.page-head {
  background: var(--ink);
  padding: clamp(3.5rem, 7vw, 5.5rem) 24px clamp(3rem, 6vw, 4.5rem);
}

.page-head h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  margin-bottom: 1rem;
}

.page-head h1 em { color: var(--violet-lift); font-style: normal; }
.page-head p { color: var(--on-dark-mid); max-width: 58ch; font-size: 1.06rem; }

/* ============================================================
   ABOUT
   ============================================================ */

.bio {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.bio-side { position: sticky; top: 100px; }

.bio-side img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-media);
}

.bio-cap {
  background: var(--violet);
  color: #fff;
  padding: .95rem 1.1rem;
  border-radius: 0 0 var(--r-media) var(--r-media);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
}

.bio-body h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 2.8rem 0 1rem;
}

.bio-body h2:first-child { margin-top: 0; }
.bio-body h2 em { color: var(--violet); font-style: normal; }
.bio-body p { color: var(--text-mid); margin-bottom: 1.1rem; max-width: 68ch; }

.bio-body ul {
  margin: 1rem 0 1.4rem;
  padding-left: 1.1rem;
  color: var(--text-mid);
}

.bio-body li { margin-bottom: .5rem; }
.bio-body li::marker { color: var(--violet); }

.tl { margin-top: 1.5rem; }

.tl-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2rem;
  border-left: 2px solid var(--paper-line);
}

.tl-item:last-child { border-left-color: transparent; padding-bottom: 0; }

.tl-item::before {
  content: '';
  position: absolute;
  left: -7px; top: 4px;
  width: 12px; height: 12px;
  border-radius: var(--r-pill);
  background: var(--violet);
}

.tl-when {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: .3rem;
}

.tl-item h4 { font-size: 1.05rem; margin-bottom: .3rem; }
.tl-item p { font-size: .94rem; color: var(--text-mid); margin: 0; }

/* ============================================================
   EVENTS
   ============================================================ */

.events {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.event {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--r-card);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .event:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(26,16,35,.1);
  }
}

.event-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }

.event-date {
  background: var(--violet);
  color: #fff;
  border-radius: var(--r-input);
  padding: .55rem .8rem;
  text-align: center;
  min-width: 62px;
}

.event-d {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 1.5rem; line-height: 1;
}

.event-m {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase;
}

.event-time { font-size: .87rem; color: var(--text-dim); font-weight: 500; }
.event h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.event > p { font-size: .95rem; color: var(--text-mid); margin-bottom: 1.1rem; }

.event-where {
  font-size: .87rem;
  color: var(--violet);
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.event .btn { margin-top: auto; align-self: flex-start; }

/* ── events page: one launch, treated as the programme's centrepiece ── */
.events-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 24px clamp(6rem, 10vw, 9rem);
  color: var(--on-dark);
  background:
    radial-gradient(circle at 88% 20%, rgba(144, 0, 255, .34), transparent 30%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-raised) 100%);
}

.events-hero .shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.events-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--violet-lift);
  margin-bottom: 1.8rem;
}
.events-hero .eyebrow .noba-logo { width: auto; height: 70px; flex: none; }
.events-hero .eyebrow > span { white-space: nowrap; }
.events-hero h1 { max-width: 760px; font-size: clamp(3rem, 5.8vw, 6.2rem); }
.events-hero h1 em { color: var(--violet-lift); font-style: normal; }
.events-hero-copy > p:last-child {
  max-width: 620px;
  margin-top: 1.8rem;
  color: var(--on-dark-mid);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.events-portrait-slider { min-width: 0; }
.events-portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(179, 107, 255, .42);
  border-radius: var(--r-card);
  box-shadow: 26px 26px 0 rgba(144, 0, 255, .16);
}
.events-portrait-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition: opacity 420ms var(--ease), transform 700ms var(--ease);
}
.events-portrait-frame img.portrait-focus-top { object-position: center 22%; }
.events-portrait-frame img.portrait-focus-right { object-position: 68% center; }
.events-portrait-frame img.is-active { opacity: 1; visibility: visible; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .events-portrait-frame img { transition: none; }
}

.events-portrait-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  color: var(--on-dark-dim);
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
}
.events-portrait-controls > div { display: flex; gap: .5rem; }
.events-portrait-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 1px solid var(--ink-line);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease);
}
.events-portrait-controls button:hover { background: var(--violet); border-color: var(--violet); }

.events-main {
  padding: clamp(4rem, 7vw, 7rem) 24px;
  background: var(--paper-soft);
}

.event-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  min-height: 640px;
  overflow: hidden;
  color: var(--on-dark);
  background: var(--ink-raised);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-card);
  box-shadow: 0 28px 80px rgba(42, 21, 67, .2);
}

.event-featured-media { position: relative; min-height: 480px; overflow: hidden; }
.event-featured-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 6, 22, .72));
}
.event-featured-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; display: block; }

.event-date-badge {
  position: absolute;
  z-index: 1;
  left: clamp(1.4rem, 3vw, 2.5rem);
  bottom: clamp(1.4rem, 3vw, 2.5rem);
  color: #fff;
  background: var(--violet);
  border-radius: var(--r-pill);
  padding: .65rem 1.35rem;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.event-featured-body {
  display: flex;
  flex-direction: column;
  padding: clamp(2.2rem, 4vw, 4.25rem);
}

.event-kicker {
  color: var(--violet-lift) !important;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem !important;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.event-featured-body h2 { max-width: 12ch; margin: .7rem 0 1.2rem; font-size: clamp(2.2rem, 4vw, 4rem); }
.event-featured-body h2 > span { display: block; margin-top: .35rem; }
.event-title-logo { width: auto; height: clamp(60px, 6vw, 92px); }
.event-featured-body > p { color: var(--on-dark-mid); font-size: 1.05rem; line-height: 1.65; }

.event-programme { list-style: none; margin: 2rem 0 2.5rem; border-top: 1px solid var(--ink-line); }
.event-programme li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--ink-line);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.event-programme span { color: var(--violet-lift); font-size: .72rem; letter-spacing: .08em; }

.event-card-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-top: auto; }
.event-card-foot p { color: var(--on-dark-dim); font-size: .8rem; line-height: 1.45; }
.event-card-foot strong { color: var(--on-dark); font-family: 'Poppins', sans-serif; font-size: .88rem; }
.event-registration-action { display: flex; align-items: flex-end; flex-direction: column; gap: .6rem; }
.event-registration-action .btn:disabled { cursor: default; opacity: .78; transform: none; }
.event-registration-status { max-width: 260px; color: var(--violet-lift) !important; font-size: .76rem !important; line-height: 1.4 !important; text-align: right; }

@media (max-width: 900px) {
  .events-hero .shell { grid-template-columns: 1fr; }
  .events-portrait-slider { width: min(100%, 620px); }
  .events-portrait-frame { aspect-ratio: 16 / 10; }
  .event-featured { grid-template-columns: 1fr; }
  .event-featured-media { min-height: 480px; }
  .event-featured-body h2 { max-width: 14ch; }
}

@media (max-width: 560px) {
  .events-hero { padding-top: 3.5rem; padding-bottom: 5rem; }
  .events-hero .eyebrow { align-items: flex-start; flex-direction: column; gap: .8rem; }
  .events-hero .eyebrow .noba-logo { height: 52px; }
  .events-portrait-frame { aspect-ratio: 4 / 5; box-shadow: 14px 14px 0 rgba(144, 0, 255, .16); }
  .events-main { padding: 2rem 16px 4rem; }
  .event-featured-media { min-height: 330px; }
  .event-featured-body { padding: 1.6rem; }
  .event-card-foot { align-items: stretch; flex-direction: column; }
  .event-card-foot .btn { width: 100%; }
  .event-registration-action { align-items: stretch; }
  .event-registration-status { max-width: none; text-align: left; }
}

/* ============================================================
   EDITORIAL + SOCIAL JOURNAL
   ============================================================ */

.social-journal { overflow: hidden; background: #fff; }

.journal-head,
.stories-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.journal-head .sec-title,
.stories-heading .sec-title { margin-bottom: 0; }

.slider-controls { display: flex; gap: .65rem; }

.slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--paper-line);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--ink);
  font: 700 1.15rem 'Poppins', sans-serif;
  cursor: pointer;
  transition: color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
}

.slider-controls button:hover { color: var(--violet); border-color: var(--violet); transform: translateY(-2px); }

.social-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(320px, 44vw, 520px);
  gap: 1.25rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: .25rem max(24px, calc((100vw - 1180px) / 2)) 1.5rem;
  margin-inline: min(-24px, calc((1180px - 100vw) / 2));
}

.social-track::-webkit-scrollbar { display: none; }

.social-card {
  scroll-snap-align: start;
  min-width: 0;
  border: 1px solid var(--paper-line);
  border-radius: var(--r-card);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(26,16,35,.06);
}

.social-visual { position: relative; display: block; overflow: hidden; }
.social-visual img,
.social-visual video { width: 100%; aspect-ratio: 4 / 4.7; object-fit: cover; object-position: top center; background: var(--ink); transition: transform 500ms var(--ease); }
.social-visual:hover img { transform: scale(1.035); }
.social-visual--video { background: var(--ink); }

.social-visual span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .45rem .75rem;
  border-radius: var(--r-pill);
  background: rgba(12,6,22,.78);
  color: #fff;
  backdrop-filter: blur(8px);
  font: 600 .72rem 'Poppins', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.social-caption { padding: 1.35rem; }
.social-caption > p {
  display: -webkit-box;
  min-height: 6.2em;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
.social-caption > div { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.1rem; color: var(--text-dim); font-size: .82rem; }
.social-caption a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r-pill); background: var(--paper-soft); color: var(--violet); font-weight: 700; }

.stories-section { position: relative; overflow: hidden; }
.stories-section.on-ink::before { content: "NOBA"; position: absolute; right: -2vw; top: -5rem; color: rgba(255,255,255,.025); font: 900 clamp(8rem, 24vw, 22rem)/1 'Poppins', sans-serif; letter-spacing: -.08em; pointer-events: none; }

.story-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.35rem; }
.story-card { display: grid; grid-template-columns: 42% 1fr; min-width: 0; background: var(--ink-raised); border: 1px solid var(--ink-line); border-radius: var(--r-card); overflow: hidden; }
.story-card--feature { grid-column: 1 / -1; grid-template-columns: 1.15fr 1fr; }
.story-image { min-height: 250px; overflow: hidden; }
.story-card--feature .story-image { min-height: 390px; }
.story-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 500ms var(--ease); }
.story-image:hover img { transform: scale(1.04); }
.story-copy { padding: clamp(1.35rem, 3vw, 2.25rem); display: flex; flex-direction: column; align-items: flex-start; }
.story-meta { width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1rem; margin-bottom: 1.2rem; color: var(--on-dark-dim); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.story-meta span { color: var(--violet-lift); font-weight: 600; }
.story-copy h3 { color: #fff; font-size: clamp(1.15rem, 2vw, 1.65rem); margin-bottom: .75rem; }
.story-copy p { color: var(--on-dark-mid); font-size: .94rem; line-height: 1.55; margin-bottom: 1.3rem; }
.text-link { color: #fff; font-family: 'Poppins', sans-serif; font-size: .85rem; font-weight: 600; margin-top: auto; }
.text-link span { color: var(--violet-lift); margin-left: .3rem; }

.editorial-head {
  padding: clamp(4.5rem, 8vw, 7.5rem) 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(144,0,255,.32), transparent 30%),
    linear-gradient(130deg, var(--ink) 0%, #170829 100%);
}
.editorial-head .shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}
.editorial-head h1 { color: #fff; font-size: clamp(2.65rem, 6vw, 5rem); max-width: 14ch; margin-bottom: 1.5rem; }
.editorial-head h1 em { color: var(--violet-lift); font-style: normal; }
.editorial-head-copy > p:last-child { color: var(--on-dark-mid); max-width: 58ch; font-size: 1.08rem; }

@media (max-width: 900px) {
  .editorial-head .shell { grid-template-columns: 1fr; }
  .editorial-head .events-portrait-slider { width: min(100%, 620px); }
}
.section-rule { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; margin-bottom: 2rem; border-bottom: 1px solid var(--paper-line); color: var(--text-dim); font: 600 .76rem 'Poppins', sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.story-grid--all .story-card { background: #fff; border-color: var(--paper-line); }
.story-grid--all .story-copy h3, .story-grid--all .text-link { color: var(--ink); }
.story-grid--all .story-copy p { color: var(--text-mid); }
.story-grid--all .story-meta { color: var(--text-dim); }

.article-page { padding: clamp(3rem, 7vw, 6rem) 24px clamp(5rem, 10vw, 8rem); }
.article-hero { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.article-hero img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top center; border-radius: var(--r-media); }
.article-back { display: inline-block; margin-bottom: 3rem; color: var(--text-dim); font: 600 .86rem 'Poppins', sans-serif; }
.article-hero h1 { font-size: clamp(2.35rem, 5.5vw, 4.7rem); margin-bottom: 1.3rem; }
.article-dek { color: var(--text-mid); font-size: 1.12rem; margin-bottom: 1.4rem; max-width: 54ch; }
.article-hero time { color: var(--text-dim); font-size: .88rem; }
.article-body { max-width: 720px; margin: clamp(3.5rem, 8vw, 7rem) auto 0; }
.article-body > p { font-size: clamp(1.05rem, 2vw, 1.18rem); line-height: 1.8; margin-bottom: 1.5rem; }
.article-body > p:first-child::first-letter { float: left; color: var(--violet); font: 800 4.6rem/.75 'Poppins', sans-serif; padding: .18rem .55rem 0 0; }
.source-note { margin-top: 3rem; padding: 1.5rem; border-left: 4px solid var(--violet); background: var(--paper-soft); }
.source-note strong { font-family: 'Poppins', sans-serif; }
.source-note p { color: var(--text-mid); margin-top: .35rem; font-size: .95rem; }
.source-note a { color: var(--violet-deep); text-decoration: underline; text-underline-offset: 3px; }

.social-gallery-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.social-gallery-row img { width: 100%; aspect-ratio: 4 / 4.7; object-fit: cover; border-radius: var(--r-media); }
.social-detail-video { width: min(100%, 720px); max-height: 78vh; margin-inline: auto; border-radius: var(--r-media); background: var(--ink); }
.social-post-body { max-width: 720px; margin: clamp(2.5rem, 6vw, 4rem) auto 0; }
.social-post-caption { font-size: clamp(1.05rem, 2vw, 1.18rem); line-height: 1.8; color: var(--text-mid); }
.social-post-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--paper-line); color: var(--text-dim); font-size: .88rem; }
.social-post-meta a { color: var(--violet-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-side h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 1rem; }
.contact-side h2 em { color: var(--violet); font-style: normal; }
.contact-side > p { color: var(--text-mid); margin-bottom: 2.2rem; max-width: 46ch; }

.reach { margin-bottom: 1.5rem; }

.reach-k {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: .2rem;
}

.reach-v { font-size: 1.02rem; color: var(--violet); font-weight: 500; }

.form {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--r-card);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}

.field { margin-bottom: 1.3rem; }

.field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .86rem;
  margin-bottom: .45rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1.5px solid var(--paper-line);
  border-radius: var(--r-input);
  font-family: 'Work Sans', sans-serif;
  font-size: .97rem;
  color: var(--text);
  background: #fff;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(144,0,255,.13);
}

.field textarea { resize: vertical; min-height: 132px; }

.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.form .btn { width: 100%; }

.sent,
.form-done {
  display: none;
  background: var(--violet);
  color: #fff;
  border-radius: var(--r-input);
  padding: .95rem 1.1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: 1.4rem;
}

.form-error {
  display: none;
  background: #FFF0F0;
  color: #B00020;
  border: 1px solid #F5C6CB;
  border-radius: var(--r-input);
  padding: .85rem 1.1rem;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.auth-shell { max-width: 560px; }
.account-shell { max-width: 760px; }
.auth-shell .form, .account-shell .form { max-width: none; }
.form-foot { text-align: center; margin-top: 1.4rem; color: var(--text-dim); font-size: .92rem; }
.form-foot a { color: var(--violet-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.account-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.account-head span { color: var(--text-dim); font-size: .92rem; }
[data-account-loading] { text-align: center; color: var(--text-dim); padding: 3rem 0; }

/* ============================================================
   FOOTER
   ============================================================ */

footer { background: var(--ink); padding: 4rem 24px 2rem; }

.foot {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
}

.foot-brand { display: inline-block; margin-bottom: 1.1rem; }
.foot-brand img { width: 200px; height: auto; display: block; }

.foot-about { color: var(--on-dark-dim); font-size: .93rem; max-width: 34ch; }

.foot h4 {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}

.foot ul { list-style: none; }
.foot li { margin-bottom: .6rem; }

.foot li a {
  color: var(--on-dark-dim);
  font-size: .94rem;
  transition: color 200ms var(--ease);
}

.foot li a:hover { color: var(--violet-lift); }

.foot-end {
  max-width: 1180px;
  margin: 3rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--ink-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: var(--on-dark-dim);
}

.foot-end a:hover { color: var(--violet-lift); }
.foot-social { display: flex; gap: 1.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .split, .bio, .contact { grid-template-columns: 1fr; }
  .split-media, .bio-side { max-width: 420px; }
  .bio-side { position: static; }
  .split-media::after { display: none; }
  .foot { grid-template-columns: 1fr 1fr; }
  .foot-brand-col { grid-column: 1 / -1; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card--feature { grid-column: auto; }
  .social-track { grid-auto-columns: minmax(280px, 56%); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--ink-line);
    padding: 1rem 24px 1.6rem;
    z-index: var(--z-menu);
  }

  .nav-links.open { display: flex; }
  .nav-links > li > a { display: block; padding: .85rem 0; font-size: 1rem; color: var(--on-dark-mid); }
  .nav-links > li > a.here { color: #fff; }
  /* Mobile dropdown is already a vertical list -- the stacked logo/label
     reads better as a single row here rather than two lines within a line. */
  .nav-links > li > a.nav-noba-link { display: flex; flex-direction: row; align-items: center; justify-content: flex-start; gap: .5rem; }
  .nav-links > li > a.nav-noba-link .noba-logo { height: 14px; }
  .nav-links > li > a.nav-noba-link > span { font-size: 1rem; }
  .nav-links > li:last-child { margin-top: .8rem; }
  .nav-links > li:last-child .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: .7rem 1.4rem;
    text-align: center;
  }
  .burger { display: flex; }

  .hero { min-height: 560px; align-items: flex-end; }
  .hero-in { padding-top: 5rem; }
  .hero h1 { max-width: 15ch; font-size: clamp(2.15rem, 9vw, 2.8rem); }
  .hero-sub { max-width: 22ch; margin-left: 0; font-size: 1rem; }
  .mobile-break { display: inline; }
  .hero-bg img {
    width: 100%;
    margin-left: 0;
    object-position: 32% 22%;
    transform: scale(1.08);
    transform-origin: 50% 35%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .join-grid { grid-template-columns: 1fr; }
  .stats-in { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.8rem 2.5rem; }
  .row { grid-template-columns: 1fr; gap: .5rem; }
  .band { grid-template-columns: 1fr; }
  .band > *:nth-child(3) { display: none; }
  .pair { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr; gap: 2.2rem; }
  .journal-head, .stories-heading { align-items: flex-start; }
  .stories-heading { flex-direction: column; }
  .story-card, .story-card--feature { grid-template-columns: 1fr; }
  .story-card .story-image, .story-card--feature .story-image { min-height: 260px; }
  .social-track { grid-auto-columns: 86%; }
  .event-slider-head { align-items: flex-start; }
  .article-hero { grid-template-columns: 1fr; }
  .article-back { margin-bottom: 2rem; }
  .article-hero img { aspect-ratio: 4 / 3; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .btn:hover, .btn:active,
  .card:hover, .event:hover,
  .band img:hover { transform: none !important; }
}
