/* ==================================================================
   UNITY001 design system
   Mobile-first. One file for public site + admin.
   Palette drawn from the UNITY001 tree logo and prior brand work:
   teal, cream, gold, with navy as a deep accent.
   ================================================================== */

:root {
  --teal:        #2B4E52;
  --teal-dark:   #1E383B;
  --teal-deeper: #142629;
  --cream:       #F9F6F0;
  --cream-dark:  #EDE9E1;
  --gold:        #8B6914;
  --gold-light:  #A07C24;
  --gold-pale:   #F0E9D8;
  --navy:        #252C59;
  --sky:         #6EC1E4;
  --ink:         #1C2325;
  --muted:       #55666A;
  --line:        #D8DDE0;
  --red:         #B03A2E;
  --green:       #2E7D4F;

  --serif: Georgia, 'Times New Roman', serif;
  --sans: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1100px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 10px rgba(20, 38, 41, .08);
  --shadow-lg: 0 12px 32px rgba(20, 38, 41, .16);
}

/* ---------- Base ---------- */

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--serif); line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 6vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.4rem); }
p { margin: 0 0 1em; }

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: #fff;
  padding: .6em 1.2em; z-index: 100;
}
.skip-link:focus { left: 0; color: #fff; }

/* Honeypot field: hidden from humans, present for bots. */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  font-family: var(--sans); font-weight: 700; font-size: 1rem;
  padding: .75em 1.6em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); color: #fff; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); color: #fff; }
.btn-outline { background: transparent; color: inherit; border-color: currentColor; }
.btn-outline:hover { background: rgba(255, 255, 255, .12); color: inherit; }
.on-light .btn-outline:hover, .btn-outline.on-light:hover { background: rgba(43, 78, 82, .08); }
.btn-large { font-size: 1.1rem; padding: .9em 2em; }
.btn-small { font-size: .85rem; padding: .45em 1em; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  background: var(--teal-deeper);
  position: sticky; top: 0; z-index: 50;
  transition: background-color .25s ease;
}
.site-header-overlay {
  position: fixed; left: 0; right: 0;
  background: linear-gradient(rgba(20, 38, 41, .8), rgba(20, 38, 41, 0));
}
.site-header-overlay.scrolled, .site-header-overlay.nav-open { background: var(--teal-deeper); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.brand {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none;
}
.brand img { width: 44px; height: 44px; }
.brand-text {
  font-family: var(--serif); font-weight: 700; font-size: 1.35rem;
  letter-spacing: .02em; color: var(--cream);
}
.brand-num { color: var(--sky); }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--cream);
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-bars::before { position: absolute; top: -7px; }
.nav-toggle-bars::after { position: absolute; top: 7px; }
.nav-open .nav-toggle-bars { transform: rotate(45deg); }
.nav-open .nav-toggle-bars::before { transform: rotate(-90deg) translateX(-7px); top: 0; }
.nav-open .nav-toggle-bars::after { opacity: 0; }

.site-nav { display: none; }
.nav-open .site-nav {
  display: block;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--teal-deeper);
  border-top: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--shadow-lg);
}
.site-nav ul { list-style: none; margin: 0; padding: .5rem 0 1rem; }
.site-nav a {
  display: block;
  padding: .7rem 1.25rem;
  color: var(--cream); text-decoration: none; font-weight: 600;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--sky); }
.nav-donate { padding: .7rem 1.25rem; }
.nav-donate .btn { color: #fff; }

@media (min-width: 1120px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; }
  .nav-open .site-nav { position: static; border: 0; box-shadow: none; }
  .site-nav ul { display: flex; align-items: center; gap: .25rem; padding: 0; }
  .site-nav a { padding: .5rem .7rem; font-size: .98rem; white-space: nowrap; }
  .nav-donate { padding: 0 0 0 .5rem; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92svh;
  display: flex; align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  background: var(--teal-deeper);
}
.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 38, 41, .25) 0%, rgba(20, 38, 41, .35) 55%, rgba(20, 38, 41, .88) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 7rem 0 3rem;
}
.hero h1 { color: #fff; max-width: 17ch; }
.hero-sub { font-size: clamp(1.05rem, 2.5vw, 1.3rem); max-width: 52ch; color: rgba(249, 246, 240, .92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

.hero-chip {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: .5em;
  background: rgba(249, 246, 240, .12);
  border: 1px solid rgba(249, 246, 240, .3);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: .45em 1.1em;
  font-size: .9rem; font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-chip strong { color: var(--sky); }

.hero-short { min-height: 56svh; }

/* ---------- Sections ---------- */

.section { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.section-tight { padding: clamp(2rem, 5vw, 3.5rem) 0; }
.section-cream-dark { background: var(--cream-dark); }
.section-teal { background: var(--teal-dark); color: var(--cream); }
.section-teal h2, .section-teal h3 { color: #fff; }
.section-teal a:not(.btn) { color: var(--sky); }
.section-navy { background: var(--navy); color: var(--cream); }
.section-navy h2 { color: #fff; }
.section-gold { background: var(--gold-pale); }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: .85rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75em;
}
.section-teal .eyebrow, .section-navy .eyebrow { color: var(--sky); }

.section-head { max-width: 62ch; margin-bottom: 2rem; }
.section-head-center { margin-inline: auto; text-align: center; }
.lead { font-size: clamp(1.1rem, 2.5vw, 1.25rem); color: var(--muted); }
.section-teal .lead, .section-navy .lead { color: rgba(249, 246, 240, .85); }

.split {
  display: grid; gap: 2rem;
  align-items: center;
}
@media (min-width: 820px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .split-wide-media { grid-template-columns: 3fr 2fr; }
}
.split-media img, .split-media video { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.split-media img.img-plain { border-radius: 0; box-shadow: none; }

/* ---------- Cards ---------- */

.card-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .card-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body > :last-child { margin-top: auto; }
.card-body p { color: var(--muted); }
.card img.card-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card .btn { align-self: flex-start; }
.section-teal .card, .section-navy .card { color: var(--ink); }
.section-teal .card h3, .section-navy .card h3 { color: var(--ink); }

/* ---------- Countdown ---------- */

.countdown {
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(64px, 96px));
  gap: .6rem;
  text-align: center;
}
.countdown-cell {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(249, 246, 240, .25);
  border-radius: var(--radius-sm);
  padding: .7rem .25rem .5rem;
}
.on-light .countdown-cell { background: #fff; border-color: var(--line); box-shadow: var(--shadow); }
.countdown-num {
  display: block;
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--sky);
}
.on-light .countdown-num { color: var(--gold); }
.countdown-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  opacity: .8;
}

/* ---------- Info strip (date / time / place rows) ---------- */

.info-strip {
  display: grid; gap: 1rem;
  padding: 0; margin: 2rem 0; list-style: none;
}
@media (min-width: 640px) { .info-strip { grid-template-columns: repeat(3, 1fr); } }
.info-strip li {
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 1rem 1.25rem;
}
.info-strip .info-label {
  display: block;
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted);
}
.info-strip .info-value { font-weight: 700; }
.section-teal .info-strip li { color: var(--ink); }

/* ---------- Forms ---------- */

.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 760px;
}
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .span-2 { grid-column: span 2; }
}
.field label {
  display: block;
  font-weight: 600; font-size: .95rem;
  margin-bottom: .3rem;
}
.field .hint { font-size: .85rem; color: var(--muted); margin: .25rem 0 0; }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  padding: .7em .85em;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid rgba(110, 193, 228, .5);
  border-color: var(--teal);
}
.field textarea { min-height: 7em; resize: vertical; }
.field-error { color: var(--red); font-size: .9rem; margin: .3rem 0 0; }
.required::after { content: ' *'; color: var(--red); }

fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem 1.25rem;
  margin: 0;
}
legend { font-weight: 700; padding: 0 .4em; }

/* Big tappable radio cards (registration type, amounts) */
.choice-cards { display: grid; gap: .75rem; }
@media (min-width: 560px) { .choice-cards { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); } }
.choice-card { position: relative; }
.choice-card input { position: absolute; opacity: 0; }
.choice-card label {
  display: block;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .9rem 1rem;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease;
}
.choice-card .choice-sub { display: block; font-weight: 400; font-size: .85rem; color: var(--muted); }
.choice-card input:checked + label {
  border-color: var(--teal);
  background: rgba(110, 193, 228, .12);
}
.choice-card input:focus-visible + label { outline: 3px solid rgba(110, 193, 228, .5); }

/* ---------- Flash messages ---------- */

.flash {
  width: min(100% - 2.5rem, var(--container));
  margin: 1rem auto 0;
  padding: .9rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: 1px solid transparent;
}
.flash-success { background: #E5F3EA; color: var(--green); border-color: #BFE3CC; }
.flash-error { background: #FBEAE8; color: var(--red); border-color: #F2C7C1; }
.flash-info { background: #E8F4FB; color: #23617E; border-color: #C4E3F2; }

/* ---------- Media galleries ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  padding: 0; margin: 0; list-style: none;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: .8rem; } }
@media (min-width: 980px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid a { display: block; border-radius: var(--radius-sm); overflow: hidden; }
.gallery-grid img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .25s ease;
}
.gallery-grid a:hover img { transform: scale(1.04); }

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1100px); }
.lightbox::backdrop { background: rgba(20, 38, 41, .92); }
.lightbox img { max-height: 82vh; width: auto; max-width: 100%; margin-inline: auto; border-radius: var(--radius-sm); }
.lightbox-caption { color: var(--cream); text-align: center; padding: .75rem; font-size: .95rem; }
.lightbox-close {
  position: fixed; top: 1rem; right: 1rem;
  background: rgba(249, 246, 240, .15); color: #fff;
  border: 1px solid rgba(249, 246, 240, .4);
  border-radius: 999px;
  width: 44px; height: 44px;
  font-size: 1.3rem; cursor: pointer;
}

.video-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .video-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.video-card video {
  width: 100%;
  border-radius: var(--radius);
  background: var(--teal-deeper);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.video-card figcaption { font-size: .9rem; color: var(--muted); margin-top: .5rem; }
.section-teal .video-card figcaption { color: rgba(249, 246, 240, .8); }

/* ---------- Winners ---------- */

.winner-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .winner-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .winner-grid { grid-template-columns: repeat(3, 1fr); } }
.winner-card { text-align: center; }
.winner-card .card-body { align-items: center; }
.winner-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.winner-photo-empty {
  width: 100%; aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-dark);
  font-family: var(--serif); font-size: 3rem; color: var(--gold);
}
.place-badge {
  display: inline-block;
  border-radius: 999px;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3em 1em;
  margin-bottom: .6rem;
}
.place-1 { background: var(--gold-pale); color: var(--gold); }
.place-2 { background: var(--cream-dark); color: var(--muted); }
.winner-category { font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--teal); }
.winner-vehicle { color: var(--muted); }

/* ---------- Quotes ---------- */

.quote {
  border-left: 4px solid var(--gold);
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
}
.quote footer { font-family: var(--sans); font-size: .9rem; color: var(--muted); margin-top: .75rem; }
.section-teal .quote { background: rgba(255, 255, 255, .06); color: var(--cream); box-shadow: none; }
.section-teal .quote footer { color: rgba(249, 246, 240, .75); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--teal-deeper);
  color: rgba(249, 246, 240, .85);
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem;
  margin-top: 0;
}
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; gap: 3rem; } }
.footer-brand { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--cream); margin-bottom: .2em; }
.footer-tag { font-size: .9rem; color: var(--sky); font-weight: 600; }
.footer-motto { font-family: var(--serif); color: var(--gold-light); font-size: 1.1rem; }
.site-footer h2 { font-family: var(--sans); font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cream); }
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links a, .footer-contact a { color: rgba(249, 246, 240, .85); text-decoration: none; line-height: 2; }
.footer-links a:hover, .footer-contact a:hover { color: var(--sky); }
.footer-subscribe label { display: block; font-size: .9rem; margin-bottom: .4rem; }
.subscribe-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.subscribe-row input {
  flex: 1 1 200px;
  font: inherit;
  padding: .65em .9em;
  border-radius: 999px;
  border: 1px solid rgba(249, 246, 240, .35);
  background: rgba(255, 255, 255, .08);
  color: var(--cream);
}
.subscribe-row input::placeholder { color: rgba(249, 246, 240, .5); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
  border-top: 1px solid rgba(249, 246, 240, .15);
  margin-top: 2.5rem; padding-top: 1.25rem;
  font-size: .85rem;
}
.footer-bottom a { color: rgba(249, 246, 240, .55); }

/* ---------- Admin ---------- */

.admin-body { background: #F1F3F4; }
.admin-header { background: var(--teal-deeper); }
.admin-header-inner {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  padding: .6rem 0;
}
.admin-tag { font-size: .8rem; color: var(--gold-light); letter-spacing: .1em; text-transform: uppercase; }
.admin-nav { flex: 1; overflow-x: auto; }
.admin-nav ul { display: flex; gap: .25rem; list-style: none; margin: 0; padding: 0; white-space: nowrap; }
.admin-nav a {
  display: block; padding: .5rem .7rem;
  color: var(--cream); text-decoration: none;
  font-size: .95rem; font-weight: 600;
  border-radius: var(--radius-sm);
}
.admin-nav a:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.admin-nav a[aria-current="page"] { background: var(--teal); color: #fff; }
.admin-user { display: flex; align-items: center; gap: .75rem; color: var(--cream); font-size: .95rem; }
.admin-main { width: min(100% - 2rem, 1280px); margin-inline: auto; padding: 1.5rem 0 3rem; }
.admin-title { font-size: 1.6rem; margin: .5rem 0 1rem; }
.admin-main .flash { width: 100%; margin: 0 0 1rem; }

.admin-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.stat-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); margin-bottom: 1.5rem; }
@media (min-width: 900px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.1rem 1.25rem;
}
.stat-value { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--teal); }
.stat-label { font-size: .85rem; color: var(--muted); font-weight: 600; }

.table-wrap { overflow-x: auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
table.table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 640px; }
.table th, .table td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid #EDF0F1; vertical-align: top; }
.table th {
  background: var(--cream-dark);
  font-size: .8rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted);
  position: sticky; top: 0;
}
.table tbody tr:hover { background: #F8FAFA; }

.badge {
  display: inline-block;
  border-radius: 999px;
  padding: .2em .8em;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
.badge-paid, .badge-completed, .badge-fulfilled { background: #E5F3EA; color: var(--green); }
.badge-pending, .badge-waiting { background: #FBF3DC; color: var(--gold); }
.badge-canceled, .badge-hidden { background: #FBEAE8; color: var(--red); }
.badge-contacted, .badge-info { background: #E8F4FB; color: #23617E; }

.filter-bar {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: end;
  margin-bottom: 1rem;
}
.filter-bar .field { min-width: 140px; }
.filter-bar label { font-size: .8rem; }

.winner-thumb { object-fit: cover; border-radius: 6px; }

.login-card {
  max-width: 400px;
  margin: 3rem auto;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 2rem;
}
.login-card .brand-text { color: var(--teal-dark); }

/* ---------- Misc ---------- */

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.section-cta {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
  margin-top: 1.5rem;
}

.notice {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@media print {
  .site-header, .site-footer, .nav-toggle { display: none; }
}
