/* ============================================================
   World Sikh Council - DEMO C "Institution"
   Design language studied from sikhri.org, rebuilt with free fonts
   and accessible colour. See 01-Strategy/SikhRI Design Teardown.md
   ------------------------------------------------------------
   Serif display at weight 400 + humanist sans body.
   Muted gold accent. Generous vertical rhythm. Flat scrims on photos.
   Full-pill buttons with fill-to-outline hover.
   Navy text on gold (passes WCAG AA; SikhRI's white-on-gold does not).
   ============================================================ */

:root {
  --navy: #16244F;
  --navy-deep: #0F1A3C;
  --ink: #212121;
  --body: #333333;
  --muted: #6B7183;
  --gold: #BFA25A;
  --gold-deep: #A0863F;
  --gold-wash: #F6F1E4;
  --line: #E6E7E8;
  --paper: #FFFFFF;
  --paper-warm: #FAF9F6;

  --wrap: 1196px;
  --radius-pill: 100px;
  --radius-panel: 16px;
  --radius-sm: 8px;

  --serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gurmukhi: "Mukta Mahee", var(--sans);

  --rhythm: 120px;
  --rhythm-lg: 160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--gold-deep); outline-offset: 3px;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 300;
  padding: 10px 18px; border-radius: var(--radius-pill);
  background: var(--navy); color: #fff; font-weight: 700; text-decoration: none;
  transform: translateY(-160%); transition: transform .18s ease;
}
.skip-link:focus { transform: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .wrap { padding: 0 40px; } }
.narrow { max-width: 760px; }

/* ---------- Type: the serif does the work, never bold ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 3.9rem); line-height: 1.14; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.2; }
h3 { font-size: 1.45rem; line-height: 1.3; }
p { margin-bottom: 22px; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.16rem; line-height: 1.68; color: var(--body); max-width: 62ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 18px; display: block;
}
.eyebrow-light { color: var(--gold); }
.rule-gold { width: 64px; height: 2px; background: var(--gold); margin: 26px 0; border: 0; }
.pj { font-family: var(--gurmukhi); }

/* ---------- Buttons: full pill, fill-to-outline hover ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 15px 34px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  white-space: nowrap; transition: all .22s ease;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: transparent; color: var(--gold-deep); border-color: var(--gold); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); backdrop-filter: blur(3px); }
.btn-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-lg { padding: 17px 40px; font-size: 1.06rem; }
.btn-block { width: 100%; }

.link-arrow {
  font-family: var(--sans); font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  color: var(--navy); display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--gold); padding-bottom: 4px; transition: gap .2s;
}
.link-arrow:hover { gap: 14px; }
.link-arrow-light { color: #fff; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 20px; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand img { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.16; }
.brand-name { font-family: var(--serif); font-size: 1.22rem; color: var(--navy); letter-spacing: .01em; }
.brand-sub { font-family: var(--gurmukhi); font-size: .74rem; color: var(--muted); }
.nav-links { display: none; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--body); text-decoration: none; transition: color .15s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-deep); }
.lang-toggle { display: flex; gap: 2px; background: var(--paper-warm); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 3px; }
.lang-toggle button {
  border: 0; background: transparent; cursor: pointer; border-radius: var(--radius-pill);
  font-family: var(--sans); font-weight: 700; font-size: .78rem; padding: 7px 13px; color: var(--muted);
}
.lang-toggle button[aria-pressed="true"] { background: var(--navy); color: #fff; }
.nav-cta { display: none; padding: 12px 30px; font-size: .95rem; }
.nav-burger {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  min-width: 44px; min-height: 44px; background: none; border: 0; cursor: pointer;
}
.nav-burger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s, opacity .2s; }
.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; flex-direction: column; padding: 8px 24px 26px; background: #fff; border-top: 1px solid var(--line); }
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 15px 0; border-bottom: 1px solid var(--line); text-decoration: none;
  font-size: .84rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
.nav-mobile .btn { margin-top: 18px; }
@media (min-width: 1000px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger, .nav-mobile { display: none !important; }
}

/* ---------- Hero: photo + flat scrim, the SikhRI move ---------- */
.hero {
  position: relative; min-height: clamp(560px, 78svh, 760px);
  display: flex; align-items: center; color: #fff; overflow: hidden;
  background-color: var(--navy-deep);
  background-image:
    linear-gradient(90deg, rgba(15,26,60,.95) 0%, rgba(15,26,60,.90) 34%, rgba(15,26,60,.62) 64%, rgba(15,26,60,.40) 100%),
    var(--hero-img);
  background-size: cover; background-position: center;
}
@media (max-width: 899px) {
  .hero { background-image: linear-gradient(rgba(15,26,60,.86), rgba(15,26,60,.86)), var(--hero-img); }
}
.hero-inner { padding: 96px 0; max-width: 720px; }
@media (min-width: 1100px) { .hero-inner { max-width: 560px; } }
@media (min-width: 1300px) { .hero-inner { max-width: 640px; } }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.9); margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

/* Feature card floating over the hero (their Sidak card) */
.hero-card {
  display: none; position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: 340px; background: #fff; color: var(--ink); box-shadow: 0 24px 60px -20px rgba(0,0,0,.55);
}
@media (min-width: 1100px) { .hero-card { display: block; } }
.hero-card-img { height: 190px; background-size: cover; background-position: center; }
.hero-card-body { padding: 24px 26px 26px; }
.hero-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.hero-card p { font-size: .95rem; color: var(--muted); margin-bottom: 16px; }

/* Inner page hero */
.page-hero {
  position: relative; color: #fff; padding: 130px 0 96px;
  background-color: var(--navy-deep);
  background-image: linear-gradient(102deg, rgba(15,26,60,.90) 0%, rgba(15,26,60,.78) 50%, rgba(15,26,60,.52) 100%), var(--hero-img);
  background-size: cover; background-position: center;
}
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,.88); margin-top: 20px; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-lg { padding: 110px 0; }
.section-warm { background: var(--paper-warm); }
.section-gold { background: var(--gold-wash); }
.section-navy { background: var(--navy); color: rgba(255,255,255,.86); }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .lead { color: rgba(255,255,255,.86); }
@media (min-width: 900px) {
  .section { padding: var(--rhythm) 0; }
  .section-lg { padding: var(--rhythm-lg) 0; }
}
.section-head { max-width: 680px; margin-bottom: 52px; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 26px; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.split { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 76px; }
  .split-wide { grid-template-columns: 1.15fr 1fr; }
  .split.rev > :first-child { order: 2; }
}

/* ---------- Photo cards with the gold-wash hover ---------- */
.photo-card {
  position: relative; display: flex; align-items: flex-end; min-height: 260px;
  padding: 28px; text-decoration: none; color: #fff; overflow: hidden;
  background-color: var(--navy); background-size: cover; background-position: center;
  box-shadow: 0 1px 5px rgba(0,0,0,.28); transition: box-shadow .3s;
}
.photo-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.62));
  transition: background .35s ease;
}
.photo-card:hover::before { background: linear-gradient(var(--gold), var(--gold)); }
.photo-card:hover { box-shadow: none; }
.photo-card > * { position: relative; z-index: 1; }
.photo-card h3 { color: #fff; font-size: 1.35rem; }
.photo-card:hover h3, .photo-card:hover .pc-meta { color: var(--navy); }
.pc-meta { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.82); margin-bottom: 8px; display: block; }

/* ---------- Plain cards ---------- */
.card { background: #fff; border: 1px solid var(--line); padding: 32px 30px; }
.card-warm { background: var(--paper-warm); border-color: transparent; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; color: var(--muted); }
.card i { font-size: 1.6rem; color: var(--gold-deep); display: block; margin-bottom: 14px; }

/* ---------- Program / event rows ---------- */
.event-row {
  display: grid; gap: 8px; padding: 30px 0; border-top: 1px solid var(--line);
  text-decoration: none; color: inherit; transition: background .2s;
}
.event-row:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 800px) { .event-row { grid-template-columns: 190px 1fr auto; gap: 32px; align-items: center; } }
.event-date { font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); }
.event-row h3 { font-size: 1.3rem; }
.event-row p { font-size: .95rem; color: var(--muted); margin: 0; }
.event-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 15px; border-radius: var(--radius-pill); background: var(--gold-wash); color: var(--gold-deep); white-space: nowrap;
}
.event-tag-soon { background: var(--navy); color: #fff; }

/* ---------- Timeline (the ten Gurus) ---------- */
.timeline { border-left: 2px solid var(--line); padding-left: 34px; margin-top: 48px; }
.tl-item { position: relative; padding-bottom: 42px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -42px; top: 7px;
  width: 15px; height: 15px; border-radius: 50%; background: var(--gold); border: 3px solid #fff;
}
.tl-years { font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .1em; color: var(--gold-deep); text-transform: uppercase; }
.tl-item h3 { font-size: 1.25rem; margin: 5px 0 8px; }
.tl-item p { font-size: .98rem; color: var(--muted); margin: 0; }

/* ---------- Stat band ---------- */
.stats { display: grid; gap: 34px; text-align: center; }
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-family: var(--serif); font-size: 2.9rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-top: 12px; }

/* ---------- Pull quote ---------- */
.pullquote { max-width: 860px; margin: 0 auto; text-align: center; }
.pullquote p {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.42; color: var(--ink); margin-bottom: 24px;
}
.pullquote cite { font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); font-style: normal; }

/* ---------- Story cards ---------- */
.story { display: grid; gap: 0; }
@media (min-width: 800px) { .story { grid-template-columns: 1fr 1fr; } .story.rev > :first-child { order: 2; } }
.story-img { min-height: 320px; background-size: cover; background-position: center; background-color: var(--navy); }
.story-body { padding: 46px 44px; background: #fff; display: flex; flex-direction: column; justify-content: center; }
.story-body p { font-size: 1rem; color: var(--body); }

/* ---------- Social strip ---------- */
.social-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .social-grid { grid-template-columns: repeat(4, 1fr); } }
.social-card {
  display: flex; align-items: center; gap: 14px; padding: 22px 24px;
  border: 1px solid var(--line); text-decoration: none; color: var(--ink);
  transition: border-color .25s, transform .25s;
}
.social-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.social-card i { font-size: 1.5rem; color: var(--gold-deep); }
.social-card b { font-family: var(--sans); font-size: .95rem; display: block; }
.social-card span { font-size: .82rem; color: var(--muted); }

/* ---------- Donate slide-in panel (the move Dyal liked) ---------- */
.donate-backdrop {
  position: fixed; inset: 0; z-index: 190; background: rgba(15,26,60,.45);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.donate-backdrop.open { opacity: 1; pointer-events: auto; }
.donate-panel {
  position: fixed; z-index: 200; right: 0; bottom: 0; width: min(420px, 100%);
  max-height: 92svh; overflow-y: auto; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-panel) var(--radius-panel) 0 0;
  box-shadow: 0 -10px 60px -12px rgba(0,0,0,.4);
  transform: translateY(102%); transition: transform .38s cubic-bezier(.16,1,.3,1);
  padding: 30px 28px 34px;
}
@media (min-width: 700px) {
  .donate-panel { right: 24px; bottom: 24px; border-radius: var(--radius-panel); }
}
.donate-panel.open { transform: none; }
.donate-panel .dp-close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px;
  border: 0; background: var(--paper-warm); border-radius: 50%; cursor: pointer;
  font-size: 1.1rem; color: var(--muted); line-height: 1;
}
.dp-logo { width: 52px; margin-bottom: 16px; }
.dp-title { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin-bottom: 4px; }
.dp-sub { font-size: .92rem; color: var(--muted); margin-bottom: 22px; }
.dp-label { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: block; }
.freq-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 22px; }
.freq-row button {
  padding: 12px 8px; border: 1.5px solid var(--line); background: #fff; cursor: pointer;
  border-radius: var(--radius-sm); font-family: var(--sans); font-weight: 700; font-size: .92rem; color: var(--muted);
  transition: all .18s;
}
.freq-row button[aria-pressed="true"] { border-color: var(--gold); background: var(--gold-wash); color: var(--gold-deep); }
.amt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.amt-grid button {
  padding: 16px 8px; border: 1.5px solid var(--line); background: #fff; cursor: pointer;
  border-radius: var(--radius-sm); font-family: var(--serif); font-size: 1.3rem; color: var(--ink);
  transition: all .18s;
}
.amt-grid button[aria-pressed="true"] { border-color: var(--gold); background: var(--gold-wash); color: var(--gold-deep); }
.amt-other { margin-top: 10px; position: relative; }
.amt-other span { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); font-family: var(--serif); font-size: 1.15rem; }
.amt-other input {
  width: 100%; padding: 15px 15px 15px 34px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--serif); font-size: 1.15rem; color: var(--ink);
}
.amt-other input:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.dp-summary { font-size: .9rem; color: var(--muted); margin: 18px 0 4px; }
.dp-secure { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 14px; }
.dp-trust { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .76rem; color: var(--muted); }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 20px; }
@media (min-width: 700px) { .form-grid.two { grid-template-columns: 1fr 1fr; } .form-grid.two .full { grid-column: 1/-1; } }
.field label { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 1rem; background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.field .help { font-size: .84rem; color: var(--muted); margin-top: 7px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.72); padding: 88px 0 36px; }
.footer-grid { display: grid; gap: 44px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: 56px; } }
.footer .brand-name { color: #fff; }
.footer .brand-sub { color: rgba(255,255,255,.6); }
.footer h4 { font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .95rem; }
.footer a:hover { color: var(--gold); }
.footer-mission { margin-top: 18px; font-size: .96rem; max-width: 38ch; }
.footer-legal {
  margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: space-between;
  font-size: .84rem; color: rgba(255,255,255,.55);
}

/* Preview notice. Deliberately quiet: honest, not apologetic.
   Remove this block and its markup once the site goes fully live. */
.footer-notice {
  margin-top: 18px;
  font-size: .76rem;
  line-height: 1.6;
  color: rgba(255,255,255,.42);
  max-width: 78ch;
}

/* ---------- Mobile donate FAB ---------- */
.fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  padding: 15px 30px; border-radius: var(--radius-pill); border: 0; cursor: pointer;
  background: var(--gold); color: var(--navy);
  font-family: var(--sans); font-weight: 700; font-size: 1rem;
  box-shadow: 0 12px 30px -8px rgba(191,162,90,.7);
}
@media (min-width: 1000px) { .fab { display: none; } }
body.nav-open .fab, body.panel-open .fab { display: none; }

/* ---------- Punjabi typography compensation ---------- */
html[lang="pa"] body { font-size: .96em; }
html[lang="pa"] h1, html[lang="pa"] h2, html[lang="pa"] h3, html[lang="pa"] h4,
html[lang="pa"] .brand-name, html[lang="pa"] .dp-title, html[lang="pa"] .pullquote p,
html[lang="pa"] .stat-num, html[lang="pa"] .amt-grid button {
  font-family: var(--gurmukhi); font-weight: 700; line-height: 1.36; letter-spacing: 0;
}
html[lang="pa"] h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
html[lang="pa"] h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); }
html[lang="pa"] .lead { line-height: 1.85; }
html[lang="pa"] .eyebrow, html[lang="pa"] .nav-links a, html[lang="pa"] .btn,
html[lang="pa"] .link-arrow, html[lang="pa"] .dp-label { letter-spacing: .04em; }

/* ---------- Official seal logo ----------
   Detailed multicolour seal: it needs breathing room and it must never be
   recoloured. On navy it sits on a white disc so the blue arc text stays legible. */
.brand-mark { width: auto; height: 52px; object-fit: contain; }
.brand-mark-disc {
  height: 54px; background: #fff; border-radius: 50%;
  padding: 5px; box-sizing: content-box;
}
@media (max-width: 480px) { .brand-mark { height: 44px; } }

/* ---------- Objectives list ---------- */
.obj-list { list-style: none; counter-reset: none; display: grid; gap: 0; max-width: 900px; margin: 0 auto; }
.obj-list li {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  padding: 30px 0; border-bottom: 1px solid var(--line);
}
.obj-list li:last-child { border-bottom: 0; }
.obj-num {
  font-family: var(--serif); font-size: 1.5rem; color: var(--gold-deep);
  width: 52px; height: 52px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.obj-list h3 { margin-bottom: 8px; }
.obj-list p { font-size: 1rem; color: var(--muted); max-width: 58ch; }
@media (max-width: 560px) {
  .obj-list li { grid-template-columns: 42px 1fr; gap: 16px; }
  .obj-num { width: 40px; height: 40px; font-size: 1.2rem; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
