/* maranatha.com: hand-written CSS, design tokens first. No build step. */
:root {
  --ink: #1B2340;
  --ink-soft: #4A5473;
  --dawn: #D98E2B;
  --dawn-deep: #B36F14;
  --dawn-ink: #8A520A;      /* amber for small text on light backgrounds (AA: 5.9:1 on paper) */
  --paper: #FAF6EF;
  --sky: #DCE8F2;
  --sage: #5E7F6E;
  --sage-deep: #45664F;     /* success text (AA on white) */
  --rose: #C4574F;
  --rose-deep: #A8443D;     /* error text (AA on white) */
  --line: #E5DED1;
  --white: #FFFFFF;

  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(27, 35, 64, .06), 0 8px 24px rgba(27, 35, 64, .07);
  --shadow-lift: 0 2px 4px rgba(27, 35, 64, .08), 0 14px 32px rgba(27, 35, 64, .12);
  --focus: var(--dawn-deep);
  --accent: var(--dawn);          /* overridden per church */
  --accent-ink: var(--dawn-ink);
  --measure: 68ch;
  --gutter: 16px;
  --section-pad: 48px;
}
@media (min-width: 720px) { :root { --gutter: 24px; --section-pad: 80px; } }

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (min-width: 900px) { html { font-size: 17px; } }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); line-height: 1.65; overflow-x: hidden; }
img, svg, video, iframe { max-width: 100%; height: auto; }
img { display: block; }
.icon { flex: none; vertical-align: -0.2em; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw + .5rem, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw + .5rem, 2.75rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
.h3 { font-size: 1.5rem; }
p { margin: 0 0 1em; }
a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--dawn-ink); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: 12px; top: -80px; background: var(--ink); color: var(--white); padding: 12px 18px; border-radius: 999px; z-index: 100; }
.skip-link:focus { top: 12px; color: var(--white); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding-inline: var(--gutter); }
.narrow { max-width: 760px; }
.prose { max-width: var(--measure); }
.prose h2 { margin-top: 1.6em; font-size: 1.75rem; }
.prose h3 { margin-top: 1.4em; font-size: 1.3rem; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.center { text-align: center; }
.muted { color: var(--ink-soft); }
.small { font-size: .875rem; }
.lead { font-size: 1.25rem; color: var(--ink-soft); max-width: 60ch; }
.eyebrow { font-size: .875rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--dawn-ink); margin-bottom: .6em; }
.stack > * + * { margin-top: 1rem; }
.row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.between { justify-content: space-between; }

/* utilities (no inline styles anywhere: CSP forbids them) */
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.pt-2 { padding-top: 16px; } .pb-0 { padding-bottom: 0; }
.w-full { width: 100%; } .nowrap { white-space: nowrap; } .inline { display: inline; } .flex-1 { flex: 1 1 260px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; min-height: 48px; padding: 12px 26px; border-radius: 999px; border: 2px solid transparent; font: 600 1rem/1.2 var(--font-body); text-decoration: none; cursor: pointer; transition: background .15s, transform .15s, box-shadow .15s; text-align: center; }
.btn-primary { background: var(--accent); color: var(--accent-text, var(--ink)); }
.btn-primary:hover { background: var(--accent-hover, var(--dawn-ink)); color: var(--accent-hover-text, var(--white)); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--white); }
.btn-on-dark.btn-secondary { color: var(--white); border-color: var(--white); }
.btn-on-dark.btn-secondary:hover { background: var(--white); color: var(--ink); }
.btn-quiet { background: none; min-height: 44px; padding: 8px 4px; border-radius: 4px; text-decoration: underline; text-underline-offset: 4px; color: var(--ink); }
.btn-danger { background: var(--rose-deep); color: var(--white); }
.btn-danger:hover { background: #8a342e; color: var(--white); }
.btn-small { min-height: 44px; padding: 8px 18px; font-size: .9375rem; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.btn:active { transform: translateY(1px); }

/* ---------- Header / nav ---------- */
.site-header { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font: 600 1.5rem/1 var(--font-head); min-height: 44px; }
.logo svg { width: 40px; height: 28px; }
.nav-toggle { display: none; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.primary-nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 12px; border-radius: 999px; text-decoration: none; font-weight: 500; font-size: .95rem; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { background: var(--sky); color: var(--ink); }
.primary-nav .nav-cta a { background: var(--dawn); font-weight: 600; }
.primary-nav .nav-cta a:hover { background: var(--dawn-ink); color: var(--white); }
.js .nav-toggle { display: inline-flex; }
@media (max-width: 1023px) {
  .header-inner { flex-wrap: wrap; }
  .js .nav-toggle { align-items: center; gap: 8px; min-height: 44px; padding: 8px 16px; border: 2px solid var(--ink); border-radius: 999px; background: none; font: 600 .95rem var(--font-body); color: var(--ink); cursor: pointer; }
  .primary-nav { width: 100%; }
  .js .primary-nav:not(.open) { display: none; }
  .primary-nav ul { flex-direction: column; align-items: stretch; padding-bottom: 12px; }
  .primary-nav a { width: 100%; }
}

/* ---------- Sections, horizon dividers ---------- */
.section { padding-block: var(--section-pad); position: relative; }
.section-sky { background: var(--sky); }
.section-white { background: var(--white); }
.section-ink { background: var(--ink); color: var(--white); }
.section-ink h1, .section-ink h2, .section-ink h3 { color: var(--white); }
.section-ink a { color: var(--white); }
.section-ink .muted, .section-ink .lead { color: #D6DBEA; }
.section-ink .eyebrow { color: #F2B865; }
.horizon { display: block; width: 100%; height: 36px; margin: 0; line-height: 0; color: var(--sky); }
.horizon svg { width: 100%; height: 100%; display: block; }
.horizon-white { color: var(--white); }
.horizon-paper { color: var(--paper); }
.horizon-ink { color: var(--ink); }
.section-head { max-width: 720px; margin-bottom: 2rem; }
.section-head.center { margin-inline: auto; }

.hero { position: relative; overflow: hidden; background: radial-gradient(120% 90% at 50% 115%, rgba(217, 142, 43, .38), rgba(217, 142, 43, 0) 60%), linear-gradient(180deg, var(--sky) 0%, var(--paper) 78%); padding-block: 40px 56px; }
@media (min-width: 900px) { .hero { padding-block: 72px 88px; } }
.hero-grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }
.hero h1 { max-width: 16ch; }
.hero .lead { margin-bottom: 1.6rem; }
.hero-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); border: 1px solid var(--line); background: var(--sky); }
.hero-media img { width: 100%; height: auto; }
.page-hero { position: relative; background: linear-gradient(180deg, var(--sky), var(--paper)); padding-block: 40px 32px; overflow: hidden; }
.page-hero-media { margin-top: 24px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.page-hero-media img { width: 100%; height: auto; max-height: 340px; object-fit: cover; }

/* ---------- Cards, grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; transition: transform .18s, box-shadow .18s; position: relative; }
a.card, .card-link { text-decoration: none; color: inherit; display: block; }
a.card:hover, .card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); color: inherit; }
.card h3, .card .h3 { font-size: 1.3rem; margin-bottom: .35em; }
.card .icon-badge { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 14px; background: var(--sky); color: var(--ink); margin-bottom: 14px; }
.door { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.door img { width: 100%; height: auto; }
.door-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.door-body .btn { align-self: flex-start; margin-top: auto; }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.steps li { counter-increment: step; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.steps li::before { content: counter(step); display: inline-flex; width: 40px; height: 40px; border-radius: 50%; background: var(--dawn); color: var(--ink); font: 700 1.1rem var(--font-head); align-items: center; justify-content: center; margin-bottom: 12px; }
.badge { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: .8125rem; font-weight: 600; background: var(--sky); color: var(--ink); }
.badge-warn { background: #FBE7C6; color: #6B3F05; }
.badge-ok { background: #DCEBE2; color: #1F4A33; }
.badge-bad { background: #F6DAD7; color: #7A2A24; }
.draft-flag { display: inline-block; background: #FBE7C6; color: #6B3F05; border: 1px dashed var(--dawn-deep); padding: 4px 12px; border-radius: 8px; font-size: .875rem; font-weight: 600; margin-bottom: 1rem; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.pill-list li { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 4px 14px; font-size: .9rem; }

/* ---------- Scripture ---------- */
.scripture { margin: 1.4rem 0; padding: 1rem 1.25rem; background: var(--white); border-left: 4px solid var(--dawn); border-radius: 0 12px 12px 0; box-shadow: var(--shadow); max-width: var(--measure); }
.scripture blockquote { margin: 0; font-family: var(--font-head); font-style: italic; font-size: 1.125rem; line-height: 1.7; }
.scripture figcaption { margin-top: .6rem; font: 600 .875rem var(--font-body); font-style: normal; color: var(--ink-soft); }
.scripture figcaption a { color: var(--ink); }
.vn { font: 600 .7rem var(--font-body); font-style: normal; color: var(--dawn-ink); margin-right: .25em; vertical-align: super; line-height: 0; }
.attribution { font-size: .8125rem; color: var(--ink-soft); }
.scripture-ref { font-weight: 500; }
.verse-of-day { font-size: 1.35rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 20px; max-width: 640px; }
.field { display: grid; gap: 6px; }
.field label, .field .label, legend { font-weight: 600; font-size: 1rem; }
.field .hint { font-size: .875rem; color: var(--ink-soft); font-weight: 400; }
input[type=text], input[type=email], input[type=password], input[type=url], input[type=tel], input[type=number], input[type=date], input[type=datetime-local], input[type=search], input[type=color], select, textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; border: 2px solid #8E96AD; border-radius: 12px; background: var(--white); color: var(--ink); font: 400 1rem/1.4 var(--font-body);
}
input[type=color] { padding: 4px; min-height: 48px; width: 96px; }
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid var(--focus); outline-offset: 2px; border-color: var(--ink); }
.field-error input, .field-error select, .field-error textarea { border-color: var(--rose-deep); }
.error-text { color: var(--rose-deep); font-size: .9375rem; font-weight: 500; }
fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 8px; }
.check { display: flex; gap: 12px; align-items: flex-start; min-height: 44px; }
.check input { width: 24px; height: 24px; margin-top: 2px; flex: none; accent-color: var(--ink); }
.check label { font-weight: 400; }
.error-summary { border: 2px solid var(--rose-deep); background: #FDF1EF; border-radius: 12px; padding: 16px 20px; max-width: 640px; margin-bottom: 20px; }
.error-summary h2 { font-size: 1.1rem; margin: 0 0 .4em; color: var(--rose-deep); font-family: var(--font-body); }
.error-summary ul { margin: 0; padding-left: 1.2em; }
.alert { border-radius: 12px; padding: 14px 18px; border: 1px solid var(--line); background: var(--white); margin-bottom: 20px; }
.alert-success { border-color: var(--sage); background: #EEF5F0; color: #1F4A33; }
.alert-error { border-color: var(--rose-deep); background: #FDF1EF; color: #7A2A24; }
.alert-crisis { border: 2px solid var(--rose-deep); background: #FDF1EF; color: var(--ink); padding: 22px 24px; }
.alert-crisis h2 { color: var(--rose-deep); font-size: 1.4rem; }
.notice { background: var(--sky); border-radius: 12px; padding: 14px 18px; font-size: .95rem; max-width: 640px; }
.crisis-line { font-size: .9rem; color: var(--ink-soft); }
.crisis-line a { font-weight: 600; color: var(--ink); }
.inline-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-start; }
.inline-form input[type=email], .inline-form input[type=text] { flex: 1 1 220px; }

/* ---------- Accordions (FAQ) ---------- */
details.faq { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; }
details.faq summary { cursor: pointer; padding: 16px 20px; font-weight: 600; min-height: 48px; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: '+'; font-size: 1.4rem; line-height: 1; color: var(--dawn-ink); }
details.faq[open] summary::after { content: '\2212'; }
details.faq .faq-body { padding: 0 20px 16px; max-width: var(--measure); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #E4E8F5; padding-block: 48px 28px; margin-top: 0; }
.site-footer a { color: #E4E8F5; }
.site-footer a:hover { color: #F2B865; }
.footer-grid { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.footer-grid h2 { font: 600 .875rem var(--font-body); letter-spacing: .08em; text-transform: uppercase; color: #F2B865; margin-bottom: .8em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li a { display: inline-block; padding: 6px 0; min-height: 32px; }
.footer-legal { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .18); font-size: .875rem; color: #C5CBE0; }
.footer-crisis { margin-top: 20px; font-weight: 600; }

/* ---------- Bible reader ---------- */
.bible-controls { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 12px 0 20px; }
.bible-text { font-family: var(--font-head); font-size: var(--bible-size, 1.2rem); line-height: 1.85; max-width: var(--measure); }
.bible-text .verse { display: inline; }
.bible-text .verse:target, .bible-text .verse.hl { background: #FBE7C6; border-radius: 4px; }
.bible-text .vn { font-size: .65em; }
.bible-text p { margin-bottom: 1.1em; }
.book-list { columns: 2 200px; column-gap: 24px; list-style: none; padding: 0; margin: 0; }
.book-list li { break-inside: avoid; }
.book-list a { display: block; padding: 8px 0; min-height: 44px; }
.chapter-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(56px, 1fr)); gap: 8px; list-style: none; padding: 0; margin: 0; }
.chapter-grid a { display: flex; align-items: center; justify-content: center; min-height: 48px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; text-decoration: none; font-weight: 600; }
.chapter-grid a:hover { background: var(--sky); }
.pager { display: flex; justify-content: space-between; gap: 12px; margin: 28px 0; flex-wrap: wrap; }
.search-result { padding: 14px 0; border-bottom: 1px solid var(--line); max-width: var(--measure); }
.search-result mark { background: #FBE7C6; color: inherit; padding: 0 2px; border-radius: 3px; }

/* ---------- Directory / map ---------- */
.dir-layout { display: grid; gap: 24px; }
@media (min-width: 960px) { .dir-layout { grid-template-columns: 420px 1fr; align-items: start; } .dir-map { position: sticky; top: 84px; } }
#map { height: 420px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--sky); z-index: 1; }
.church-card { display: grid; gap: 6px; }
.church-card h2 { margin: 0; }
.times { list-style: none; padding: 0; margin: 0; }
.times li { padding: 2px 0; }

/* ---------- Tables / dashboard ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
table.table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: .95rem; }
.table th, .table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { background: #F4EEE2; font-weight: 600; white-space: nowrap; }
.table tr:last-child td { border-bottom: 0; }
.dash { display: grid; gap: 24px; padding-block: 24px 56px; }
@media (min-width: 900px) { .dash { grid-template-columns: 240px 1fr; align-items: start; } }
.dash-nav { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; }
.dash-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 4px; }
@media (min-width: 900px) { .dash-nav ul { flex-direction: column; flex-wrap: nowrap; } }
.dash-nav a { display: flex; gap: 10px; align-items: center; min-height: 44px; padding: 8px 12px; border-radius: 10px; text-decoration: none; font-weight: 500; }
.dash-nav a:hover, .dash-nav a[aria-current="page"] { background: var(--sky); }
.dash-main h1 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.checklist li { display: flex; gap: 10px; align-items: center; min-height: 44px; }
.checklist .done { color: var(--sage-deep); }
.stat { font: 700 2rem var(--font-head); }
.progress { height: 10px; background: var(--line); border-radius: 999px; overflow: hidden; }
.progress > span { display: block; height: 100%; background: var(--sage); border-radius: 999px; }
.progress-0 > span { width: 0; } .progress-10 > span { width: 10%; } .progress-20 > span { width: 20%; } .progress-30 > span { width: 30%; } .progress-40 > span { width: 40%; } .progress-50 > span { width: 50%; } .progress-60 > span { width: 60%; } .progress-70 > span { width: 70%; } .progress-80 > span { width: 80%; } .progress-90 > span { width: 90%; } .progress-100 > span { width: 100%; }
.queue-item { border-left: 4px solid var(--line); }
.queue-item.crisis { border-left-color: var(--rose-deep); background: #FFF8F7; }
.message-body { white-space: pre-wrap; background: #FBF9F4; border: 1px solid var(--line); border-radius: 12px; padding: 16px; max-width: var(--measure); }

/* ---------- Church sites ---------- */
.church-hero { position: relative; color: var(--white); background: var(--ink); overflow: hidden; }
.church-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.church-hero .container { position: relative; padding-block: 56px 64px; }
.church-hero h1 { color: var(--white); max-width: 18ch; text-shadow: 0 1px 12px rgba(0, 0, 0, .35); }
.church-hero .lead { color: #F0F2FA; }
.church-nav { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 30; }
.church-nav-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; min-height: 60px; }
.church-nav .brand { display: inline-flex; align-items: center; gap: 10px; font: 600 1.2rem var(--font-head); text-decoration: none; margin-right: auto; min-height: 44px; }
.church-nav .brand img { height: 36px; width: auto; }
.church-nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 2px; margin: 0; padding: 0; }
.church-nav a.nav-link { display: inline-flex; align-items: center; min-height: 44px; padding: 6px 12px; border-radius: 999px; text-decoration: none; font-weight: 500; font-size: .95rem; }
.church-nav a.nav-link:hover, .church-nav a.nav-link[aria-current="page"] { background: var(--sky); }
.powered-by { background: var(--paper); padding: 16px 0; text-align: center; font-size: .875rem; color: var(--ink-soft); border-top: 1px solid var(--line); }
.font-clean { --font-head: 'Inter', system-ui, sans-serif; }
.font-classic { --font-body: 'Fraunces', Georgia, serif; }
.font-friendly { --font-head: 'Inter', system-ui, sans-serif; --radius: 24px; }
.video-embed { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: var(--ink); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.event-date { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 14px; background: var(--sky); font-weight: 700; line-height: 1.1; flex: none; }
.event-date span { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }
.event-date strong { font: 700 1.5rem var(--font-head); }
.staff-card img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; }

/* ---------- Motion ---------- */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
@media print { .site-header, .site-footer, .btn, .skip-link { display: none !important; } body { background: #fff; } }
.form-wide { max-width: 900px; }
