/* ============ Njûkî Hûngi — style.css ============ */
:root {
  --honey: #F7941D;
  --honey-deep: #E0521C;
  --honey-soft: #FFB85C;
  --ink: #14100B;
  --ink-2: #1E1810;
  --ink-3: #2A2114;
  --cream: #FCF6EC;
  --cream-dim: #D9CDBC;
  --line: rgba(247, 148, 29, 0.22);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 72px; }
:focus-visible { outline: 2px solid var(--honey); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { width: min(1160px, 92vw); margin: 0 auto; }
.accent { color: var(--honey); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }

/* ---------- Reveal animation (progressive enhancement) ----------
   Content is visible by default; it only starts hidden when JS is
   running (html.js), so a script failure can never blank the page. */
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--honey); color: var(--ink); font-weight: 700;
  padding: .8rem 1.4rem; border-radius: 0 0 12px 0; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary {
  background: linear-gradient(120deg, var(--honey), var(--honey-deep));
  color: #fff; box-shadow: 0 8px 24px rgba(224, 82, 28, .35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(224, 82, 28, .5); }
.btn--ghost { border-color: var(--line); color: var(--cream); background: rgba(255,255,255,.03); }
.btn--ghost:hover { border-color: var(--honey); color: var(--honey); transform: translateY(-2px); }

/* ---------- Inline SVG icons ---------- */
.picon {
  width: 1.25em; height: 1.25em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  vertical-align: -0.22em;
}
.pcard__icon.picon { width: 1.5em; height: 1.5em; color: var(--honey); }

/* ---------- Live dot ---------- */
.live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #ff3b30; display: inline-block; flex: none;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 59, 48, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 59, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled { background: rgba(20, 16, 11, .92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.nav__inner {
  width: min(1240px, 94vw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem 0;
}
.nav__brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.nav__logo { width: 46px; height: 46px; border-radius: 50%; background: #fff; object-fit: contain; }
.nav__wordmark { font-family: var(--font-display); font-weight: 700; letter-spacing: .06em; font-size: 1.05rem; color: var(--honey); }
.nav__wordmark em { font-style: normal; color: var(--honey-deep); }
.nav__links { display: flex; align-items: center; gap: 1.5rem; }
.nav__link {
  text-decoration: none; font-size: .92rem; font-weight: 500;
  color: var(--cream-dim); transition: color .2s ease; display: inline-flex; align-items: center; gap: .4rem;
}
.nav__link:hover, .nav__link.is-active { color: var(--honey); }
.nav__link--cta {
  border: 1.5px solid var(--honey); color: var(--honey);
  padding: .45rem 1.1rem; border-radius: 999px;
}
.nav__link--cta:hover { background: var(--honey); color: var(--ink); }
.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,11,.88) 0%, rgba(20,16,11,.55) 45%, var(--ink) 100%);
}
.hero__content { position: relative; z-index: 2; width: min(880px, 92vw); padding: 7rem 0 4rem; }
.hero__kicker {
  text-transform: uppercase; letter-spacing: .22em; font-size: .8rem;
  color: var(--honey-soft); font-weight: 600; margin-bottom: 1.2rem;
}
.hero__title { font-size: clamp(2.6rem, 7vw, 4.8rem); margin-bottom: .7rem; }
.hero__event-line {
  font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--honey-soft); margin-bottom: 1rem;
}
.hero__sub { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--cream-dim); max-width: 640px; margin: 0 auto 2rem; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.8rem; }
.hero__countdown {
  display: inline-flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 2.2rem; padding: .7rem 1.4rem; text-decoration: none;
  background: rgba(20, 16, 11, .55); border: 1px solid var(--line); border-radius: 999px;
  backdrop-filter: blur(6px); transition: border-color .2s ease, transform .2s ease;
}
.hero__countdown:hover { border-color: var(--honey); transform: translateY(-2px); }
.hero__countdown-label {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .14em;
  font-weight: 700; color: var(--honey-soft);
}
.hero__countdown-units { display: inline-flex; gap: .35rem; }
.hero__countdown-units b {
  font-family: var(--font-display); font-size: 1.05rem; color: var(--cream);
  min-width: 2.1em; text-align: center; background: rgba(247,148,29,.14);
  border-radius: 8px; padding: .15rem .3rem;
}
.hero__countdown-units b small {
  display: block; font-size: .55rem; font-weight: 600; letter-spacing: .08em;
  color: var(--cream-dim); text-transform: uppercase; font-family: var(--font-body);
}
.hero__proverb { min-height: 3.6rem; }
.hero__proverb-gikuyu { font-family: var(--font-display); font-size: 1.15rem; color: var(--honey); }
.hero__proverb-english { font-size: .88rem; color: var(--cream-dim); }
.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--honey); font-size: 1.4rem; text-decoration: none;
  animation: bob 2s infinite ease-in-out;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Section head ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head--left { text-align: left; margin: 0 0 1.6rem; }
.section-head__kicker {
  text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; font-weight: 700;
  color: var(--honey); margin-bottom: .8rem; display: inline-flex; align-items: center; gap: .5rem;
}
.section-head p:not(.section-head__kicker) { color: var(--cream-dim); margin-top: 1rem; }

/* ---------- Live section ---------- */
.live { padding: 5.5rem 0 4rem; background: var(--ink); }
.live__player {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 9; background: var(--ink-2);
  border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.live__player iframe { width: 100%; height: 100%; border: 0; }
.live__offline {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: 1rem; padding: 2rem;
  background:
    linear-gradient(180deg, rgba(20,16,11,.82), rgba(20,16,11,.9)),
    url("../assets/gallery/photo-026.jpg") center/cover;
}
.live__offline h3 { font-size: 1.5rem; }
.live__offline p { color: var(--cream-dim); max-width: 460px; }
.live__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255, 59, 48, .12); border: 1px solid rgba(255, 59, 48, .4);
  color: #ff6b62; font-weight: 700; font-size: .8rem; letter-spacing: .12em;
  padding: .35rem 1rem; border-radius: 999px; text-transform: uppercase;
}
.live__platforms {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 1.4rem; margin-top: 1.6rem; font-size: .9rem; color: var(--cream-dim);
}
.live__platforms a { color: var(--honey); text-decoration: none; font-weight: 600; }
.live__platforms a:hover { text-decoration: underline; }

/* ---------- About ---------- */
.about { padding: 5rem 0; background: var(--ink-2); }
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }
.about__text p { color: var(--cream-dim); margin-bottom: 1rem; }
.about__text strong { color: var(--cream); }
.about__media { position: relative; }
.about__photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.about__photo--main img { aspect-ratio: 4/3; object-fit: cover; }
.about__photo--small {
  position: absolute; bottom: -2rem; left: -2.5rem; width: 55%;
  border: 4px solid var(--ink-2);
}
.about__photo--small img { aspect-ratio: 3/2; object-fit: cover; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 5.5rem; text-align: center;
}
.stat {
  padding: 1.8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(247,148,29,.04);
}
.stat__num, .stat__suffix {
  font-family: var(--font-display); font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 700; color: var(--honey);
}
.stat__label { font-size: .82rem; color: var(--cream-dim); margin-top: .5rem; }

/* ---------- Culture ---------- */
.culture { padding: 5.5rem 0; }
.culture__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0,0,0,.45); }
.card__img { overflow: hidden; }
.card__img img { aspect-ratio: 16/10; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__img img { transform: scale(1.06); }
.card h3 { padding: 1.2rem 1.4rem .4rem; font-size: 1.15rem; color: var(--honey-soft); }
.card p { padding: 0 1.4rem 1.5rem; font-size: .92rem; color: var(--cream-dim); }
.culture__quote {
  margin: 3.5rem auto 0; max-width: 760px; text-align: center;
  font-family: var(--font-display); font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--cream); border-top: 1px solid var(--line); padding-top: 2.6rem;
}

/* ---------- Event ---------- */
.event { position: relative; padding: 6.5rem 0; overflow: hidden; }
.event__bg { position: absolute; inset: 0; }
.event__bg img { width: 100%; height: 100%; object-fit: cover; }
.event__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,16,11,.96) 30%, rgba(224,82,28,.55) 130%);
}
.event__inner { position: relative; z-index: 2; max-width: 760px; }
.event__inner h2 { margin: .6rem 0 1rem; }
.event__lead { color: var(--cream-dim); margin-bottom: 2rem; }
.event__lead strong { color: var(--honey-soft); }
.event__growth {
  display: flex; align-items: flex-end; gap: 1.6rem; margin-bottom: 2.4rem;
  padding: 1.4rem 1.6rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(20, 16, 11, .5); width: fit-content;
}
.growth__step { display: flex; flex-direction: column; align-items: center; gap: .3rem; min-width: 92px; }
.growth__bar {
  width: 46px; height: calc(90px * var(--h, 50) / 100);
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, rgba(247,148,29,.55), rgba(247,148,29,.18));
}
.growth__step--next .growth__bar {
  background: linear-gradient(180deg, var(--honey), var(--honey-deep));
  box-shadow: 0 6px 22px rgba(224, 82, 28, .45);
}
.growth__num { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--cream); }
.growth__step--next .growth__num { color: var(--honey); font-size: 1.35rem; }
.growth__tag { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cream-dim); }
.growth__step--next .growth__tag { color: var(--honey-soft); font-weight: 700; }
/* RSVP card */
.rsvp {
  margin: 2.4rem 0 1.8rem; padding: 1.8rem 2rem;
  max-width: 620px; border-radius: var(--radius);
  background: rgba(20, 16, 11, .62); border: 1.5px solid var(--honey);
  box-shadow: 0 18px 50px rgba(224, 82, 28, .2); backdrop-filter: blur(6px);
}
.rsvp__head h3 { font-size: 1.5rem; color: var(--cream); margin-bottom: .3rem; }
.rsvp__counter { color: var(--honey-soft); font-weight: 600; font-size: .95rem; margin-bottom: 1.2rem; }
.rsvp__form { display: flex; gap: .8rem; flex-wrap: wrap; }
.rsvp__form input {
  flex: 1 1 180px; padding: .95rem 1.1rem; border-radius: 12px;
  border: 1px solid var(--line); background: var(--ink);
  color: var(--cream); font: inherit; font-size: .95rem;
}
.rsvp__form input:focus { outline: none; border-color: var(--honey); }
.rsvp__form .btn { flex: 1 1 100%; justify-content: center; }
@media (min-width: 640px) { .rsvp__form .btn { flex: 0 0 auto; } }
.rsvp__invite { margin-top: .9rem; font-size: .88rem; color: var(--cream-dim); }
.rsvp__invite a { color: var(--honey-soft); font-weight: 600; text-decoration: none; }
.rsvp__invite a:hover { color: var(--honey); text-decoration: underline; }
.rsvp__done p { color: var(--cream-dim); margin-bottom: 1.1rem; }
.rsvp__done strong { color: var(--honey-soft); }
.rsvp__share { display: flex; gap: .8rem; flex-wrap: wrap; }
.rsvp__note { margin-top: .8rem; font-size: .88rem; color: var(--honey-soft); min-height: 1.2em; }

/* Sticky 3.0 bar */
.stickybar {
  position: fixed; left: 50%; bottom: 1rem; transform: translate(-50%, 0); z-index: 90;
  display: flex; align-items: center; gap: 1.2rem;
  padding: .65rem .8rem .65rem 1.3rem; border-radius: 999px;
  background: rgba(20, 16, 11, .9); border: 1px solid var(--honey);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .5); backdrop-filter: blur(10px);
  width: max-content; max-width: calc(100vw - 1.6rem);
  transition: transform .35s ease, opacity .35s ease;
}
.stickybar[hidden] { display: none; }
.stickybar.is-hidden { opacity: 0; transform: translate(-50%, 120%); pointer-events: none; }
.stickybar__info { display: flex; flex-direction: column; line-height: 1.25; }
.stickybar__title { font-weight: 700; font-size: .82rem; color: var(--honey-soft); letter-spacing: .04em; }
.stickybar__count { font-family: var(--font-display); font-size: .95rem; color: var(--cream); font-variant-numeric: tabular-nums; }
.stickybar .btn { padding: .6rem 1.3rem; font-size: .9rem; }

.event__details { display: flex; flex-wrap: wrap; gap: 2.4rem; margin-bottom: 2.2rem; }
.event__detail-label {
  display: block; text-transform: uppercase; font-size: .72rem; letter-spacing: .18em;
  color: var(--honey); font-weight: 700; margin-bottom: .25rem;
}
.event__detail-value { font-family: var(--font-display); font-size: 1.12rem; }
.countdown { display: flex; gap: 1rem; margin-bottom: 2.4rem; flex-wrap: wrap; }
.countdown__unit {
  min-width: 86px; text-align: center; padding: 1rem .8rem;
  background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: 14px;
}
.countdown__num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--honey); display: block; }
.countdown__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--cream-dim); }
.countdown__tba {
  font-family: var(--font-display); font-size: 1.3rem; color: var(--honey-soft);
  border-left: 3px solid var(--honey); padding-left: 1rem;
}
.event__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Gallery ---------- */
.gallery { padding: 5.5rem 0; background: var(--ink-2); }
.gallery__grid {
  columns: 4 240px; column-gap: 1rem;
}
.gallery__item {
  margin-bottom: 1rem; border-radius: 12px; overflow: hidden; cursor: zoom-in;
  break-inside: avoid; position: relative; border: none; padding: 0; background: none; width: 100%;
}
.gallery__item img { width: 100%; transition: transform .4s ease, filter .4s ease; }
.gallery__item:hover img { transform: scale(1.05); filter: brightness(1.08); }
.gallery__more { text-align: center; margin-top: 2.4rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.gallery__ext { color: var(--honey); font-size: .9rem; text-decoration: none; }
.gallery__ext:hover { text-decoration: underline; }

/* ---------- Partner ---------- */
.partner { padding: 5.5rem 0; }
.partner__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
.partner__cat { background: var(--ink-2); }
.partner__cat > summary { font-size: 1.08rem; justify-content: flex-start; }
.partner__cat > summary::after { margin-left: auto; }
.pcard__icon { font-size: 1.4rem; }
.partner__cat .collapse__body p { font-size: .95rem; color: var(--cream-dim); margin-bottom: 1.2rem; }
.partner__interest { font-size: .88rem; padding: .65rem 1.3rem; }

.partner__cta {
  margin-top: 2.5rem; padding: 2.2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(247,148,29,.18), rgba(224,82,28,.14));
  border: 1.5px solid var(--honey);
  box-shadow: 0 18px 50px rgba(224, 82, 28, .18);
}
.partner__cta h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--honey-soft); margin-bottom: .4rem; }
.partner__cta p { color: var(--cream-dim); max-width: 520px; }
.btn--lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* ---------- Contact ---------- */
.contact { padding: 5.5rem 0; background: var(--ink-2); }
.contact .section-head--left p:not(.section-head__kicker) { color: var(--cream-dim); margin-top: 1rem; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: start; margin-top: 2.4rem; }
.contact__actions { display: flex; gap: .9rem; flex-wrap: wrap; margin: 1.6rem 0 .4rem; }
.contact__list { list-style: none; margin: 0 0 1.6rem; }

/* Collapsible panels (native <details>) */
.collapse {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--ink); overflow: hidden;
}
.collapse > summary {
  cursor: pointer; list-style: none; user-select: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--honey-soft);
  transition: background .2s ease;
}
.collapse > summary::-webkit-details-marker { display: none; }
.collapse > summary::after {
  content: "▾"; color: var(--honey); font-size: 1rem; flex: none;
  transition: transform .25s ease;
}
.collapse:not([open]) > summary::after { transform: rotate(-90deg); }
.collapse > summary:hover { background: rgba(247, 148, 29, .07); }
.collapse[open] > summary { border-bottom: 1px solid var(--line); }
.collapse__body { padding: 1.5rem; }
.contact__list li { padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.contact__list strong { display: inline-block; width: 8.5rem; color: var(--honey); font-weight: 600; }
.contact__list a { color: var(--cream); }
.contact__social { display: flex; gap: 1.2rem; margin-top: 1.4rem; }
.contact__social a {
  font-size: .88rem; font-weight: 600; color: var(--honey); text-decoration: none;
  border: 1px solid var(--line); padding: .5rem 1.1rem; border-radius: 999px; transition: .2s;
}
.contact__social a:hover { background: var(--honey); color: var(--ink); }
.contact__form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact__form label { font-size: .85rem; font-weight: 600; color: var(--honey-soft); display: flex; flex-direction: column; gap: .45rem; }
.contact__form input, .contact__form select, .contact__form textarea {
  background: var(--ink); border: 1px solid var(--line); border-radius: 10px;
  color: var(--cream); padding: .8rem 1rem; font-family: inherit; font-size: .95rem;
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus {
  outline: none; border-color: var(--honey);
}
.contact__form-note { font-size: .85rem; color: var(--honey-soft); min-height: 1.2rem; }

/* ---------- Footer ---------- */
.footer { padding: 3.5rem 0 2.5rem; border-top: 1px solid var(--line); }
.footer__inner { text-align: center; }
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.footer__logo { width: 64px; height: 64px; border-radius: 50%; background: #fff; object-fit: contain; }
.footer__brand p { font-family: var(--font-display); color: var(--honey-soft); font-size: 1.05rem; }
.footer__copy { font-size: .82rem; color: var(--cream-dim); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(10, 8, 5, .96);
  display: none; align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 30px 90px rgba(0,0,0,.7); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.08); color: var(--cream);
  border: 1px solid var(--line); border-radius: 50%; width: 48px; height: 48px;
  font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--honey); color: var(--ink); }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__nav--prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: var(--cream-dim); font-size: .85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__photo--small { left: auto; right: -.5rem; bottom: -1.5rem; }
  .culture__grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .contact__grid { grid-template-columns: 1fr; }
  .nav__links {
    position: fixed; inset: 0 0 auto 0; top: 62px; flex-direction: column; align-items: center;
    background: rgba(20,16,11,.98); padding: 1.6rem 0 2rem; gap: 1.2rem;
    transform: translateY(-130%); transition: transform .35s ease; box-shadow: 0 20px 40px rgba(0,0,0,.4);
  }
  .nav__links.is-open { transform: none; }
  .nav__burger { display: block; }
  .nav__wordmark { font-size: .95rem; }
  .culture__grid, .partner__grid { grid-template-columns: 1fr; }
  .event__details { flex-direction: column; gap: 1.2rem; }
  .countdown__unit { min-width: 72px; }
}
