/* ==========================================================
   WOYM — Design System
   Western Odisha Yuva Manch
   ========================================================== */

:root {
  --red: #E6212A;
  --red-dark: #B8141C;
  --red-tint: #FDEBEC;
  --ink: #17181A;
  --paper: #FFFFFF;
  --paper-alt: #FAFAFA;
  --muted: #6b7280;
  --line: #ECECEE;
  --gold: #C9A34E;
  --gold-light: #E8CD8A;
  --gold-tint: #FAF4E6;

  --font-heading: 'Sora', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;

  --radius: 8px;
  --shadow-soft: 0 4px 20px rgba(20, 20, 20, 0.06);
  --shadow-card: 0 6px 24px rgba(20, 20, 20, 0.08);

  --container-max: 1240px;
}

/* ---------------- Base ---------------- */
* { box-sizing: border-box; }

html {
  /* Stops the page rubber-banding past its own top/bottom edge on mobile —
     that bounce is what can make a fixed header appear to drift on scroll. */
  overscroll-behavior-y: contain;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: contain;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

a { color: var(--red); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--red-dark); }

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

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.bg-paper-alt { background: var(--paper-alt); }
.bg-ink { background: var(--ink); color: #fff; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: .75rem;
  font-weight: 800;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 640px;
}

.title-underline { width: 56px; height: 4px; background: var(--red); border-radius: 2px; margin-bottom: 1.25rem; }

.about-chip-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.75rem; }
.about-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 700; color: var(--ink);
  background: var(--paper-alt); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem .95rem;
}
.about-chip i { color: var(--red); font-size: .78rem; }
a.about-chip { text-decoration: none; transition: background .15s, border-color .15s, color .15s; }
a.about-chip:hover { border-color: var(--red); color: var(--red); }
a.about-chip.active { background: var(--red); border-color: var(--red); color: #fff; }

.section-head { margin-bottom: 2.75rem; }
.section-head.text-center { margin-left: auto; margin-right: auto; }

/* ---------------- Animations ---------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; animation: fadeUp .7s cubic-bezier(.22,1,.36,1) forwards; }
.r1 { animation-delay: .05s; }
.r2 { animation-delay: .15s; }
.r3 { animation-delay: .25s; }
.r4 { animation-delay: .35s; }
.r5 { animation-delay: .45s; }

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: .5; }
  50%      { transform: scale(1.06); opacity: .85; }
}
.pulse-ring { animation: pulseRing 3.6s ease-in-out infinite; transform-origin: center; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.float-slow { animation: floatSlow 5s ease-in-out infinite; }

/* Scroll-triggered reveal (JS adds .in-view) */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ---------------- Buttons ---------------- */
.btn-woym {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.7rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn-woym-primary {
  background: var(--red);
  color: #fff;
}
.btn-woym-primary:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(230,33,42,.32);
}

.btn-woym-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-woym-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-woym-ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-woym-ghost-light:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-woym-white {
  background: #fff;
  color: var(--red-dark);
}
.btn-woym-white:hover {
  color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.link-arrow { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; }
.link-arrow svg { transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

button.btn-woym:disabled { opacity: .4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
button.btn-woym-outline:hover { background: transparent; }

/* Quiz play screen */
.quiz-top-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.25rem;
}
.quiz-top-title { font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.quiz-top-user { font-size: .82rem; color: var(--muted); margin-top: .2rem; }
.quiz-top-user i { color: var(--red); margin-right: 4px; }
.quiz-top-user-sep { margin: 0 .4rem; }
.quiz-timer {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: var(--red);
  background: var(--red-tint); border: 1px solid #f3c9c6; padding: .5rem 1.1rem; border-radius: 8px; white-space: nowrap;
}
.quiz-nav-bar { display: flex; justify-content: space-between; align-items: center; gap: .75rem; flex-wrap: wrap; }
.quiz-nav-btn { padding: .75rem 1.4rem; font-size: .88rem; }
.quiz-submit-btn { margin-left: auto; }
@media (max-width: 575.98px) {
  .quiz-nav-bar { justify-content: stretch; }
  .quiz-nav-btn { flex: 1 1 auto; justify-content: center; }
  .quiz-submit-btn { margin-left: 0; order: 3; flex-basis: 100%; }
}

/* Quiz submit confirmation modal */
.quiz-modal-overlay {
  display: flex; position: fixed; inset: 0; z-index: 2000;
  align-items: center; justify-content: center; padding: 1rem;
  background: rgba(23,24,26,.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility 0s linear .22s;
}
.quiz-modal-overlay.is-open { opacity: 1; visibility: visible; transition: opacity .22s ease; }
.quiz-modal {
  width: 100%; max-width: 400px; background: #fff; border-radius: 18px;
  padding: 2rem 1.75rem 1.75rem; text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  transform: translateY(14px) scale(.96); opacity: 0; transition: transform .25s cubic-bezier(.34,1.56,.64,1), opacity .22s ease;
}
.quiz-modal-overlay.is-open .quiz-modal { transform: translateY(0) scale(1); opacity: 1; }
.quiz-modal-icon {
  width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--red-tint); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.quiz-modal-title { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--ink); margin-bottom: .4rem; }
.quiz-modal-sub { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.quiz-modal-stats { display: flex; gap: .75rem; margin-bottom: 1.75rem; }
.quiz-modal-stat { flex: 1; border-radius: 12px; padding: .9rem .5rem; border: 1px solid var(--line); }
.quiz-modal-stat-num { font-family: var(--font-heading); font-weight: 800; font-size: 1.6rem; line-height: 1.1; }
.quiz-modal-stat-label { font-size: .72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-top: .25rem; }
.quiz-modal-stat-answered { background: #edf7f0; border-color: #c7e6cf; }
.quiz-modal-stat-answered .quiz-modal-stat-num { color: #1c7c40; }
.quiz-modal-stat-unanswered { background: var(--paper-alt); }
.quiz-modal-stat-unanswered .quiz-modal-stat-num { color: var(--ink); }
.quiz-modal-actions { display: flex; gap: .75rem; }
.quiz-modal-actions .btn-woym { justify-content: center; padding: .8rem 1rem; }

/* ---------------- Navbar (solid dark — consistent on every page) ----------------
   Accent lines are painted as background layers on the navbar itself (not
   absolutely-positioned pseudo-elements) — pseudo-elements on a `position:
   sticky` ancestor are prone to detaching/misaligning mid-scroll in some
   browsers. Header size is fixed (no padding/logo resize on scroll) so
   nothing reflows while scrolling; only a shadow fades in for depth. */
.woym-navbar {
  /* `position: fixed` instead of `sticky` — sticky headers are prone to visually
     clipping/squeezing at the top edge on mobile browsers while the address bar
     collapses/expands during scroll. Fixed is pinned to the viewport directly and
     doesn't have that interaction. Body gets a matching padding-top via JS
     (see main.js) since fixed removes the header from normal document flow. */
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: .85rem 0;
  background-image:
    linear-gradient(90deg, var(--red-dark), var(--red) 50%, var(--red-dark)),
    linear-gradient(90deg, transparent, var(--gold) 50%, transparent),
    linear-gradient(180deg, #1a1a1c 0%, #121213 100%);
  background-repeat: no-repeat;
  background-position: top left, bottom left, top left;
  background-size: 100% 3px, 100% 2px, 100% 100%;
  transition: box-shadow .2s ease;
}
.woym-navbar.is-scrolled {
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}

.woym-navbar .btn-woym { text-transform: uppercase; letter-spacing: .04em; font-size: .8rem; }
.nav-logo { height: 52px; width: auto; display: block; }

.woym-navbar .nav-link {
  position: relative;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .045em;
  text-transform: uppercase;
  color: #c7c9ce;
  padding: .5rem .85rem !important;
  transition: color .2s ease;
}
.woym-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: .85rem; right: .85rem; bottom: .1rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.woym-navbar .nav-link:hover,
.woym-navbar .nav-link.active {
  color: #fff;
}
.woym-navbar .nav-link:hover::after,
.woym-navbar .nav-link.active::after {
  transform: scaleX(1);
}
.nav-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; color: var(--ink);
  background: #fff; border: 1px solid #fff; font-size: .8rem;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}
.nav-social:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }

.btn-glow { box-shadow: 0 8px 22px rgba(230,33,42,.28); }
.btn-glow:hover { box-shadow: 0 14px 30px rgba(230,33,42,.4); }

/* Mobile dropdown menu — keep it solid dark too, not a transparent overlay */
@media (max-width: 991.98px) {
  .woym-navbar { padding: .65rem 0; }
  .nav-logo, .woym-navbar.is-scrolled .nav-logo { height: 38px; }

  .navbar-toggler {
    border-color: rgba(255,255,255,.18) !important;
    border-radius: 8px;
    padding: .35rem .55rem;
  }
  .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(230,33,42,.25); }
  .navbar-toggler-icon { opacity: .9; }

  .woym-navbar .navbar-collapse {
    background: #121213;
    border-radius: 10px;
    margin-top: .85rem;
    padding: .5rem .5rem .9rem;
    border: 1px solid rgba(255,255,255,.08);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .woym-navbar .nav-link {
    padding: .8rem .85rem !important;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .woym-navbar li:last-of-type .nav-link { border-bottom: none; }
  .woym-navbar .nav-link::after { display: none; }
  .woym-navbar .nav-link.active { color: var(--red); }
  .woym-navbar .nav-item.ms-lg-3 { margin-top: 1rem !important; padding: 0 .5rem; }
  .woym-navbar .nav-item.ms-lg-3 .btn-woym { width: 100%; justify-content: center; }
}

/* ---------------- Hero (photo + floating card + stat bar + torn edge) ---------------- */
.woym-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 4rem 0 0;
  color: #fff;
  background: #0c0c0d;
}
.woym-hero > .container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-bottom: 2rem;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../img/hero-dance.webp");
  background-size: cover;
  background-position: 62% 30%;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(6,6,7,.93) 0%, rgba(6,6,7,.72) 40%, rgba(6,6,7,.32) 70%, rgba(6,6,7,.55) 100%),
    linear-gradient(0deg, rgba(6,6,7,.55) 0%, transparent 30%);
}

.hero-top-grid {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-v2-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.woym-hero h1 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.35;
  letter-spacing: -.005em;
  color: #fff;
}
.woym-hero h1 .mark { color: var(--red); }

.woym-hero p.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #c7c9ce;
  max-width: 520px;
  margin-top: 1.3rem;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.7rem; }

/* Floating Nuakhai Bhetghat card */
.hero-nuakhai-card {
  position: relative;
  z-index: 2;
  width: min(310px, 84vw);
  background: rgba(18,16,16,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230,33,42,.35);
  border-radius: 12px;
  padding: 1.6rem 1.7rem;
  margin-left: auto;
  box-shadow: 0 0 0 1px rgba(230,33,42,.12), 0 25px 55px rgba(230,33,42,.18), 0 25px 55px rgba(0,0,0,.4);
}
.hero-nuakhai-card .nc-title { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #f0f0f0; }
.hero-nuakhai-card .nc-divider { display: block; width: 100%; height: 14px; margin: .7rem 0 .9rem; color: rgba(230,33,42,.55); }
.hero-nuakhai-card .nc-edition { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 800; color: var(--red); line-height: 1; }
.hero-nuakhai-card .nc-edition.is-cursive { font-family: 'Dancing Script', cursive; font-size: 2.3rem; font-weight: 700; color: var(--gold, #E8B94A); }
.hero-nuakhai-card .nc-row { display: flex; align-items: flex-start; gap: 9px; font-size: .84rem; color: #d5d6da; margin-top: .7rem; line-height: 1.4; }
.hero-nuakhai-card .nc-row i { color: var(--red); width: 14px; margin-top: .2rem; }
.hero-nuakhai-card .btn-woym { width: 100%; justify-content: center; margin-top: 1.2rem; font-size: .82rem; padding: .7rem 1rem; }

@keyframes ticketPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,185,74,.55), 0 10px 24px rgba(230,33,42,.3); }
  50% { box-shadow: 0 0 0 8px rgba(232,185,74,0), 0 10px 24px rgba(230,33,42,.3); }
}
.btn-book-ticket {
  background: linear-gradient(135deg, #E8B94A 0%, var(--red) 90%);
  color: #1a1006;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .85rem !important;
  animation: ticketPulse 2.2s ease-in-out infinite;
}
.btn-book-ticket:hover { color: #1a1006; transform: translateY(-2px); }
.nc-view-link {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: .8rem; font-size: .78rem; font-weight: 700; color: #c7c9ce;
  transition: color .2s ease;
}
.nc-view-link:hover { color: #fff; }

/* Torn paper transition into the next (white) section */
.hero-torn-edge { position: relative; z-index: 3; line-height: 0; margin-top: -1px; }
.hero-torn-edge svg { width: 100%; height: 48px; display: block; }

.scroll-cue {
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: #c7c9ce; font-size: .66rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 1.25rem 0 1.5rem;
}
.scroll-cue .mouse { width: 18px; height: 28px; border: 2px solid rgba(255,255,255,.35); border-radius: 10px; position: relative; }
.scroll-cue .mouse::after {
  content: ""; position: absolute; top: 5px; left: 50%; width: 3px; height: 5px; border-radius: 2px;
  background: var(--red); transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot { 0% { transform: translate(-50%,0); opacity: 1; } 70%,100% { transform: translate(-50%,8px); opacity: 0; } }

@media (max-width: 991px) {
  .hero-top-grid { grid-template-columns: 1fr; }
  .hero-nuakhai-card { margin: 2rem auto 0; }
}
@media (max-width: 767px) {
  .hero-cta-row { justify-content: center; }
  .hero-v2-inner { text-align: center; margin: 0 auto; }
}

/* ---------------- About photo ---------------- */
.about-photo-frame {
  position: relative;
  aspect-ratio: 4 / 3.3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, transparent 42%);
}
.about-photo-caption {
  position: absolute; left: 1.1rem; bottom: 1.1rem; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22); border-radius: 999px;
  padding: .5rem 1rem; color: #fff; font-size: .82rem; font-weight: 700;
}
.about-photo-caption i { color: var(--red); }

/* ---------------- Cards ---------------- */
.work-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.6rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.work-card::before {
  content: "";
  position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(20,20,20,.1); border-color: transparent; }
.work-card:hover::before { transform: scaleX(1); }
.work-card .icon-box {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--red-tint);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .25s ease;
}
.work-card .icon-box i { color: var(--red); transition: color .25s ease; }
@media (hover: hover) and (pointer: fine) {
  .work-card:hover .icon-box { background: var(--red); transform: scale(1.08); }
  .work-card:hover .icon-box i { color: #fff; }
}
.work-card h3 { font-size: 1.02rem; font-weight: 700; }
.work-card p { color: var(--muted); font-size: .88rem; line-height: 1.55; flex-grow: 1; }

.woym-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}
.woym-card:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(20,20,20,.14); }
.woym-card .card-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--paper-alt); }
.woym-card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.woym-card:hover .card-img-wrap img { transform: scale(1.06); }
.woym-card .card-category { position: absolute; top: .75rem; left: .75rem; background: var(--red); color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 3px; }
.woym-card .card-body-woym { padding: 1.3rem; }
.woym-card .card-body-woym h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.woym-card .card-body-woym p { color: var(--muted); font-size: .88rem; margin-bottom: 1rem; }

/* ---------------- Nuakhai edition card ---------------- */
.nuakhai-cover-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ink);
  display: block;
  color: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}
.nuakhai-cover-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 18px 36px rgba(20,20,20,.22); }
.nuakhai-cover-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.85), transparent 55%); z-index: 1; }
.nuakhai-cover-card .cover-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; }
.nuakhai-cover-card .cover-year { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 800; }
.nuakhai-cover-card .cover-edition { font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; color: #f4b8bb; margin-top: 2px; }
.nuakhai-cover-card .cover-date { font-size: .72rem; color: #e6e6e8; margin-top: .4rem; display: flex; align-items: center; gap: 5px; }

/* ---------------- Nuakhai archive: featured latest edition ---------------- */
.nuakhai-hero-feature {
  display: grid; grid-template-columns: 300px 1fr; gap: 2.75rem; align-items: center;
  background: linear-gradient(135deg, #1e1e20, #121213);
  border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 2.5rem;
}
.nuakhai-hero-poster {
  position: relative; aspect-ratio: 4/5; border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 55px rgba(0,0,0,.5); border: 2px solid rgba(232,185,74,.4);
}
.nuakhai-hero-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nuakhai-hero-poster-fallback {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: radial-gradient(120% 130% at 50% 20%, #2a2a2c 0%, var(--ink) 60%);
}
.fallback-year { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: #fff; }
.fallback-label { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: #f4b8bb; margin-top: .4rem; }
.nuakhai-hero-info .eyebrow { color: var(--red); }
.nuakhai-hero-info h2 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: #fff; margin-top: .4rem; }
.nuakhai-hero-info .section-subtitle { color: #c7c9ce; margin: .85rem 0 0; max-width: 100%; }
.nuakhai-hero-chips { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.4rem; }
.nuakhai-chip {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14); padding: .55rem 1.05rem; border-radius: 999px;
  font-size: .85rem; color: #e6e6e8; font-weight: 600;
}
.nuakhai-chip i { color: var(--red); }

@media (max-width: 767.98px) {
  .nuakhai-hero-feature { grid-template-columns: 1fr; padding: 1.75rem; text-align: center; }
  .nuakhai-hero-poster { max-width: 260px; margin: 0 auto; }
  .nuakhai-hero-chips, .nuakhai-hero-info .d-flex { justify-content: center; }
}

/* ---------------- Coming soon badge (used on placeholder cards) ---------------- */
.coming-soon {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted); background: var(--paper-alt); border: 1px dashed var(--line);
  padding: .3rem .65rem; border-radius: 999px; margin-top: auto;
}
.work-card.is-placeholder, .culture-card.is-placeholder { opacity: .82; }
.work-card.is-placeholder:hover, .culture-card.is-placeholder:hover { opacity: 1; }

.culture-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.culture-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.culture-card .culture-thumb {
  aspect-ratio: 16/10; background: linear-gradient(155deg, var(--paper-alt), #ececec);
  display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.4rem;
}
.culture-card .culture-body { padding: 1.1rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex-grow: 1; }

/* ---------------- Social proof ---------------- */
.social-proof-card {
  display: flex; align-items: center; gap: 1.1rem;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 1.4rem 1.6rem; height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.social-proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.social-proof-card .sp-icon {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.35rem;
}
.social-proof-card .sp-number { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.social-proof-card .sp-label { font-size: .82rem; color: var(--muted); }

/* ---------------- Stats ---------------- */
.empty-state-box {
  max-width: 480px;
  border: 1px dashed rgba(255,255,255,.35);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  color: #c7c9ce;
}
.empty-state-box i { font-size: 1.8rem; color: var(--red); }

/* ---------------- Get involved / red CTA band ---------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--red);
  padding: 4.5rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  color: #fff;
}
.cta-band .eyebrow { color: #fff; opacity: .85; }
.cta-band p { color: #ffd8d9; }
.cta-band svg.rings { position: absolute; inset: 0; opacity: .15; }

/* ---------------- Footer ---------------- */
.woym-footer { background: var(--ink); color: #c7c9ce; }
.woym-footer .footer-inner { padding: 4rem 0 2rem; }
.woym-footer h5 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); margin-bottom: 1.1rem; }
.woym-footer a { color: #c7c9ce; }
.woym-footer a:hover { color: var(--red); }
.woym-footer .footer-logo img { height: 46px; margin-bottom: 1rem; }
.woym-footer .footer-bottom { border-top: 1px solid #2a2a2c; padding: 1.25rem 0; font-size: .8rem; color: #6f7379; }
.woym-footer .social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid #333; border-radius: 50%; margin-right: .5rem;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.woym-footer .social-icons a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); color: #fff; }

/* ---------------- Forms ---------------- */
.form-label { color: var(--ink); margin-bottom: .4rem; }
.form-control, .form-select {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .65rem .9rem;
  font-size: .92rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,33,42,.15);
}
.alert { border-radius: 10px; font-size: .92rem; }

/* ---------------- Blog (Our Work) ---------------- */
.blog-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; font-size: .82rem; color: var(--muted); font-weight: 600; }
.blog-meta-row i { color: var(--red); margin-right: 5px; }
.blog-meta-row-sm { font-size: .74rem; gap: .85rem; margin-bottom: .5rem; }
.blog-meta-category { font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--red); margin-bottom: .4rem; }

.blog-article-head { border-bottom: 1px solid var(--line); padding-top: 3rem; padding-bottom: 2rem; }
.blog-article-title { font-size: 2.4rem; font-weight: 800; line-height: 1.22; letter-spacing: -.01em; margin-top: .3rem; }
.blog-meta-row-lg { font-size: .85rem; row-gap: .6rem; }

.blog-category-badge {
  display: inline-flex; align-items: center; background: var(--red); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 999px; text-decoration: none; transition: background .15s ease;
}
.blog-category-badge:hover { background: var(--red-dark); color: #fff; }

.reading-progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 1001; background: #fff; box-shadow: 0 0 10px rgba(255,255,255,.7); transition: width .1s linear; }

.blog-hero-image { border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow-card); }
.blog-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Gallery slider — Our Work single post */
.blog-gallery-slider { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow-card); cursor: grab; }
.blog-gallery-slider.is-dragging { cursor: grabbing; }
.blog-gallery-slider .gs-track { display: flex; width: 100%; height: 100%; touch-action: pan-y; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.blog-gallery-slider.is-dragging .gs-track { transition: none; }
.blog-gallery-slider .gs-slide { flex: 0 0 100%; width: 100%; height: 100%; }
.blog-gallery-slider .gs-slide img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; -webkit-user-drag: none; user-select: none; }
.blog-gallery-slider .gs-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(23,24,26,.55); color: #fff; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: background .2s ease, opacity .2s ease;
}
.blog-gallery-slider .gs-btn:hover { background: rgba(23,24,26,.8); }
.blog-gallery-slider .gs-btn svg { width: 18px; height: 18px; }
.blog-gallery-slider .gs-prev { left: 12px; }
.blog-gallery-slider .gs-next { right: 12px; }
.blog-gallery-slider .gs-btn[hidden] { display: none; }
.blog-gallery-slider .gs-dots {
  position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2;
  display: flex; justify-content: center; gap: 7px;
}
.blog-gallery-slider .gs-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.5); transition: background .2s ease, transform .2s ease;
}
.blog-gallery-slider .gs-dot.is-active { background: #fff; transform: scale(1.25); }
@media (max-width: 576px) {
  .blog-gallery-slider .gs-btn { width: 34px; height: 34px; }
}

.blog-author-strip {
  display: flex; align-items: center; gap: .9rem; margin-top: 2.5rem; padding: 1.1rem 1.3rem;
  background: var(--paper-alt); border: 1px solid var(--line); border-radius: 12px;
}
.blog-author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); padding: 6px; object-fit: contain; }
.blog-author-name { font-weight: 700; font-size: .9rem; color: var(--ink); }
.blog-author-role { font-size: .78rem; color: var(--muted); }

.blog-featured-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-featured-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,20,20,.16); }
.blog-featured-img { position: relative; min-height: 280px; background: var(--paper-alt); overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.blog-featured-card:hover .blog-featured-img img { transform: scale(1.05); }
.blog-featured-tag {
  position: absolute; top: 1rem; left: 1rem; background: var(--red); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 3px;
}
.blog-featured-body { padding: 2rem 2.2rem; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { font-size: 1.5rem; line-height: 1.3; color: var(--ink); margin-bottom: .6rem; }
.blog-featured-body p { color: var(--muted); font-size: .95rem; line-height: 1.7; margin-bottom: 1rem; }

.blog-article-body { font-size: 1.04rem; line-height: 1.9; color: var(--ink); }
.blog-article-body p { margin-bottom: 1.4rem; }
.blog-article-body p:last-child { margin-bottom: 0; }
.blog-article-body h2, .blog-article-body h3, .blog-article-body h4 { font-family: var(--font-heading); font-weight: 800; color: var(--ink); line-height: 1.35; margin: 2rem 0 1rem; }
.blog-article-body h2 { font-size: 1.5rem; }
.blog-article-body h3 { font-size: 1.25rem; }
.blog-article-body h4 { font-size: 1.08rem; }
.blog-article-body ul, .blog-article-body ol { margin-bottom: 1.4rem; padding-left: 1.4rem; }
.blog-article-body li { margin-bottom: .5rem; }
.blog-article-body a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.blog-article-body strong { font-weight: 700; }
.blog-article-body blockquote { margin: 1.75rem 0; padding: .25rem 1.5rem; border-left: 3px solid var(--red); color: var(--muted); font-style: italic; font-size: 1.08rem; }
.blog-article-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 1.5rem 0; display: block; }

/* Article content extras — lead paragraph, numbered reason blocks, value-pill
   grid and pull-quote sign-off. Used within .blog-article-body on both Our
   Work and Culture articles for richer, more visual long-form storytelling. */
.article-lead {
  font-size: 1.2rem; line-height: 1.75; color: var(--ink); font-weight: 500;
  margin-bottom: 1.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line);
}
.culture-reason {
  display: flex; gap: 1.1rem; align-items: flex-start; margin: 1.75rem 0;
}
.culture-reason-num {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-tint); color: var(--gold); border: 1px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem;
}
.culture-reason h3 { margin: 0 0 .5rem !important; }
.culture-reason p:last-child { margin-bottom: 0; }
.culture-value-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .75rem;
  margin: 1.5rem 0 2rem; padding: 0; list-style: none;
}
.culture-value-pill {
  display: flex; align-items: center; gap: .6rem; padding: .8rem 1rem;
  background: var(--gold-tint); border: 1px solid var(--gold-light); border-radius: 10px;
  font-weight: 600; font-size: .92rem; color: var(--ink);
}
.culture-value-pill .cvp-icon { font-size: 1.15rem; line-height: 1; }
.culture-signoff {
  text-align: center; font-family: var(--font-heading); font-weight: 800;
  font-size: 1.3rem; color: var(--ink); margin: 2rem 0 !important;
}
.culture-signoff small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .95rem; color: var(--muted); margin-top: .5rem; }
@media (max-width: 576px) {
  .culture-reason { gap: .8rem; }
  .culture-reason-num { width: 34px; height: 34px; font-size: .95rem; }
  .article-lead { font-size: 1.08rem; }
}

.blog-share-row { display: flex; align-items: center; gap: .6rem; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.blog-share-label { font-size: .82rem; font-weight: 700; color: var(--muted); margin-right: .3rem; }
.blog-share-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
  display: inline-flex; align-items: center; justify-content: center; color: var(--ink); font-size: .9rem;
  cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.blog-share-btn:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }

@media (max-width: 767.98px) {
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 200px; }
  .blog-featured-body { padding: 1.5rem; }
  .blog-article-title { font-size: 1.7rem; }
}

/* ---------------- Nuakhai Edition — Premium ---------------- */
.ed-hero {
  position: relative; display: grid; grid-template-columns: 1.15fr 1fr;
  min-height: 60vh; background: var(--ink); overflow: hidden;
}
.ed-hero-img-side { position: relative; overflow: hidden; }
.ed-hero-img-side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ed-hero-img-side::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.45) 0%, rgba(10,10,11,.1) 30%, rgba(10,10,11,.25) 65%, rgba(10,10,11,.88) 100%);
}
.ed-hero-tag { position: absolute; left: 2.6rem; bottom: 2.6rem; z-index: 1; display: flex; align-items: center; gap: 10px; }
.ed-hero-tag .dot { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.ed-hero-tag span { font-family: var(--font-heading); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); }

.ed-hero-content { display: flex; flex-direction: column; justify-content: center; padding: 2.6rem 3.2rem 2.6rem 2.8rem; }
.ed-hero-kicker { font-family: var(--font-heading); font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.ed-hero-heading { margin: 0; font: inherit; }
.ed-hero-title { font-family: var(--font-serif, 'Playfair Display', Georgia, serif); font-style: italic; font-weight: 500; font-size: 1.5rem; color: #fff; line-height: 1.3; margin-bottom: .4rem; }
.ed-hero-year { font-family: var(--font-heading); font-weight: 800; font-size: clamp(3.2rem,6vw,4.8rem); line-height: .92; color: #fff; letter-spacing: -.02em; }
.ed-hero-divider { display: flex; align-items: center; gap: 14px; margin: 1.1rem 0; }
.ed-hero-divider .line { width: 44px; height: 2px; background: var(--gold); }
.ed-hero-edition {
  display: inline-block; font-family: var(--font-heading); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold)); padding: .4rem 1rem; border-radius: 2px;
  margin-bottom: 1rem;
}
.ed-hero-tagline { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; line-height: 1.35; color: #fff; max-width: 400px; margin-bottom: .8rem; }
.ed-hero-tagline .hl { color: var(--gold-light); }
.ed-hero-lead { font-size: .9rem; color: rgba(255,255,255,.68); line-height: 1.65; max-width: 420px; margin: 0 0 1rem; }
.ed-hero-venue { font-size: .9rem; color: rgba(255,255,255,.68); line-height: 1.6; max-width: 360px; display: flex; align-items: center; gap: 8px; }
.ed-hero-ticket-wrap { display: flex; flex-direction: column; align-items: flex-start; margin-top: 1.1rem; }
.ed-hero-ticket-badge {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: .6rem;
  padding: .35rem .8rem; border-radius: 999px; font-family: var(--font-heading);
  font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.ed-hero-ticket-badge-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ed-hero-ticket-badge.is-open { background: rgba(34,197,94,.14); color: #4ade80; }
.ed-hero-ticket-badge.is-open .ed-hero-ticket-badge-dot { background: #4ade80; }
.ed-hero-ticket-badge.is-warm { background: rgba(201,163,78,.18); color: var(--gold-light); }
.ed-hero-ticket-badge.is-warm .ed-hero-ticket-badge-dot { background: var(--gold-light); }
.ed-hero-ticket-badge.is-hot { background: rgba(230,33,42,.18); color: #ff8a8f; }
.ed-hero-ticket-badge.is-hot .ed-hero-ticket-badge-dot { background: #ff5459; animation: pulseRing 1.3s ease-in-out infinite; }

.ed-hero-ticket-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: .95rem 1.9rem; border-radius: 999px;
  background: var(--red); color: #fff; font-family: var(--font-heading);
  font-weight: 800; font-size: .92rem; letter-spacing: .01em;
  box-shadow: 0 14px 32px rgba(230,33,42,.35), 0 0 0 0 rgba(230,33,42,.45);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  animation: ticketGlow 2.2s ease-in-out infinite;
}
.ed-hero-ticket-btn:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px) scale(1.03); box-shadow: 0 18px 40px rgba(230,33,42,.45); }
.ed-hero-ticket-btn.is-urgent { background: var(--red-dark); animation: ticketGlowUrgent 1.6s ease-in-out infinite; }
.ed-hero-ticket-btn.is-urgent:hover { background: #8f0f15; }
@keyframes ticketGlow {
  0%, 100% { box-shadow: 0 14px 32px rgba(230,33,42,.32), 0 0 0 0 rgba(230,33,42,.4); }
  50% { box-shadow: 0 14px 32px rgba(230,33,42,.32), 0 0 0 10px rgba(230,33,42,0); }
}
@keyframes ticketGlowUrgent {
  0%, 100% { box-shadow: 0 14px 32px rgba(230,33,42,.32), 0 0 0 0 rgba(230,33,42,.4); }
  50% { box-shadow: 0 14px 32px rgba(230,33,42,.32), 0 0 0 12px rgba(230,33,42,0); }
}

.ed-lineup-soon {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; text-align: center;
  max-width: 560px; margin: 0 auto; padding: 2.25rem 1.5rem; border: 1px dashed var(--gold-light);
  border-radius: 14px; background: var(--gold-tint); color: #6b5a2e; font-size: .92rem; font-weight: 600;
}
.ed-lineup-soon i { color: var(--gold); font-size: 1.3rem; }

/* ---------------- Donate: bank details card ---------------- */
.donate-bank-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.75rem; box-shadow: var(--shadow-card); }
.donate-bank-head { display: flex; align-items: center; gap: 14px; margin-bottom: 1.5rem; }
.donate-bank-title { font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.donate-bank-sub { font-size: .82rem; color: var(--muted); margin-top: .15rem; }
.donate-bank-rows { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.donate-bank-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem 1.1rem; border-bottom: 1px solid var(--line);
}
.donate-bank-row:last-child { border-bottom: none; }
.donate-bank-row:nth-child(even) { background: var(--paper-alt); }
.donate-bank-label { font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.donate-bank-value { font-family: var(--font-heading); font-weight: 700; font-size: .96rem; color: var(--ink); word-break: break-word; }
.copy-btn {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--line);
  background: #fff; color: var(--muted); display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.copy-btn:hover { border-color: var(--red); color: var(--red); }
.copy-btn.is-copied { background: #edf7f0; border-color: #c7e6cf; color: #1c7c40; transform: scale(1.05); }
.donate-copy-all { width: 100%; justify-content: center; margin-top: 1.25rem; }

/* ---------------- Team: tab system ---------------- */
.team-tabs-scroll { overflow-x: auto; margin-bottom: 2.25rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.team-tabs { display: flex; gap: .6rem; border-bottom: 1px solid var(--line); padding-bottom: 1rem; min-width: max-content; }
.team-tab {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  padding: .65rem 1.1rem; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); font-size: .86rem; font-weight: 700;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.team-tab i { color: var(--muted); font-size: .78rem; transition: color .15s ease; }
.team-tab:hover { border-color: var(--red); color: var(--red); transform: translateY(-1px); }
.team-tab:hover i { color: var(--red); }
.team-tab.is-active { background: var(--red); border-color: var(--red); color: #fff; }
.team-tab.is-active i { color: rgba(255,255,255,.85); }
.team-tab-panel { animation: fadeUp .35s cubic-bezier(.22,1,.36,1); }

/* ---------------- Contact: quick-route cards ---------------- */
.contact-route-card {
  display: flex; align-items: center; gap: 14px; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.1rem 1.25rem;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.contact-route-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20,20,20,.08); }
.contact-route-title { font-weight: 700; font-size: .92rem; color: var(--ink); }
.contact-route-sub { font-size: .8rem; color: var(--red); font-weight: 600; margin-top: .1rem; }

/* ---------------- Quiz countdown widget ---------------- */
.quiz-countdown { text-align: center; }
.quiz-countdown-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: .74rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: .5rem 1.1rem; border-radius: 999px;
  background: var(--gold-tint); color: #8f7635; margin-bottom: 1.1rem;
}
.quiz-countdown-live .quiz-countdown-badge { background: rgba(34,197,94,.15); color: #16a34a; }
.quiz-countdown-live .quiz-countdown-badge i { animation: pulseRing 1.6s ease-in-out infinite; }
.quiz-countdown-closed .quiz-countdown-badge { background: var(--paper-alt); color: var(--muted); }
.quiz-countdown-timer { display: flex; align-items: center; justify-content: center; gap: .9rem; }
.qc-unit { display: flex; flex-direction: column; align-items: center; min-width: 56px; }
.qc-val { font-family: var(--font-heading); font-weight: 800; font-size: 1.9rem; line-height: 1; color: inherit; }
.qc-lbl { font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }
.quiz-countdown-dark .qc-val { color: #fff; }
.quiz-countdown-dark .qc-lbl { color: rgba(255,255,255,.5); }

.quiz-terms {
  position: relative; margin: 1.5rem auto 0; max-width: 480px; text-align: left; font-size: .85rem;
  border: 1px solid var(--line); border-radius: 12px; padding: 1.4rem 1.5rem; background: #fff;
  box-shadow: 0 10px 30px rgba(20,20,20,.06); overflow: hidden;
}
.quiz-terms::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.quiz-terms-title {
  display: flex; align-items: center; gap: 8px; font-family: var(--font-heading);
  font-weight: 800; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 1rem; padding-bottom: .85rem; border-bottom: 1px solid var(--line);
}
.quiz-terms-title i { color: var(--gold); font-size: .78rem; }
.quiz-terms p { margin: 0; color: var(--muted); line-height: 1.7; }
.quiz-terms-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.quiz-terms-list li {
  position: relative; padding-left: 1.6rem; color: #4a4b4f; line-height: 1.55;
}
.quiz-terms-list li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .6rem;
  position: absolute; left: 0; top: .2rem; width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold-tint); color: var(--gold); display: flex; align-items: center; justify-content: center;
}
.quiz-countdown-dark .quiz-terms { background: #1c1418; border-color: rgba(255,255,255,.12); }
.quiz-countdown-dark .quiz-terms-title { color: #fff; border-bottom-color: rgba(255,255,255,.12); }
.quiz-countdown-dark .quiz-terms p { color: rgba(255,255,255,.62); }
.quiz-countdown-dark .quiz-terms-list li { color: rgba(255,255,255,.72); }
.quiz-countdown-dark .quiz-terms-list li::before { background: rgba(201,163,78,.2); }

/* Homepage quiz promo section — full-screen, festive background at low opacity */
.quiz-promo-section {
  background: var(--ink); position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center; padding: 6rem 0;
}
.quiz-promo-section::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.quiz-promo-bg {
  position: absolute; inset: 0; z-index: 0; opacity: .16;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.quiz-promo-section .container { position: relative; z-index: 1; }
.quiz-promo-grid { display: grid; align-items: center; gap: 3rem; }
.quiz-promo-grid--single { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; text-align: center; }
.quiz-promo-grid--split { grid-template-columns: 1.15fr 1fr; text-align: center; }
.quiz-promo-eyebrow {
  font-family: var(--font-heading); font-size: .8rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: .85rem;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.quiz-promo-eyebrow::before, .quiz-promo-eyebrow::after { content: ""; width: 30px; height: 1px; background: var(--gold); }
.quiz-promo-title {
  font-family: var(--font-heading); font-weight: 800; font-size: clamp(2.1rem,4.5vw,3.4rem);
  line-height: 1.1; color: #fff; margin-bottom: 2rem; text-shadow: 0 0 40px rgba(201,163,78,.35);
}
.quiz-countdown-dark .quiz-countdown-badge { font-size: .8rem; padding: .6rem 1.3rem; }
.quiz-countdown-dark .qc-val { font-size: clamp(2.2rem,4vw,3rem); }
.quiz-promo-terms-col .quiz-terms { margin: 0; max-width: none; text-align: left; }
@media (max-width: 840px) {
  .quiz-promo-grid--split { grid-template-columns: 1fr; }
  .quiz-promo-terms-col .quiz-terms { margin: 0 auto; max-width: 480px; }
}

/* ---------------- Scroll-to-top / scroll-to-bottom ---------------- */
.scroll-nav { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 900; display: flex; flex-direction: column; gap: 10px; }
.scroll-nav-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--ink); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(20,20,20,.14);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s, background .15s ease, border-color .15s ease, color .15s ease;
}
.scroll-nav-btn.is-visible { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .2s ease, transform .2s ease, background .15s ease, border-color .15s ease, color .15s ease; }
.scroll-nav-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
@media (max-width: 575.98px) {
  .scroll-nav { right: .85rem; bottom: .85rem; gap: 8px; }
  .scroll-nav-btn { width: 38px; height: 38px; }
}
.ed-hero-venue i { color: var(--gold); }

.ed-stats {
  /* position:relative promotes this into the same stacking layer as any
     positioned sibling above it (e.g. .event-countdown-section, which needs
     position:relative for its decorative glow). Without it, positioned
     siblings paint above static ones regardless of DOM order — so when the
     mobile "floating card" -3rem margin pulls this up underneath that
     section, its own content (the Date/Venue labels) was rendering hidden
     behind that section's solid background instead of on top of it. */
  position: relative;
  background: var(--ink-2, #232427); border-top: 1px solid rgba(255,255,255,.06);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.ed-stat { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,.09); }
.ed-stat:last-child { border-right: none; }
.ed-stat-icon { display: none; }
.ed-stat-label { font-family: var(--font-heading); font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .55rem; }
.ed-stat-value { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.35; }

@media (max-width: 840px) {
  .ed-hero { grid-template-columns: 1fr; }
  .ed-hero-img-side { min-height: 30vh; }
  .ed-hero-content { padding: 1.75rem 1.5rem; }
  .ed-stats { grid-template-columns: repeat(2, 1fr); }
  .ed-stat:nth-child(2) { border-right: none; }
  .ed-stat:nth-child(1), .ed-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.09); }
}

.ed-kicker { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 1rem; }
.ed-kicker .line { width: 32px; height: 1px; background: var(--gold); }
.ed-kicker span { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.ed-section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.ed-section-title { font-family: var(--font-heading); font-size: clamp(1.6rem,3vw,2.1rem); font-weight: 800; color: var(--ink); }
.ed-section-sub { font-size: .95rem; color: var(--muted); margin-top: .6rem; line-height: 1.7; }

.ed-intro-text { font-size: 1.08rem; line-height: 1.95; color: #363739; }
.ed-intro-text p { margin-bottom: 1.3rem; }
.ed-intro-text p:last-child { margin-bottom: 0; }
.ed-intro-text p:first-of-type::first-letter {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif); font-weight: 600;
  font-size: 3.4rem; line-height: .7; float: left; margin: .1rem .5rem 0 0; color: var(--ink);
}

.ed-photo-card { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; background: var(--paper-alt); box-shadow: 0 8px 24px rgba(20,20,20,.1); transition: transform .35s ease, box-shadow .35s ease; }
.ed-photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.ed-photo-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 1.6rem .9rem .7rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
  color: #fff; font-size: .78rem; font-weight: 600; letter-spacing: .01em;
}
@media (hover: hover) and (pointer: fine) {
  .ed-photo-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,20,20,.18); }
  .ed-photo-card:hover img { transform: scale(1.06); }
}

.ed-awards-section { background: var(--ink); position: relative; overflow: hidden; }
.ed-awards-section::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.ed-awards-section .ed-section-title { color: #fff; }
.ed-awards-section .ed-section-sub { color: rgba(255,255,255,.55); }
.ed-awards-section .ed-kicker span { color: var(--gold-light); }

.ed-honor-card { background: #fff; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.ed-honor-photo { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #1c1418; }
.ed-honor-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ed-honor-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.65) 100%); }
.ed-honor-num {
  position: absolute; top: .8rem; right: .8rem; z-index: 1; width: 30px; height: 30px;
  border: 1px solid var(--gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic; font-size: .85rem; color: var(--gold-light);
}
.ed-honor-tag {
  position: absolute; left: 1.1rem; bottom: .8rem; z-index: 1;
  font-family: var(--font-heading); font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light);
}
.ed-honor-body { padding: 1.3rem 1.4rem 1.5rem; border-top: 2px solid var(--gold); }
.ed-honor-award { font-family: var(--font-heading); font-size: .62rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--gold-dim, #8f7635); line-height: 1.4; margin-bottom: .4rem; }
.ed-honor-name { font-family: var(--font-heading); font-size: 1.08rem; font-weight: 700; color: var(--ink); margin-bottom: .45rem; }
.ed-honor-detail { font-size: .83rem; color: #54555a; line-height: 1.58; white-space: pre-line; }
.ed-honor-blank { border: 1px dashed rgba(255,255,255,.14); min-height: 220px; }

.ed-watch-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: 0 10px 30px rgba(20,20,20,.08); }
.ed-watch-meta { padding: 1.3rem 1.4rem; border-top: 3px solid var(--gold); }
.ed-watch-title { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--ink); }
.ed-watch-desc { font-size: .85rem; color: var(--muted); margin-top: .3rem; line-height: 1.6; }

.ed-sponsor-spotlight {
  text-align: center; background: linear-gradient(160deg, var(--gold-tint), #fff);
  border: 1px solid var(--gold-light); border-radius: 18px; padding: 3rem 2rem; margin-bottom: 3.5rem;
}
.ed-sponsor-spotlight-label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.ed-sponsor-spotlight img { max-height: 84px; max-width: 260px; object-fit: contain; }
.ed-sponsor-tier { margin-bottom: 2.5rem; }
.ed-sponsor-tier:last-child { margin-bottom: 0; }
.ed-sponsor-tier-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 1.25rem; }
.ed-sponsor-logo { background: #fff; border: 1px solid var(--line); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.ed-sponsor-logo:hover { box-shadow: 0 10px 24px rgba(20,20,20,.1); transform: translateY(-3px); border-color: var(--gold-light); }
.ed-sponsor-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }

.ed-cta { background: var(--ink); padding: 5rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
.ed-cta::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.ed-cta-title { font-family: var(--font-heading); font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; color: #fff; margin-top: .6rem; }

.ed-nav { display: flex; justify-content: space-between; background: #fff; border-bottom: 1px solid var(--line); }
.ed-nav a { flex: 1; padding: 1.4rem 1.75rem; font-size: .88rem; font-weight: 700; color: var(--ink); transition: background .2s ease; display: flex; align-items: center; gap: 8px; }
.ed-nav a:hover { background: var(--paper-alt); color: var(--red); }
.ed-nav a:last-child { justify-content: flex-end; text-align: right; }
.ed-nav-label { display: block; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }

@media (max-width: 767.98px) {
  .ed-hero { min-height: auto; padding: 2.25rem 1.25rem 1.5rem; }
  .ed-hero-kicker { margin-bottom: .6rem; }
  .ed-hero-edition { margin-bottom: .6rem; }
  .ed-hero-tagline { margin-bottom: .5rem; }
  .ed-hero-ticket-wrap { margin-top: .8rem; }
  .ed-hero-lead { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
  .ed-stats { grid-template-columns: repeat(2, 1fr); margin-top: -3rem; border-radius: 14px; }
  /* The -3rem pull above is the "floating card peeking out of the hero" effect —
     right when a countdown card sits between them instead, that overlap made
     the two cards touch with no breathing room. Cancel the pull here and add
     the gap as extra *padding* on the (dark) countdown section instead of a
     margin, so the gap stays filled with dark background instead of exposing
     the page's white body background. */
  .event-countdown-section + .ed-stats { margin-top: 0; }
  .event-countdown-section { padding-bottom: 4.5rem; }
  .ed-stat { border-bottom: 1px solid var(--line); }
  .ed-stat:nth-child(2) { border-right: none; }
  .ed-stat:nth-child(3), .ed-stat:nth-child(4) { border-bottom: none; }
  .ed-honor-card { flex-direction: column; text-align: center; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 767px) {
  .section { padding: 3.25rem 0; }
}

/* ---------------- Nuakhai event countdown ---------------- */
.event-countdown-section { background: var(--ink); position: relative; overflow: hidden; }
.event-countdown {
  position: relative; max-width: 720px; margin: 0 auto; text-align: center;
  padding: 3rem 2rem; border: 1px solid rgba(201,163,78,.3); border-radius: 20px;
  background: radial-gradient(120% 140% at 50% -10%, rgba(201,163,78,.14), transparent 60%), #1a1418;
  overflow: hidden;
}
.event-countdown-glow {
  position: absolute; top: -40%; left: 50%; width: 480px; height: 480px; margin-left: -240px;
  background: radial-gradient(circle, rgba(201,163,78,.16), transparent 70%);
  pointer-events: none;
}
.event-countdown-flourish {
  position: absolute; top: 50%; transform: translateY(-50%); font-size: 3.4rem;
  color: rgba(201,163,78,.08); pointer-events: none;
}
.event-countdown-flourish-left { left: 1.25rem; }
.event-countdown-flourish-right { right: 1.25rem; }
.event-countdown-kicker { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 1rem; position: relative; z-index: 1; }
.event-countdown-kicker .line { width: 28px; height: 1px; background: var(--gold); }
.event-countdown-kicker span:not(.line) { font-family: var(--font-heading); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); }
.event-countdown-title { position: relative; z-index: 1; font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.5rem,3.2vw,2.1rem); color: #fff; }
.event-countdown-subtitle { position: relative; z-index: 1; font-size: .9rem; color: rgba(255,255,255,.55); margin-top: .4rem; }
.event-countdown-timer { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 2rem; }
.ec-unit { display: flex; flex-direction: column; align-items: center; min-width: 64px; }
.ec-val {
  font-family: var(--font-heading); font-weight: 800; font-size: clamp(2.2rem,5vw,3.4rem); line-height: 1;
  color: var(--gold-light); text-shadow: 0 0 24px rgba(201,163,78,.5);
}
.ec-lbl { font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: .5rem; }
.ec-sep { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.6rem,3.5vw,2.4rem); color: rgba(201,163,78,.35); transform: translateY(-.6rem); }
@media (max-width: 575.98px) {
  .event-countdown { padding: 2.25rem 1.25rem; border-radius: 16px; }
  .event-countdown-flourish { font-size: 2.2rem; }
  .event-countdown-timer { gap: .3rem; }
  .ec-unit { min-width: 52px; }
  .ec-sep { font-size: 1.4rem; }
}

/* ---------------- Lightbox ---------------- */
.lb-photo { cursor: zoom-in; }
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 3000; display: flex; align-items: center; justify-content: center;
  background: rgba(10,9,10,.94); opacity: 0; visibility: hidden; transition: opacity .22s ease;
  padding: 1.5rem;
}
.lightbox-overlay.is-open { opacity: 1; visibility: visible; }
.lightbox-figure { position: relative; max-width: 92vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-figure img {
  max-width: 92vw; max-height: 78vh; width: auto; height: auto; object-fit: contain;
  border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,.5);
  opacity: 0; transform: scale(.97); transition: opacity .2s ease, transform .2s ease;
}
.lightbox-overlay.is-open .lightbox-figure img { opacity: 1; transform: scale(1); }
.lightbox-caption { color: rgba(255,255,255,.85); font-size: .85rem; text-align: center; margin-top: 1rem; max-width: 640px; line-height: 1.6; }
.lightbox-counter { color: rgba(255,255,255,.45); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; margin-top: .35rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed; display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.08); color: #fff; transition: background .2s ease, transform .2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.18); }
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
  .lightbox-close { top: .75rem; right: .75rem; }
}
body.lightbox-open { overflow: hidden; }
