/* =========================================================
   Geek Community Hub (GCHUBCIC) — Design System
   Palette derived from the logo: charcoal circle + golden bridge
   ========================================================= */

:root {
  /* Brand */
  --ink:        #16150f;   /* deepest charcoal (logo circle) */
  --charcoal:   #211f1b;
  --charcoal-2: #2b2823;
  --gold:       #ffc400;   /* primary accent (golden bridge) */
  --gold-soft:  #ffd24a;
  --gold-deep:  #e0a500;
  --azure:      #2f6df0;   /* cool secondary, complements gold */
  --azure-deep: #1f4fc4;
  --plum:       #4a1069;   /* Giving Lottery brand purple */
  --plum-deep:  #2a0640;
  --plum-soft:  #7c3aa8;

  /* Neutrals / surfaces */
  --cream:   #fbf8f1;
  --paper:   #ffffff;
  --sand:    #f3eee2;
  --line:    #e7e0d1;
  --ink-70:  #4a463d;
  --ink-50:  #6f6a5e;

  /* Effects */
  --radius:   18px;
  --radius-sm:12px;
  --radius-lg:28px;
  --shadow:   0 18px 40px -18px rgba(20, 18, 10, .35);
  --shadow-lg:0 40px 80px -30px rgba(20, 18, 10, .45);
  --ring:     0 0 0 4px rgba(255, 196, 0, .28);

  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);

  /* Fonts */
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }
::selection { background: var(--gold); color: var(--ink); }

/* ----------------------------- Type ----------------------------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: 1.3rem; letter-spacing: -.01em; }
p  { color: var(--ink-70); }
.lead { font-size: clamp(1.1rem, 1.7vw, 1.32rem); color: var(--ink-70); }

/* --------------------------- Layout ----------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
/* One consistent vertical rhythm for every section, so gaps read evenly
   whether two light sections meet or a light section meets a dark block. */
.section { padding: clamp(44px, 5vw, 70px) 0; }
.section--tight { padding: clamp(44px, 5vw, 70px) 0; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.max-680 { max-width: 680px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.center .eyebrow::before { display: none; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.center.section-head { margin-inline: auto; }
.section-head p { margin-top: 1rem; }

/* --------------------------- Buttons ---------------------------- */
.btn {
  --bg: var(--gold); --fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; letter-spacing: -.01em;
  background: var(--bg); color: var(--fg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  box-shadow: 0 10px 24px -12px rgba(224,165,0,.7);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(224,165,0,.8); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; }

.btn--ghost { --bg: transparent; --fg: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(251,248,241,.4); }
.btn--ghost:hover { --bg: rgba(251,248,241,.08); box-shadow: inset 0 0 0 1.5px rgba(251,248,241,.7); }
.btn--dark { --bg: var(--ink); --fg: var(--cream); box-shadow: 0 14px 30px -16px rgba(20,18,10,.8); }
.btn--dark:hover { --bg: #000; }
.btn--outline { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--outline:hover { --bg: var(--sand); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--wa { --bg: #25d366; --fg: #06351a; box-shadow: 0 12px 26px -14px rgba(37,211,102,.9); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.08rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.center .btn-row { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-head); font-weight: 600; color: var(--ink);
}
.link-arrow svg { transition: transform .25s var(--ease); width: 1.05em; }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow.is-azure { color: var(--azure-deep); }

/* ---------------------------- Header ---------------------------- */
.header {
  position: sticky; top: 0; z-index: 60;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 76px;
}
.header.is-scrolled {
  background: rgba(251,248,241,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -22px rgba(20,18,10,.5);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand img { width: 44px; height: 44px; border-radius: 50%; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; letter-spacing: -.02em; color: var(--ink); line-height: 1; }
.brand__name small { display: block; font-size: .62rem; font-weight: 500; letter-spacing: .22em; color: var(--gold-deep); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.nav__links { display: flex; gap: 1.7rem; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: .98rem; color: var(--charcoal);
  position: relative; padding: .3rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold); border-radius: 2px; transition: width .25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: .7rem; }

.nav-toggle { display: none; position: relative; z-index: 60; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; margin-left: auto; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top:  7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------- Hero ----------------------------- */
.hero { position: relative; background: var(--ink); color: var(--cream); overflow: hidden; isolation: isolate; padding-bottom: 84px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 70% at 78% 18%, rgba(255,196,0,.20), transparent 60%),
    radial-gradient(50% 60% at 12% 92%, rgba(47,109,240,.16), transparent 60%),
    linear-gradient(180deg, #1b1912, #16150f 70%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, #000 30%, transparent);
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch;
  padding-top: clamp(56px, 8vw, 104px); padding-bottom: clamp(64px, 9vw, 110px);
}
.hero h1 { color: var(--cream); }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { color: rgba(251,248,241,.78); margin-top: 1.4rem; max-width: 38ch; }
.hero .btn-row { margin-top: 2.2rem; }
.hero__pill {
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.6rem;
  padding: .45rem .9rem .45rem .55rem; border-radius: 999px;
  background: rgba(251,248,241,.07); border: 1px solid rgba(251,248,241,.14);
  font-size: .85rem; color: rgba(251,248,241,.85);
}
.hero__pill b { color: var(--gold); font-weight: 600; }
.hero__pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(255,196,0,.2); }

/* Media fills the height of the text column and spreads wide (landscape frame). */
.hero__media { position: relative; align-self: stretch; min-height: 340px; }
.hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  object-fit: cover; object-position: center 32%;
}
.hero__media::before {
  content: ""; position: absolute; inset: -14px; z-index: -1; border-radius: calc(var(--radius-lg) + 10px);
  background: linear-gradient(140deg, rgba(255,196,0,.35), transparent 55%);
  filter: blur(8px);
}
.hero__badge {
  position: absolute; left: -22px; bottom: 26px;
  background: var(--cream); color: var(--ink); border-radius: var(--radius);
  padding: .9rem 1.1rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .75rem; max-width: 240px;
}
.hero__badge .ic { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; background: var(--gold); display: grid; place-items: center; }
.hero__badge .ic svg { width: 22px; height: 22px; color: var(--ink); }
.hero__badge b { font-family: var(--font-head); font-size: 1.05rem; display: block; }
.hero__badge span { font-size: .82rem; color: var(--ink-50); }

/* Hero stat strip */
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(251,248,241,.12); border: 1px solid rgba(251,248,241,.15);
  border-radius: var(--radius); overflow: hidden;
}
.hero__stats .stat { background: var(--ink); padding: 1.6rem 1rem; text-align: center; }
.hero__stats .stat b { font-family: var(--font-head); font-size: clamp(1.6rem,3vw,2.2rem); color: var(--gold); display: block; }
.hero__stats .stat span { font-size: .85rem; color: rgba(251,248,241,.7); }

/* ------------------------ Pathways (3 goals) -------------------- */
.paths { margin-top: -54px; position: relative; z-index: 5; }
.paths__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.path-card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.7rem 1.7rem; box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.path-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: var(--accent, var(--gold));
}
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.path-card .pc-ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent, var(--gold)) 16%, white);
  color: var(--accent-fg, var(--gold-deep)); margin-bottom: 1.2rem;
}
.path-card .pc-ic svg { width: 28px; height: 28px; }
.path-card h3 { margin-bottom: .5rem; }
.path-card p { font-size: .98rem; margin-bottom: 1.3rem; }
.path-card.is-gold  { --accent: var(--gold);  --accent-fg: var(--gold-deep); }
.path-card.is-azure { --accent: var(--azure); --accent-fg: var(--azure-deep); }
.path-card.is-ink   { --accent: var(--ink);   --accent-fg: var(--ink); }

/* ----------------------------- Cards / grids -------------------- */
.grid { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.card .svc-ic {
  width: 50px; height: 50px; border-radius: 14px; background: var(--sand); color: var(--gold-deep);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.card .svc-ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; font-size: 1.18rem; }
.card p { font-size: .96rem; }

/* --------------------------- Split feature ---------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 5/4; object-fit: cover; }
.split__media .tag {
  position: absolute; bottom: 18px; left: 18px; background: var(--ink); color: var(--cream);
  padding: .55rem 1rem; border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  display: inline-flex; align-items: center; gap: .5rem;
}
.split__media .tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.feature-list { display: grid; gap: 1rem; margin: 1.6rem 0; }
.feature-list li { display: flex; gap: .85rem; align-items: flex-start; }
.feature-list .chk {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; background: var(--gold);
  display: grid; place-items: center; color: var(--ink); margin-top: 2px;
}
.feature-list .chk svg { width: 15px; height: 15px; }
.feature-list b { font-family: var(--font-head); color: var(--ink); }
.feature-list span { display: block; font-size: .95rem; color: var(--ink-70); }

/* ------------------------------ Shop ---------------------------- */
.shop { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.shop::before {
  content:""; position:absolute; inset:0; z-index:0; opacity:.6;
  background: radial-gradient(50% 60% at 85% 10%, rgba(255,196,0,.16), transparent 60%);
}
.shop > .container { position: relative; z-index: 1; }
.shop h2, .shop h3 { color: var(--cream); }
.shop .lead { color: rgba(251,248,241,.78); }
.shop__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; margin-top: 2.5rem; }
.prod {
  background: rgba(251,248,241,.05); border: 1px solid rgba(251,248,241,.12);
  border-radius: var(--radius); padding: 1.5rem; transition: transform .3s var(--ease), background .3s;
}
.prod:hover { transform: translateY(-4px); background: rgba(251,248,241,.08); }
.prod .pic { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,196,0,.16); color: var(--gold); display: grid; place-items: center; margin-bottom: 1rem; }
.prod .pic svg { width: 24px; height: 24px; }
.prod h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.prod p { color: rgba(251,248,241,.66); font-size: .92rem; }
.shop__note {
  margin-top: 2.4rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.2rem; padding: 1.5rem 1.7rem; border-radius: var(--radius);
  background: rgba(251,248,241,.05); border: 1px solid rgba(251,248,241,.12);
}
.shop__note p { color: rgba(251,248,241,.82); margin: 0; }
.shop__note b { color: var(--gold); }

/* ----------------------------- Impact --------------------------- */
.impact__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 1rem; }
.impact .stat-card {
  text-align: center; padding: 2rem 1.2rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.impact .stat-card b { font-family: var(--font-head); font-size: clamp(2rem,4vw,2.8rem); color: var(--ink); display: block; line-height: 1; }
.impact .stat-card b .unit { color: var(--gold-deep); }
.impact .stat-card span { font-size: .92rem; color: var(--ink-70); margin-top: .5rem; display: block; }

/* ---------------------------- Donate CTA ------------------------ */
.donate {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(135deg, #1d1b13, #16150f);
  color: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 4rem); box-shadow: var(--shadow-lg);
}
.donate::before {
  content:""; position:absolute; right:-80px; top:-80px; width:340px; height:340px; z-index:-1;
  background: radial-gradient(circle, rgba(255,196,0,.32), transparent 65%);
}
.donate__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.donate h2 { color: var(--cream); }

/* Embedded Zeffy donation form */
.donate__form { align-self: stretch; }
.zeffy-embed {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); height: 700px;
}
.zeffy-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.zeffy-fallback { margin: .9rem 0 0; text-align: center; font-size: .85rem; color: rgba(251,248,241,.65); }
.zeffy-fallback a { color: var(--gold); font-weight: 600; }
.zeffy-fallback a:hover { text-decoration: underline; }
.donate .lead { color: rgba(251,248,241,.8); margin-top: 1rem; }
.donate__amounts { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.6rem 0; }
.amount {
  padding: .7rem 1.15rem; border-radius: 12px; font-family: var(--font-head); font-weight: 600;
  background: rgba(251,248,241,.07); border: 1.5px solid rgba(251,248,241,.18); color: var(--cream);
  transition: background .2s, border-color .2s, transform .2s;
}
.amount:hover, .amount.is-active { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-2px); }
.amount small { display: block; font-weight: 500; font-size: .72rem; opacity: .7; }
.amount:hover small, .amount.is-active small { opacity: .85; color: var(--ink); }
.donate__card {
  background: rgba(251,248,241,.06); border: 1px solid rgba(251,248,241,.14);
  border-radius: var(--radius); padding: 1.8rem;
}
.donate__card h3 { color: var(--cream); font-size: 1.15rem; margin-bottom: 1rem; }
.donate__card .row { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; }
.donate__card .row svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--gold); margin-top: 2px; }
.donate__card .row span { font-size: .94rem; color: rgba(251,248,241,.82); }
.donate__secure { font-size: .82rem; color: rgba(251,248,241,.6); margin-top: 1rem; display: flex; align-items: center; gap: .5rem; }
.donate__secure svg { width: 16px; height: 16px; }

/* -------------------------- Giving Lottery ---------------------- */
.lottery {
  position: relative; overflow: hidden; isolation: isolate; color: var(--cream);
  background: linear-gradient(150deg, var(--plum) 0%, var(--plum-deep) 65%);
}
.lottery::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(45% 55% at 88% 8%, rgba(255,196,0,.20), transparent 62%),
    radial-gradient(40% 50% at 6% 96%, rgba(124,58,168,.45), transparent 65%);
}
.lottery h2, .lottery h3 { color: var(--cream); }
.lottery h2 .accent {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lottery .eyebrow { color: var(--gold-soft); }
.lottery .eyebrow::before { background: var(--gold-soft); }
.lottery .lead { color: rgba(251,248,241,.8); }
.lottery .lead b { color: var(--gold); font-weight: 600; }
.lottery__tagline {
  font-family: var(--font-head); font-weight: 600; font-size: clamp(1.15rem,2vw,1.45rem);
  color: var(--cream); margin: .7rem 0 1rem; letter-spacing: -.01em;
}
.lottery__grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem,4.5vw,3.8rem); align-items: center;
}

/* stat pills */
.lottery__stats { display: grid; gap: .9rem; margin: 1.8rem 0 2rem; }
.lottery__stats li { display: flex; align-items: center; gap: .95rem; }
.lottery__stats .ls-ic {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  background: rgba(251,248,241,.08); border: 1px solid rgba(251,248,241,.16);
}
.lottery__stats .ls-ic svg { width: 24px; height: 24px; }
.lottery__stats b { font-family: var(--font-head); font-size: 1.22rem; color: var(--gold); display: block; line-height: 1.15; }
.lottery__stats span { font-size: .92rem; color: rgba(251,248,241,.72); }

/* QR card */
.lottery__qr {
  background: var(--paper); color: var(--ink); border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 2rem; text-align: center; box-shadow: var(--shadow-lg);
}
.qr__badge {
  display: inline-block; background: var(--plum); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .55rem 1.2rem; border-radius: 999px; margin-bottom: 1.3rem;
}
.lottery__qr img {
  width: 100%; max-width: 240px; height: auto; margin: 0 auto;
  border: 2px dashed var(--line); border-radius: 14px; padding: 10px; background: #fff;
}
.qr__or { position: relative; margin: 1.4rem 0 1rem; }
.qr__or::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--line); }
.qr__or span {
  position: relative; background: var(--paper); padding: 0 .9rem;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-50);
}
.qr__line { font-size: .98rem; color: var(--ink-70); margin: .25rem 0; }
.qr__line a { color: var(--plum); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.qr__line a:hover { color: var(--plum-soft); }
.qr__line b { color: var(--ink); font-family: var(--font-head); }

/* How it works */
.lottery__how { margin-top: clamp(3rem,6vw,4.5rem); }
.lottery__how h3 { text-align: center; font-size: clamp(1.4rem,2.6vw,1.9rem); margin-bottom: 2rem; }
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.1rem; counter-reset: s; }
.steps li {
  position: relative; text-align: center; padding: 1.9rem 1.1rem 1.5rem;
  background: rgba(251,248,241,.06); border: 1px solid rgba(251,248,241,.14);
  border-radius: var(--radius); transition: background .3s var(--ease), transform .3s var(--ease);
}
.steps li:hover { background: rgba(251,248,241,.1); transform: translateY(-4px); }
.step__no {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 8px 18px -8px rgba(224,165,0,.9);
}
.steps b { display: block; font-family: var(--font-head); font-size: 1.05rem; color: var(--cream); margin-bottom: .4rem; }
.steps span { font-size: .92rem; color: rgba(251,248,241,.72); }
.steps em { font-style: normal; color: var(--gold-soft); font-weight: 600; }

/* Closing CTA band */
.lottery__cta {
  margin-top: clamp(2.4rem,4vw,3.2rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem;
  padding: 1.7rem 1.9rem; border-radius: var(--radius);
  background: rgba(251,248,241,.07); border: 1px solid rgba(251,248,241,.16);
}
.lottery__cta b { font-family: var(--font-head); font-size: 1.25rem; color: var(--gold); display: block; }
.lottery__cta p { color: rgba(251,248,241,.76); margin-top: .35rem; max-width: 60ch; font-size: .96rem; }

/* -------------------------- Workshops band ---------------------- */
.billboard {
  border-radius: var(--radius-lg); overflow: hidden; position: relative; color: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; box-shadow: var(--shadow);
}
.billboard__media { position: relative; min-height: 340px; }
.billboard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.billboard__body { background: var(--charcoal); padding: clamp(2rem,4vw,3.2rem); display: flex; flex-direction: column; justify-content: center; }
.billboard__body h2 { color: var(--cream); }
.billboard__body p { color: rgba(251,248,241,.78); margin-top: .9rem; }
.billboard__list { display: grid; gap: .7rem; margin: 1.4rem 0 1.8rem; }
.billboard__list li { display: flex; gap: .65rem; align-items: center; font-size: .98rem; }
.billboard__list .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }

/* --------------------------- Testimonial ------------------------ */
.quote { max-width: 820px; margin-inline: auto; text-align: center; }
.quote blockquote {
  font-family: var(--font-head); font-weight: 500; font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.3; letter-spacing: -.02em; color: var(--ink);
}
.quote .mark { font-size: 4rem; line-height: .4; color: var(--gold); font-family: var(--font-head); }
.quote .who { margin-top: 1.5rem; font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.quote .who span { display: block; font-weight: 400; color: var(--ink-50); font-size: .92rem; }

/* ------------------------------ Team ---------------------------- */
/* Flex + centring so the row stays balanced for any number of members. */
.team__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.1rem; }
.team__grid .member { flex: 1 1 240px; max-width: 300px; }
.member {
  text-align: center; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.2rem 1.4rem 1.8rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.member:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold); }
.member__avatar {
  width: 148px; height: 148px; border-radius: 50%; margin: 0 auto 1.2rem;
  display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(150deg, var(--gold-soft), var(--gold-deep));
  color: var(--ink); font-family: var(--font-head); font-weight: 700; font-size: 3.1rem;
  box-shadow: 0 14px 30px -12px rgba(224,165,0,.6), 0 0 0 4px var(--paper), 0 0 0 6px var(--gold-soft);
}
/* Portrait photos: bias the square crop upward so faces stay centred, not chests. */
.member__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.member h3 { font-size: 1.22rem; margin-bottom: .3rem; }
.member .role { font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); margin: 0; }

.advisory { margin-top: clamp(2.4rem, 5vw, 3.4rem); }
.advisory__title {
  text-align: center; font-size: .9rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-50); margin-bottom: 1.6rem; position: relative;
}
.advisory__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem 1rem; }
.advisor { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .8rem; }
.advisor__avatar {
  width: 108px; height: 108px; border-radius: 50%; display: grid; place-items: center; overflow: hidden;
  background: var(--sand); color: var(--gold-deep);
  box-shadow: 0 12px 26px -14px rgba(20,18,10,.5), 0 0 0 3px var(--paper), 0 0 0 5px var(--gold-soft);
}
.advisor__avatar svg { width: 48px; height: 48px; }
.advisor__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.advisor b { font-family: var(--font-head); font-size: 1.02rem; color: var(--ink); }
.advisor span { font-size: .78rem; color: var(--ink-50); }

/* ============================ Gallery page ====================== */
.page-hero {
  position: relative; background: var(--ink); color: var(--cream); overflow: hidden; isolation: isolate;
  padding: clamp(56px, 9vw, 96px) 0 clamp(48px, 7vw, 76px);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(55% 65% at 82% 12%, rgba(255,196,0,.20), transparent 60%),
    radial-gradient(45% 55% at 8% 95%, rgba(47,109,240,.14), transparent 62%),
    linear-gradient(180deg, #1b1912, #16150f 75%);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 26px 26px; mask-image: linear-gradient(180deg, #000 40%, transparent);
}
.page-hero h1 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 3.6rem); }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero .eyebrow::before { background: var(--gold-soft); }
.page-hero .lead { color: rgba(251,248,241,.78); margin-top: 1rem; max-width: 60ch; }
.page-hero__back {
  display: inline-flex; align-items: center; gap: .45rem; margin-bottom: 1.4rem;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: rgba(251,248,241,.75);
  transition: color .2s, transform .2s;
}
.page-hero__back svg { width: 1.05em; height: 1.05em; }
.page-hero__back:hover { color: var(--gold); transform: translateX(-3px); }

.art-trail__dates {
  display: inline-flex; align-items: center; gap: .5rem; margin-right: .6rem;
  padding: .3rem .8rem; border-radius: 999px; background: var(--sand);
  color: var(--gold-deep); font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  vertical-align: middle; white-space: nowrap;
}
.art-trail__dates svg { width: 1.05em; height: 1.05em; }

/* Masonry (CSS columns) */
.masonry { column-count: 3; column-gap: 1.1rem; }
.masonry__empty {
  column-span: all; text-align: center; color: var(--ink-50);
  padding: 3rem 1rem; border: 1.5px dashed var(--line); border-radius: var(--radius);
}
.tile {
  display: block; width: 100%; padding: 0; border: none; background: none; cursor: pointer;
  position: relative; margin: 0 0 1.1rem; border-radius: var(--radius); overflow: hidden;
  break-inside: avoid; box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tile img { width: 100%; height: auto; display: block; transition: transform .5s var(--ease); }
.tile:hover { box-shadow: var(--shadow-lg); }
.tile:hover img { transform: scale(1.05); }
.tile__caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1rem .9rem;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: #fff; text-align: left;
  background: linear-gradient(transparent, rgba(20,18,10,.82));
  opacity: 0; transform: translateY(8px); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.tile:hover .tile__caption, .tile:focus-visible .tile__caption { opacity: 1; transform: none; }
.tile::after {
  content: ""; position: absolute; top: .8rem; right: .8rem; width: 34px; height: 34px;
  border-radius: 50%; background: rgba(20,18,10,.5); opacity: 0; transition: opacity .3s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 17px;
}
.tile:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem);
  background: rgba(12,11,7,.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; animation: lbFade .25s var(--ease); }
@keyframes lbFade { from { opacity: 0; } }
.lightbox__stage { margin: 0; max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: .9rem; }
.lightbox__stage img {
  max-width: 92vw; max-height: 80vh; width: auto; height: auto;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); object-fit: contain;
}
.lightbox__stage figcaption { color: rgba(251,248,241,.9); font-family: var(--font-head); font-weight: 500; font-size: 1rem; text-align: center; }
.lightbox__btn {
  position: absolute; z-index: 2; display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%; color: #fff;
  background: rgba(251,248,241,.12); border: 1px solid rgba(251,248,241,.22);
  transition: background .2s, transform .2s;
}
.lightbox__btn:hover { background: rgba(251,248,241,.25); transform: scale(1.06); }
.lightbox__btn svg { width: 24px; height: 24px; }
.lightbox__close { top: clamp(1rem,3vw,1.8rem); right: clamp(1rem,3vw,1.8rem); }
.lightbox__prev { left: clamp(.6rem,3vw,2rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(.6rem,3vw,2rem); top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.06); }

@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 560px) {
  .masonry { column-count: 1; }
  .art-trail__dates { display: inline-flex; margin-bottom: .5rem; }
  .lightbox__btn { width: 44px; height: 44px; }
}

/* ============================== Blog =========================== */
.chip {
  display: inline-flex; align-items: center;
  padding: .28rem .7rem; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase;
  background: color-mix(in srgb, var(--gold) 20%, white); color: var(--gold-deep);
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.post-card {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  color: var(--ink); box-shadow: 0 12px 30px -22px rgba(20,18,10,.5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.post-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--sand); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
.post-card__meta time { font-size: .82rem; color: var(--ink-50); font-family: var(--font-head); }
.post-card h3 { font-size: 1.24rem; line-height: 1.2; margin-bottom: .55rem; }
.post-card p { font-size: .96rem; margin-bottom: 1.1rem; }
.post-card .link-arrow { margin-top: auto; color: var(--gold-deep); }

/* Article (single post) */
.article { max-width: 760px; margin-inline: auto; }
.article__back {
  display: inline-flex; align-items: center; gap: .45rem; margin-bottom: 1.8rem;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink-70);
  transition: color .2s, transform .2s;
}
.article__back svg { width: 1.05em; height: 1.05em; }
.article__back:hover { color: var(--gold-deep); transform: translateX(-3px); }
.article__meta { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.article__meta time { font-size: .9rem; color: var(--ink-50); font-family: var(--font-head); }
.article h1 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 1.4rem; }
.article__hero {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  aspect-ratio: 16/9; object-fit: cover; margin: .4rem 0 2rem;
}
.article__body { font-size: 1.08rem; line-height: 1.75; color: var(--ink-70); }
.article__body > *:first-child { margin-top: 0; }
.article__body p { margin: 0 0 1.2rem; }
.article__body h2 {
  font-size: 1.5rem; color: var(--ink); margin: 2.2rem 0 .9rem; letter-spacing: -.01em;
}
.article__body ul, .article__body ol { margin: 0 0 1.2rem; padding-left: 1.3rem; }
.article__body li { margin-bottom: .5rem; }
.article__body ul { list-style: none; padding-left: 0; }
.article__body ul li { position: relative; padding-left: 1.6rem; }
.article__body ul li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold);
}
.article__body a { color: var(--gold-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.article__body a:hover { color: var(--ink); }
.article__body blockquote {
  margin: 1.6rem 0; padding: .4rem 0 .4rem 1.4rem; border-left: 3px solid var(--gold);
  font-family: var(--font-head); font-size: 1.2rem; color: var(--ink);
}
.article__foot {
  margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .8rem;
}

@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

/* ----------------------------- Contact -------------------------- */
.contact__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.info-list { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--sand); color: var(--gold-deep); display: grid; place-items: center; }
.info-list .ic svg { width: 22px; height: 22px; }
.info-list b { font-family: var(--font-head); color: var(--ink); display: block; }
.info-list a, .info-list span { color: var(--ink-70); }
.info-list a:hover { color: var(--gold-deep); }

.form {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow);
}
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--ink); background: var(--cream); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: var(--ring); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: .82rem; color: var(--ink-50); margin-top: .4rem; }
.map-embed { margin-top: 1.8rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 260px; border: 0; filter: grayscale(.2) contrast(1.05); }

/* ----------------------------- Footer --------------------------- */
.footer { background: var(--ink); color: rgba(251,248,241,.72); padding-top: clamp(56px,7vw,84px); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer .brand__name { color: var(--cream); }
.footer__about p { color: rgba(251,248,241,.6); margin-top: 1rem; max-width: 34ch; font-size: .95rem; }
.footer h4 { color: var(--cream); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__links { display: grid; gap: .6rem; }
.footer__links a { color: rgba(251,248,241,.7); font-size: .95rem; transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer__social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(251,248,241,.07); color: var(--cream); transition: background .2s, transform .2s; }
.footer__social a:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom { border-top: 1px solid rgba(251,248,241,.12); padding: 1.5rem 0; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; font-size: .85rem; color: rgba(251,248,241,.5); }

/* --------------------------- WhatsApp FAB ----------------------- */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(37,211,102,.7);
  transition: transform .3s var(--ease); animation: fabIn .5s var(--ease) .8s both;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; }
@keyframes fabIn { from { transform: scale(0); opacity: 0; } }

/* --------------------------- Mobile drawer ---------------------- */
.nav-scrim { position: fixed; inset: 0; background: rgba(20,18,10,.5); z-index: 50; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }

/* --------------------------- Reveal anim ------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ============================ Responsive ======================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { display: none; }
  .split, .donate__grid, .contact__grid, .billboard { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .billboard__media { min-height: 240px; }
  .grid-3, .paths__grid, .shop__grid { grid-template-columns: repeat(2, 1fr); }
  .impact__grid { grid-template-columns: repeat(2,1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .lottery__grid { grid-template-columns: 1fr; }
  .lottery__qr { max-width: 420px; margin-inline: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  body.nav-open { overflow: hidden; }

  /* Slide-in drawer */
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(360px, 88vw); z-index: 55;
    display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; margin: 0; padding: 96px 26px 28px;
    background: var(--cream);
    box-shadow: -24px 0 60px -30px rgba(20,18,10,.55);
    transform: translateX(105%);
    transition: transform .4s var(--ease);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  body.nav-open .nav { transform: none; }

  /* Drawer label */
  .nav::before {
    content: "Menu";
    position: absolute; top: 30px; left: 26px;
    font-family: var(--font-head); font-weight: 600; font-size: .78rem;
    letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep);
  }

  .nav__links { display: flex; flex-direction: column; gap: 0; width: 100%; }
  .nav__links a {
    display: block; padding: 1.05rem .25rem; font-size: 1.12rem;
    font-family: var(--font-head); font-weight: 600; color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .nav__links a:first-child { border-top: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__links a:active, .nav__links a:hover { color: var(--gold-deep); }

  .nav__cta {
    display: flex; flex-direction: column; align-items: stretch; gap: .8rem;
    margin-top: 2rem;
  }
  .nav__cta .btn { display: inline-flex; width: 100%; }
}

@media (max-width: 620px) {
  .hero__copy h1, .hero__copy .lead { padding-right: 1.25rem; }
  .hero__stats { grid-template-columns: repeat(2,1fr); }
  .grid-3, .paths__grid, .shop__grid, .impact__grid, .form .row2 { grid-template-columns: 1fr; }
  .advisory__row { grid-template-columns: repeat(2, 1fr); gap: 1.6rem .8rem; }
  .advisor b { font-size: .92rem; }
  .advisor__avatar { width: 96px; height: 96px; }
  .paths { margin-top: -30px; }
  .hero__badge { display: none; }
  .steps { grid-template-columns: 1fr; row-gap: 2.4rem; }
  .lottery__cta { flex-direction: column; align-items: flex-start; }
  .lottery__cta .btn { width: 100%; }
  .zeffy-embed { height: 760px; }
  .shop__note, .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__top { grid-template-columns: 1fr; gap: 2.2rem; }
  .btn-row .btn { flex: 1 1 auto; }
}
