/* ==========================================================================
   BCMCC — production stylesheet
   Ported from design-system/ (tokens + core components + website ui kit).
   Do not invent values: every color/size/space traces to the design system.
   ========================================================================== */

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  /* Canvas */
  --ink:         #0A0A0A;
  --ink-soft:    #1B1B1B;
  --paper:       #FBFAF7;
  --paper-warm:  #F4F1EA;

  /* Maple Red — primary */
  --maple:       #C8483C;
  --maple-deep:  #A03930;
  --maple-dark:  #782B24;
  --maple-tint:  #F6E3E1;
  --maple-mid:   #D87E76;

  /* Dogwood Gold — secondary */
  --gold:        #CBC484;
  --gold-deep:   #8E895C;
  --gold-tint:   #EAE7CD;
  --gold-mid:    #DAD5A8;

  /* Neutrals */
  --petal:       #DBD9CB;
  --stone:       #9A9595;
  --line:        #E4E0D6;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Archivo', sans-serif;
  --font-cond:    'Archivo Narrow', sans-serif;
  --font-mono:    'Spline Sans Mono', monospace;

  /* Layout */
  --maxw:        1180px;
  --radius-sm:   4px;
  --radius:      6px;
  --radius-lg:   8px;
  --radius-xl:  10px;
  --radius-full: 30px;
  --card-pad:      34px;
  --card-pad-sm:   24px;

  /* Effects */
  --shadow-card:   0 30px 60px -40px rgba(0, 0, 0, 0.35);
  --ease-spring:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:      cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--maple); color: #fff; }

a { color: var(--maple-deep); }
a:hover { color: var(--maple-dark); }

img, svg { display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

/* Anchor targets clear the sticky nav */
section[id], footer[id] { scroll-margin-top: 72px; }

/* ── Buttons (components/core/Button.jsx) ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 120ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }

.btn--sm { padding: 8px 16px;  font-size: 12px; }
.btn--md { padding: 11px 22px; font-size: 13px; }
.btn--lg { padding: 15px 30px; font-size: 14px; }

.btn--primary { background: var(--maple); color: #fff; border-color: var(--maple); }
.btn--primary:hover { background: var(--maple-deep); border-color: var(--maple-deep); color: #fff; }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Outline button on dark surfaces */
.btn--outline-light { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn--outline-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ── Badges (components/core/Badge.jsx) ─────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  line-height: 1;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  white-space: nowrap;
}
.badge--red     { background: var(--maple); color: #fff; }
.badge--gold    { background: var(--gold); color: var(--ink); }
.badge--ghost   { background: var(--maple-tint); color: var(--maple-dark); }
.badge--neutral { background: var(--paper-warm); color: var(--ink-soft); border-color: var(--line); }

/* ── Cards (components/core/Card.jsx) ───────────────────────────────────── */
.card {
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  transition: background 350ms ease;
}
.card--hover:hover { background: var(--paper-warm); }
.card--dark  { background: rgba(255,255,255,0.03); color: var(--paper); border-color: rgba(255,255,255,0.12); }
.card--maple { background: var(--maple); color: #fff; border-color: transparent; }
.card--pad-sm { padding: var(--card-pad-sm); }
.card--pad-lg { padding: 40px; }

/* ── Inputs (components/core/Input.jsx) ─────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 7px; width: 100%; }
.field__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.field__input {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  outline: none;
  width: 100%;
  transition: border-color 200ms ease;
}
.field__input:focus { border-color: var(--maple-deep); }

/* ── Section scaffold (kicker + title) ──────────────────────────────────── */
.kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--maple);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 34px; height: 1.5px; background: var(--maple); flex-shrink: 0; }
.kicker--gold { color: var(--gold); }
.kicker--gold::before { background: var(--gold); }

/* ── Announcement bar ───────────────────────────────────────────────────── */
.announce {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.announce .wrap {
  padding: 9px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.announce__new { color: var(--gold); }
.announce__text { color: #D9D6CE; }
.announce a {
  color: var(--gold-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(218, 213, 168, 0.4);
}
.announce a:hover { color: var(--gold); }

/* ── Nav (ui_kits/website/Nav.jsx) ──────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.86);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink);
  transition: color 150ms ease;
}
.nav__links a:hover { color: var(--maple-deep); }

.nav__actions { display: flex; align-items: center; gap: 22px; }
.nav__signin {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 150ms ease;
}
.nav__signin:hover { color: var(--maple-deep); }

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav__burger span { width: 22px; height: 2px; background: var(--ink); transition: transform 200ms ease, opacity 200ms ease; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 10px 24px 20px;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.nav__mobile a:last-child { border-bottom: none; }

/* ── Logo lockup (components/core/LogoLockup.jsx) ───────────────────────── */
.lockup { display: inline-flex; align-items: center; text-decoration: none; }
.lockup__dogwood, .lockup__leaf { flex-shrink: 0; }
.lockup__words { display: flex; flex-direction: column; line-height: 1; }
.lockup__acr {
  font-family: var(--font-body);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 0.9;
}
.lockup__desc {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}
.lockup--nav { gap: 10px; }
.lockup--nav .lockup__acr { font-size: 24px; }
.lockup--footer { gap: 13px; }
.lockup--footer .lockup__acr { font-size: 30px; color: #fff; }
.lockup--footer .lockup__desc { font-size: 9px; color: rgba(255,255,255,0.75); }

/* ── Hero (ui_kits/website/HeroSection.jsx) ─────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 40px 64px;
  background:
    radial-gradient(120% 80% at 85% 8%, rgba(200, 72, 60, 0.07) 0%, transparent 55%),
    radial-gradient(90% 70% at 4% 96%, rgba(203, 196, 132, 0.16) 0%, transparent 60%),
    var(--paper);
}
.hero::before {
  /* faint grain, per brand guidelines (~4%) */
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; }

.hero__dogwood {
  position: absolute;
  right: -8vw;
  top: 48%;
  transform: translateY(-50%);
  width: min(58vw, 720px);
  opacity: 0.06;
  pointer-events: none;
  animation: bcmccSpin 90s linear infinite;
}
@keyframes bcmccSpin { to { transform: translateY(-50%) rotate(360deg); } }

.hero__eyebrow {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 118px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero h1 .accent { font-style: italic; font-weight: 400; color: var(--maple); }
.hero__sub {
  margin-top: 34px;
  max-width: 560px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero__ctas { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 72px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero__stat-k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.hero__stat-v {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-top: 6px;
}

/* Hero entrance (rise + fade, staggered) */
.rise { opacity: 0; transform: translateY(28px); animation: rise 1s var(--ease-spring) forwards; }
.rise-1 { animation-delay: 0.10s; }
.rise-2 { animation-delay: 0.22s; }
.rise-3 { animation-delay: 0.34s; }
.rise-4 { animation-delay: 0.46s; }
.rise-5 { animation-delay: 0.58s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* Scroll reveal for sections — hidden state only applies when JS is running
   (html.js set inline in <head>), so content can never be stuck invisible. */
.reveal { transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring); }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.in { opacity: 1; transform: translateY(0); }

/* ── Story (ui_kits/website/StorySection.jsx) ───────────────────────────── */
.story { background: var(--ink); color: var(--paper); padding: 120px 40px; }
.story__inner { max-width: var(--maxw); margin: 0 auto; }
.story h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.story h2 em { font-style: italic; color: var(--maple-mid); }
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px;
}
.story__lead {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.45;
  color: var(--paper);
  margin-bottom: 22px;
}
.story__copy p { color: #D9D6CE; font-size: 17px; line-height: 1.65; }
.story__copy p + p { margin-top: 20px; }
.story__copy strong { color: var(--gold); font-weight: 600; }
.story__cards { display: flex; flex-direction: column; gap: 16px; }
.symbol-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.symbol-card__mark { width: 30px; display: grid; place-items: center; flex-shrink: 0; }
.symbol-card__head h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.symbol-card__mark--glyph { color: var(--gold); font-size: 18px; line-height: 1; }
.symbol-card__specimen {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 26px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.symbol-card p { color: #C7C4BC; font-size: 15px; line-height: 1.55; }

/* ── Pillars (ui_kits/website/PillarsSection.jsx) ───────────────────────── */
.pillars { background: var(--paper); padding: 120px 40px; }
.pillars__inner { max-width: var(--maxw); margin: 0 auto; }
.pillars h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin-bottom: 20px;
}
.pillars h2 em { font-style: italic; color: var(--maple); }
.pillars__intro { font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 58ch; }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pillar {
  background: var(--paper);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 350ms ease;
}
.pillar:hover { background: var(--paper-warm); }
.pillar__n { font-family: var(--font-mono); font-size: 12px; color: var(--maple); letter-spacing: 0.15em; }
.pillar h3 { font-family: var(--font-display); font-weight: 600; font-size: 24px; line-height: 1.15; }
.pillar p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; }

/* ── Membership (ui_kits/website/MembershipSection.jsx) ─────────────────── */
.membership { background: var(--paper-warm); padding: 120px 40px; }
.membership__inner { max-width: var(--maxw); margin: 0 auto; }
.membership h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 56px;
}
.membership h2 em { font-style: italic; color: var(--maple); }
.membership__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.aud { position: relative; overflow: hidden; }
.aud__circle {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.aud__body { position: relative; }
.aud h3 { font-family: var(--font-display); font-size: 27px; font-weight: 600; margin: 16px 0 10px; }
.aud p { font-size: 16px; line-height: 1.6; }
.aud--primary p { color: rgba(255, 255, 255, 0.92); }
.aud--secondary p { color: var(--ink-soft); }

/* ── Join band ──────────────────────────────────────────────────────────── */
.join { background: var(--ink); color: var(--paper); padding: 96px 40px; }
.join__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.join__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.join h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.join h2 em { font-style: italic; font-weight: 400; color: var(--maple-mid); }
.join__sub { color: #B8B5AD; font-size: 17px; max-width: 46ch; margin: 0 auto 32px; }
.join__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  align-items: flex-end;
}
.join__form .field { text-align: left; flex: 1; }
.join__form .field__input { background: var(--paper); }
.join__success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(203, 196, 132, 0.14);
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  padding: 16px 24px;
  flex-wrap: wrap;
}
.join__success .big { font-family: var(--font-display); font-size: 18px; color: var(--gold); }
.join__success .small { color: #B8B5AD; font-size: 15px; }
.join__error {
  display: none;
  color: var(--maple-mid);
  font-size: 14px;
  margin-top: 14px;
}
.join.is-joined .join__form { display: none; }
.join.is-joined .join__success { display: inline-flex; }
.join.is-error .join__error { display: block; }

/* ── Events strip (ui_kits/website/FooterSection.jsx → EventsStrip) ─────── */
.events { background: var(--paper); padding: 110px 40px; }
.events__inner { max-width: var(--maxw); margin: 0 auto; }
.events__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 20px;
  flex-wrap: wrap;
}
.events h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.events h2 em { font-style: italic; color: var(--maple); }
.events__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.event-card { display: flex; flex-direction: column; gap: 14px; }
.event-card__meta { display: flex; align-items: center; gap: 10px; }
.event-card__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--stone);
}
.event-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; line-height: 1.2; }
.event-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }

/* ── Contact ────────────────────────────────────────────────────────────── */
.contact { background: var(--paper-warm); padding: 110px 40px; }
.contact__inner { max-width: 820px; margin: 0 auto; }
.contact h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.contact h2 em { font-style: italic; color: var(--maple); }
.contact__intro { font-size: 17px; color: var(--ink-soft); max-width: 52ch; margin-bottom: 40px; }
.contact__form { display: flex; flex-direction: column; gap: 18px; }
.contact__form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.contact__ok { display: none; font-family: var(--font-display); font-size: 16px; color: var(--gold-deep); }
.contact__err { display: none; font-size: 14px; color: var(--maple-deep); }
.contact.is-sent .contact__ok { display: inline; }
.contact.is-sent #ctBtn { display: none; }
.contact.is-error .contact__err { display: inline; }

/* ── Footer (ui_kits/website/FooterSection.jsx) ─────────────────────────── */
.footer { background: var(--ink); color: var(--paper); padding: 80px 40px 40px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__about p {
  color: #B8B5AD;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 30ch;
}
.footer__col-h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { color: #D9D6CE; font-size: 14.5px; text-decoration: none; }
.footer__col a:hover { color: var(--gold-mid); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.footer__tagline { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--paper); }
.footer__tagline span { color: var(--gold); }
.footer__copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__dogwood { animation: none; }
  .rise { animation: none; opacity: 1; transform: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .wrap { padding: 0 24px; }
  .announce .wrap { padding: 9px 24px; }
  .nav__inner { padding: 14px 24px; }
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 64px 24px 48px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }

  .story, .pillars, .membership, .events { padding: 80px 24px; }
  .contact { padding: 72px 24px; }
  .contact__form-grid { grid-template-columns: 1fr; }
  .join { padding: 72px 24px; }
  .footer { padding: 64px 24px 32px; }

  .story__grid, .membership__grid { grid-template-columns: 1fr; gap: 36px; }
  .pillars__grid, .events__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .join__form { flex-direction: column; align-items: stretch; }
}
