/* ==========================================================================
   Read, Laugh, Learn Foundation — design system
   Palette sampled directly from the foundation logo.
   ========================================================================== */

:root {
  --orange:      #FC5400;
  --orange-dk:   #D33F00;
  --orange-soft: #FFF0E7;
  --gold:        #FCB400;
  --gold-soft:   #FFF6E0;
  --purple:      #6E139B;
  --purple-dk:   #4C0B6E;
  --purple-soft: #F5EBFA;
  --ink:         #243C48;
  --ink-2:       #4E626D;
  --ink-3:       #7C8C95;
  --cream:       #FFFAF4;
  --line:        #EAE1D8;
  --white:       #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(36,60,72,.07);
  --shadow:    0 8px 28px rgba(36,60,72,.10);
  --shadow-lg: 0 24px 60px rgba(36,60,72,.16);

  --r-sm: 12px;
  --r:    20px;
  --r-lg: 28px;

  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 48px);

  --font-display: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--white);
  overflow-x: hidden;
}

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

a { color: var(--orange-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 6.2vw, 4.15rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.narrow { max-width: 760px; }
.center { text-align: center; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--purple); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- accents ---------- */

.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45em 1.05em;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--orange-dk);
  margin-bottom: 1.1rem;
}
.tag--onDark { background: rgba(255,255,255,.16); color: #FFE9BC; backdrop-filter: blur(4px); }
.tag--purple { background: var(--purple-soft); color: var(--purple); }

.hl { color: var(--orange); }
.hl-p { color: var(--purple); }
.hl-g { color: var(--gold); }

/* Hand-drawn underline swash under a key word */
.swash { position: relative; white-space: nowrap; }
.swash::after {
  content: "";
  position: absolute; left: -1%; right: -1%; bottom: .04em; height: .2em;
  background: var(--gold);
  border-radius: 999px;
  opacity: .5;
  z-index: -1;
}

.lede { font-size: clamp(1.1rem, 1.9vw, 1.3rem); color: var(--ink-2); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.03rem;
  padding: .82em 1.7em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(252,84,0,.32); }
.btn--primary:hover { background: var(--orange-dk); box-shadow: 0 10px 26px rgba(252,84,0,.4); }

.btn--purple { background: var(--purple); color: #fff; box-shadow: 0 6px 18px rgba(110,19,155,.28); }
.btn--purple:hover { background: var(--purple-dk); }

.btn--gold { background: var(--gold); color: #4A3200; box-shadow: 0 6px 18px rgba(252,180,0,.34); }
.btn--gold:hover { background: #E9A400; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-dk); background: var(--orange-soft); }

.btn--onDark { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn--onDark:hover { background: #fff; color: var(--ink); }

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

/* ---------- header ---------- */

.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; text-decoration: none !important; }
.brand-mark { width: 46px; height: 46px; flex: none; border-radius: 13px; box-shadow: 0 3px 10px rgba(252,84,0,.25); }
.brand-txt { display: block; }
.brand-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.08rem;
  color: var(--ink); line-height: 1.1; letter-spacing: -.01em;
}
.brand-sub { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }

.nav { display: none; align-items: center; gap: 1.6rem; }
@media (min-width: 940px) { .nav { display: flex; } }
.nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: var(--ink); text-decoration: none !important; position: relative; padding: .3em 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px;
  background: var(--orange); border-radius: 2px; transition: right .22s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav a[aria-current="page"] { color: var(--orange-dk); }

.head-cta { display: none; }
@media (min-width: 1080px) { .head-cta { display: inline-flex; } }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--orange-soft); border: 1px solid var(--line); cursor: pointer;
  margin-left: auto;
}
@media (min-width: 940px) { .burger { display: none; } }
.burger span { display: block; width: 20px; height: 2.5px; background: var(--ink); border-radius: 2px; position: relative; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2.5px; background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, top .2s ease;
}
.burger span::before { top: -6.5px; }
.burger span::after { top: 6.5px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav { display: none; border-top: 1px solid var(--line); background: #fff; padding: .6rem 0 1.4rem; }
.mobile-nav.open { display: block; }
@media (min-width: 940px) { .mobile-nav, .mobile-nav.open { display: none; } }
.mobile-nav a {
  display: block; padding: .85rem .2rem; font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem; color: var(--ink); border-bottom: 1px solid var(--line); text-decoration: none !important;
}
.mobile-nav .btn { margin-top: 1.1rem; width: 100%; }

/* ---------- sections ---------- */

.sec { padding: clamp(3.6rem, 8vw, 6.5rem) 0; }
.sec--tight { padding: clamp(2.6rem, 5vw, 4rem) 0; }
.sec--cream { background: var(--cream); }
.sec--purple { background: var(--purple); color: rgba(255,255,255,.85); }
.sec--purple h2, .sec--purple h3 { color: #fff; }
.sec--ink { background: var(--ink); color: rgba(255,255,255,.82); }
.sec--ink h2, .sec--ink h3 { color: #fff; }

.sec-head { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.sec-head--center { margin-inline: auto; text-align: center; }

/* ---------- hero ---------- */

.hero { position: relative; color: #fff; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: saturate(1.18) contrast(1.06);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(95deg, rgba(14,6,26,.88) 0%, rgba(16,8,30,.66) 38%, rgba(18,9,34,.18) 68%, rgba(18,9,34,.02) 100%),
    linear-gradient(180deg, rgba(14,6,26,.34) 0%, rgba(14,6,26,0) 28%, rgba(14,6,26,.38) 100%);
}
/* block-only, so .wrap's inline padding survives (a `padding` shorthand here
   zeroes it and the hero text runs flush to the screen edge on mobile) */
.hero-in { padding-block: clamp(4.5rem, 12vw, 8.5rem) clamp(3.5rem, 8vw, 6rem); max-width: 860px; }
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.hero p { color: rgba(255,255,255,.9); font-size: clamp(1.08rem, 2vw, 1.32rem); max-width: 620px; }
.hero .btn-row { margin-top: 2rem; }

.hero--short .hero-in { padding-block: clamp(3.4rem, 8vw, 5.6rem) clamp(3rem, 6vw, 4.6rem); }

/* stat strip under hero */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.2);
  border-radius: var(--r); overflow: hidden; margin-top: 2.8rem; max-width: 560px;
}
.hero-stats div { background: rgba(255,255,255,.1); backdrop-filter: blur(8px); padding: 1.1rem .8rem; text-align: center; }
.hero-stats b { display: block; font-family: var(--font-display); font-size: clamp(1.5rem, 3.4vw, 2.05rem); color: var(--gold); line-height: 1; }
.hero-stats span { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.75); font-weight: 700; }

/* ---------- grids & cards ---------- */

.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
@media (max-width: 480px) { .g-2 { grid-template-columns: 1fr; } }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #DCCFC2; }
.card h3 { margin-bottom: .45em; }
.card p { font-size: .99rem; }
.card--flat:hover { transform: none; box-shadow: var(--shadow-sm); }

.ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 17px; font-size: 1.65rem;
  background: var(--orange-soft); margin-bottom: 1.05rem; line-height: 1;
}
.ico--gold { background: var(--gold-soft); }
.ico--purple { background: var(--purple-soft); }

/* ---------- split (text + image) ---------- */

.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split--flip .split-media { order: -1; }
@media (max-width: 899px) { .split--flip .split-media { order: 0; } }

.split-media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; }
.split-media { position: relative; }
.split-media::after {
  content: ""; position: absolute; inset: auto -18px -18px auto; width: 62%; height: 62%;
  border-radius: var(--r-lg); background: var(--gold); opacity: .16; z-index: -1;
}

/* ---------- counter ---------- */

.counter {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dk) 100%);
  border-radius: var(--r-lg); padding: clamp(2.2rem, 5vw, 3.6rem); text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.counter::before {
  content: ""; position: absolute; top: -55%; right: -18%; width: 62%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(252,180,0,.30), transparent 68%);
}
.counter-label { font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: #FFD98A; font-weight: 800; }
.counter-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(4rem, 15vw, 8.5rem); line-height: .95; color: #fff; margin: .1em 0 .05em;
}
.counter-of { font-family: var(--font-display); font-size: clamp(1.05rem, 2.4vw, 1.45rem); color: rgba(255,255,255,.9); }
.counter p { max-width: 560px; margin: 1.3rem auto 1.8rem; color: rgba(255,255,255,.82); }

/* ---------- impact tiers ---------- */

.tier {
  background: #fff; border: 2px solid var(--line); border-radius: var(--r);
  padding: clamp(1.6rem, 2.6vw, 2.1rem); text-align: center; position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tier:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold); }
.tier-amt { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.85rem, 4vw, 2.5rem); color: var(--orange); line-height: 1; }
.tier-kids { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--purple); margin-top: .5rem; line-height: 1; }
.tier-kids small { display: block; font-family: var(--font-body); font-size: .82rem; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; margin-top: .35rem; }
.tier-name { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin-top: 1rem; font-size: 1.02rem; }

.tier--feature { border-color: var(--gold); box-shadow: 0 12px 40px rgba(252,180,0,.2); }
.tier-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #4A3200; font-family: var(--font-display); font-weight: 800;
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; padding: .38em 1.05em; border-radius: 999px;
  white-space: nowrap;
}

/* full sponsor cards */
.sponsor-card { display: flex; flex-direction: column; height: 100%; text-align: left; }
.sponsor-card ul { list-style: none; padding: 0; margin: 1.3rem 0 1.6rem; }
.sponsor-card li { position: relative; padding-left: 1.75rem; margin-bottom: .7rem; font-size: .96rem; }
.sponsor-card li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange);
  font-weight: 800; font-family: var(--font-display);
}
.sponsor-card .btn { margin-top: auto; }
.sponsor-head { border-bottom: 1px solid var(--line); padding-bottom: 1.3rem; }

/* ---------- ecosystem flow ---------- */

.flow { display: grid; gap: .8rem; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 860px) { .flow { grid-template-columns: repeat(5, 1fr); gap: .5rem; } }
.flow-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 1.3rem .9rem; text-align: center; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
}
.flow-step span { font-size: 1.7rem; line-height: 1; }
.flow-step b { font-family: var(--font-display); font-size: .96rem; color: var(--ink); line-height: 1.25; }
.flow-step:not(:last-child)::after {
  content: "↓"; position: absolute; bottom: -.85rem; left: 50%; transform: translateX(-50%);
  color: var(--orange); font-weight: 800; font-size: 1.05rem; z-index: 2; background: var(--cream);
  width: 24px; text-align: center;
}
@media (min-width: 860px) {
  .flow-step:not(:last-child)::after { content: "→"; bottom: auto; top: 50%; left: auto; right: -.72rem; transform: translateY(-50%); }
}
.flow-step--end { background: var(--gold-soft); border-color: var(--gold); }

/* ---------- roadmap ---------- */

.road { display: grid; gap: 1.4rem; }
.phase {
  background: #fff; border: 1px solid var(--line); border-left: 6px solid var(--orange);
  border-radius: var(--r-sm); padding: clamp(1.4rem, 3vw, 2rem);
  display: grid; gap: 1rem;
}
@media (min-width: 780px) { .phase { grid-template-columns: 210px 1fr; align-items: start; gap: 2rem; } }
.phase:nth-child(2) { border-left-color: var(--gold); }
.phase:nth-child(3) { border-left-color: var(--purple); }
.phase:nth-child(4) { border-left-color: var(--ink); }
.phase-n { font-family: var(--font-display); font-weight: 800; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.phase-goal { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3.2vw, 2rem); color: var(--orange); line-height: 1.05; margin-top: .2rem; }
.phase:nth-child(2) .phase-goal { color: #C98A00; }
.phase:nth-child(3) .phase-goal { color: var(--purple); }
.phase:nth-child(4) .phase-goal { color: var(--ink); }
.phase h3 { margin-bottom: .4em; }
.phase-meta { font-size: .88rem; color: var(--ink-3); font-weight: 700; margin-top: .9rem; }

/* ---------- photo strip ---------- */

.strip { display: grid; gap: .7rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .strip { grid-template-columns: repeat(4, 1fr); } }
.strip img { border-radius: var(--r-sm); aspect-ratio: 1; object-fit: cover; width: 100%; box-shadow: var(--shadow-sm); }
.strip img:nth-child(1) { border-radius: var(--r) var(--r-sm) var(--r-sm) var(--r); }
.strip img:nth-child(4) { border-radius: var(--r-sm) var(--r) var(--r) var(--r-sm); }

/* ---------- book row ---------- */

.books { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.books img {
  width: clamp(96px, 15vw, 140px); border-radius: 8px;
  box-shadow: var(--shadow); transition: transform .2s ease;
}
.books img:hover { transform: translateY(-6px) rotate(-1.5deg); }

/* ---------- quote ---------- */

.quote {
  border-left: 5px solid var(--gold); padding: .4rem 0 .4rem 1.6rem; margin: 2rem 0;
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  color: var(--ink); line-height: 1.35; font-weight: 600;
}
.quote cite { display: block; font-family: var(--font-body); font-size: .92rem; font-style: normal; color: var(--ink-3); font-weight: 700; margin-top: .8rem; }

/* ---------- bullets ---------- */

.ticks { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .75rem; }
.ticks li { position: relative; padding-left: 2rem; }
.ticks li::before {
  content: "★"; position: absolute; left: 0; top: -.1em; color: var(--gold); font-size: 1.1rem;
}

/* ---------- form ---------- */

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.8rem); box-shadow: var(--shadow);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: .95rem; color: var(--ink); margin-bottom: .4rem;
}
.field .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--cream); transition: border-color .16s ease, background .16s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 4px rgba(252,84,0,.1);
}
.field textarea { min-height: 145px; resize: vertical; }
.field-row { display: grid; gap: 1.15rem; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: .88rem; color: var(--ink-3); margin-top: 1rem; }

.form-msg { border-radius: var(--r-sm); padding: 1rem 1.2rem; margin-bottom: 1.4rem; font-weight: 600; display: none; }
.form-msg.show { display: block; }
.form-msg--ok { background: #E9F7EE; color: #1B6B37; border: 1px solid #B8E4C7; }
.form-msg--err { background: #FDECEC; color: #A32222; border: 1px solid #F4C4C4; }

/* ---------- contact meta ---------- */

.meta-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.meta-item:last-child { border-bottom: none; }
.meta-item .ico { width: 46px; height: 46px; font-size: 1.25rem; border-radius: 13px; margin: 0; flex: none; }
.meta-item b { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.02rem; }
.meta-item span { font-size: .95rem; }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, #FF8A00 100%);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 120%, rgba(110,19,155,.45), transparent 55%);
}
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 620px; margin-inline: auto; font-size: clamp(1.05rem, 2vw, 1.2rem); }
.cta-band .btn-row { margin-top: 2rem; }

/* ---------- footer ---------- */

.site-foot { background: var(--ink); color: rgba(255,255,255,.6); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; font-size: .95rem; }
.foot-grid { display: grid; gap: 2.4rem; }
@media (min-width: 860px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; } }
.foot-brand img { height: 62px; width: auto; margin-bottom: 1.1rem; }
.foot-brand p { max-width: 330px; font-size: .95rem; }
.site-foot h4 { color: #fff; font-size: 1.02rem; margin-bottom: 1rem; }
.foot-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.foot-links a { color: rgba(255,255,255,.68); text-decoration: none; transition: color .16s ease; }
.foot-links a:hover { color: var(--gold); text-decoration: none; }
.rll-dots { font-family: var(--font-display); font-weight: 800; letter-spacing: .08em; margin-top: 1.1rem; }
.rll-dots .r { color: var(--orange); }
.rll-dots .l { color: #C77BE8; }
.rll-dots .e { color: var(--gold); }
.foot-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between; font-size: .87rem;
}

/* ---------- motion ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
