/* ============================================================
   Seattle Debre Mihret St. Michael Ethiopian Orthodox Tewahedo
   Church — stylesheet.

   Design tokens live in :root at the top. Blue is the primary
   brand colour (navigation, links, primary buttons, headings
   where appropriate). Green is the secondary accent (badges,
   icons, secondary buttons, highlights). Black/charcoal carries
   primary text and high-contrast panels; white is the dominant
   background. Change --burgundy (blue) or --gold (green) to
   re-colour the whole site.
   ============================================================ */

:root {
  /* Palette: blue (primary) + green (accent) on white, near-black for contrast panels */
  --burgundy: #1c4e91;       /* primary blue */
  --burgundy-deep: #123a6e;  /* deep blue — headings, hover-dark, banners */
  --blue-hover: #2f6fd1;     /* bright blue — hover state for blue buttons */
  --gold: #2f9e57;           /* secondary accent green */
  --green-deep: #146b3a;     /* deep green — accessible text on light green tints */
  --gold-light: #cfe3f9;     /* light blue tint — readable text on dark navy panels */
  --green-light: #7ad9a0;    /* light green — hover state for green buttons/CTAs */
  --ink: #101827;            /* near-black navy — dark section backgrounds */
  --ink-deep: #080d14;       /* darkest near-black — header, hero, footer */
  --parchment: #ffffff;      /* white — primary page background */
  --cream: #f6f9fc;          /* off-white section tint (cool) */
  --warm: #f1f8f4;           /* off-white section tint (subtle green) */
  --paper: #ffffff;          /* white — card background */
  --text: #14181f;           /* near-black — primary text */
  --text-soft: #4b5b6b;      /* slate gray-blue — secondary text */
  --border: rgba(16, 24, 39, 0.12);

  --font-display: 'Fraunces', 'Noto Serif Ethiopic', Georgia, serif;
  --font-body: 'Inter', 'Noto Sans Ethiopic', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;

  --space-xs: 0.5rem;
  --space-s: 0.9rem;
  --space-m: 1.6rem;
  --space-l: 2.6rem;
  --space-xl: 4.5rem;

  --shadow: 0 12px 32px rgba(8, 13, 20, 0.16);
  --shadow-soft: 0 4px 16px rgba(8, 13, 20, 0.08);

  --transition: 220ms ease;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--parchment);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.25em; }
code {
  background: rgba(28, 78, 145, 0.08);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}
[lang="am"] { font-family: 'Noto Sans Ethiopic', 'Noto Serif Ethiopic', sans-serif; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: #fff;
  padding: 0.8em 1.2em;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.4rem;
}
.wrap-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.4rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.4em;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.98rem;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--burgundy); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); }
.btn-outline { border-color: rgba(255,255,255,0.7); color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.14); }
.btn-dark { background: var(--ink-deep); color: #fff; }
.btn-dark:hover { background: var(--ink); }
.btn-quiet { background: transparent; border-color: var(--green-deep); color: var(--green-deep); }
.btn-quiet:hover { background: var(--green-deep); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9em; margin-top: var(--space-m); }

/* ---------- Header & navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--ink-deep);
  border-bottom: 3px solid var(--gold);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.4rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7em;
  text-decoration: none;
  color: #fff;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.brand-sub { font-size: 0.78rem; color: var(--gold-light); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.4em;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 999px;
  padding: 0.5em 1em;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}
.nav-toggle svg { width: 1.3em; height: 1.3em; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: inline-flex; }

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 0.4em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
  padding: 0.55em 0.8em;
  text-decoration: none;
  color: #cfe3f9;
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}
.site-nav a .geez { font-size: 0.7rem; color: var(--gold-light); opacity: 0.85; }
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(47, 158, 87, 0.18);
  color: #fff;
}
.site-nav a[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--gold); }
.site-nav .nav-cta a {
  background: var(--gold);
  color: var(--ink-deep);
  font-weight: 700;
}
.site-nav .nav-cta a:hover { background: var(--green-light); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--ink-deep);
    border-bottom: 3px solid var(--gold);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .site-nav.is-open { max-height: 640px; }
  .site-nav ul { flex-direction: column; padding: 0.6rem 1.2rem 1.2rem; }
  .site-nav a { flex-direction: row; justify-content: space-between; width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--ink-deep) 0%, var(--burgundy-deep) 60%, var(--burgundy) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-l);
  align-items: center;
  padding: var(--space-xl) 1.4rem;
}
.hero-motto {
  display: flex;
  gap: 1em;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin: 0 0 1em;
}
.hero-motto span:not(:last-child)::after { content: '·'; margin-left: 1em; color: var(--gold); }
.hero h1 { color: #fff; max-width: 16ch; }
.geez-name {
  display: block;
  font-size: 1.05rem;
  color: var(--gold-light);
  margin: 0.6em 0 1em;
}
.hero .lede { font-size: 1.15rem; color: var(--gold-light); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9em; margin-top: var(--space-m); }
.arch {
  border-radius: 50% 50% 8px 8px / 30% 30% 0 0;
  background: linear-gradient(160deg, rgba(47,158,87,0.35), rgba(28,78,145,0.55));
  border: 2px solid var(--gold);
  min-height: 260px;
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-arch { display: none; }
}

.hero-facts.gold-edge {
  background: var(--ink);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.hero-facts ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-m);
  list-style: none;
  margin: 0;
  padding: var(--space-m) 0;
}
.hero-facts li {
  display: flex;
  gap: 0.8em;
  align-items: flex-start;
  color: var(--gold-light);
}
.hero-facts svg { width: 1.6em; height: 1.6em; flex-shrink: 0; color: var(--gold); margin-top: 0.15em; }
.hero-facts strong { display: block; color: #fff; font-family: var(--font-display); font-weight: 600; }
.hero-facts a { color: var(--gold-light); text-decoration: underline; }

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  background: linear-gradient(150deg, var(--ink-deep), var(--burgundy-deep));
  color: #fff;
  padding: var(--space-xl) 0 var(--space-l);
  text-align: center;
}
.page-banner h1 { color: #fff; }
.page-banner p { color: var(--gold-light); max-width: 58ch; margin: 0 auto; }

/* ---------- Sections ---------- */
.section, .section-tight {
  padding: var(--space-xl) 0;
}
.section-tight { padding: var(--space-l) 0; }
.section-cream { background: var(--cream); }
.section-warm { background: var(--warm); }
.section-parch { background: var(--parchment); }
.section-deep { background: var(--ink); color: var(--gold-light); }
.section-deep h2, .section-deep h3 { color: #fff; }
.section-ink { background: var(--ink-deep); color: var(--gold-light); text-align: center; }
.section-ink h2 { color: #fff; }

.section-head { max-width: 62ch; margin: 0 auto var(--space-l); text-align: center; }
.section-head p { color: var(--text-soft); }

.bilingual { display: flex; flex-direction: column; gap: 0.15em; }
.bilingual .geez { font-size: 0.55em; color: var(--green-deep); font-weight: 500; }

.mark { display: inline-block; width: 34px; height: 48px; color: var(--green-deep); margin-bottom: var(--space-s); }
.mark-center { display: block; margin: 0 auto var(--space-s); }

.note {
  font-size: 0.88rem;
  color: var(--text-soft);
  font-style: italic;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-l);
  align-items: center;
}
.split-top { align-items: start; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}

.harag {
  background: var(--paper);
  border: 1px solid var(--border);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  padding: var(--space-m);
  box-shadow: var(--shadow-soft);
}
.pull { font-family: var(--font-display); font-size: 1.2rem; color: var(--burgundy-deep); }

/* ---------- Placeholder callouts ---------- */
.placeholder {
  background: rgba(47, 158, 87, 0.1);
  border: 1.5px dashed var(--gold);
  border-radius: var(--radius);
  padding: var(--space-m);
  margin: var(--space-m) 0;
}
.placeholder h3 { margin-top: 0; }
.placeholder p:last-child { margin-bottom: 0; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: var(--space-m); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: var(--space-m);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover, .card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(28,78,145,0.25);
}
.card-topped { border-top: 4px solid var(--gold); }
.card-icon {
  display: inline-flex;
  width: 2.6em; height: 2.6em;
  align-items: center; justify-content: center;
  background: rgba(28,78,145,0.08);
  color: var(--burgundy);
  border-radius: 50%;
  margin-bottom: 0.6em;
}
.card-icon svg { width: 1.4em; height: 1.4em; }

.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-m); }
.pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(47,158,87,0.35);
  border-radius: var(--radius);
  padding: var(--space-m);
  text-align: center;
}
.pillar h3 { color: var(--gold-light); }
.pillar .geez { display: block; color: var(--gold); margin-bottom: 0.5em; }

/* ---------- Today card / feast list (Ethiopian calendar) ---------- */
.today-card {
  background: var(--ink-deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-l);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold);
}
.today-label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; color: var(--gold-light); margin-bottom: 0.6em; }
.today-eth { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-light); margin-bottom: 0.2em; }
.today-eth-en { font-size: 1.1rem; margin-bottom: 0.4em; }
.today-greg { color: var(--gold-light); font-size: 0.95rem; margin-bottom: 0; }

.feast-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6em; }
.feast-list li {
  display: grid;
  grid-template-columns: 9em 1fr;
  gap: 1em;
  align-items: baseline;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7em 1em;
}
.feast-date { font-weight: 700; color: var(--burgundy); font-family: var(--font-display); }
.feast-name { color: var(--text-soft); }
@media (max-width: 620px) {
  .feast-list li { grid-template-columns: 1fr; gap: 0.2em; }
}

.calendar-note {
  background: rgba(28,78,145,0.06);
  border-radius: var(--radius);
  padding: var(--space-m);
}
.calendar-note p:last-child { margin-bottom: 0; }

.months { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.8em; padding: 0; margin: var(--space-m) 0 0; }
.months li {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9em;
  text-align: center;
}
.months .geez { display: block; font-size: 1.3rem; color: var(--burgundy); margin-bottom: 0.2em; }
.months small { color: var(--text-soft); }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.6em; margin: var(--space-m) 0; }
.filter-btn {
  border: 1.5px solid var(--burgundy);
  background: transparent;
  color: var(--burgundy);
  padding: 0.45em 1.1em;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.filter-btn:hover { background: rgba(28,78,145,0.1); }
.filter-btn[aria-pressed="true"] { background: var(--burgundy); color: #fff; }

.gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-m);
}
.gallery-item { display: block; }
.gallery-item[hidden] { display: none; }
.gallery-item figure { margin: 0; }
.gallery-item button {
  background: none; border: none; padding: 0; cursor: pointer;
  width: 100%; text-align: left; font: inherit; color: inherit;
}
.frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
.photo-slot {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1em;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--gold) 100%);
  background-size: 220% 220%;
  transition: transform var(--transition);
}
.gallery-item:nth-child(3n+1) .photo-slot { background: linear-gradient(135deg, var(--ink-deep), var(--burgundy)); }
.gallery-item:nth-child(3n+2) .photo-slot { background: linear-gradient(135deg, var(--burgundy-deep), var(--gold)); }
.gallery-item:nth-child(3n+3) .photo-slot { background: linear-gradient(135deg, var(--gold), var(--burgundy-deep)); }
.gallery-item button:hover .photo-slot,
.gallery-item button:focus-visible .photo-slot { transform: scale(1.03); }
.gallery-item figcaption { margin-top: 0.5em; font-size: 0.9rem; color: var(--text-soft); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,13,20,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-figure { max-width: min(90vw, 720px); text-align: center; color: #fff; }
.lightbox-stage {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--burgundy), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}
.lightbox-caption { margin-top: var(--space-s); color: var(--gold-light); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 50%;
  width: 3em; height: 3em;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 1.4em; height: 1.4em; }
.lightbox-close { top: var(--space-m); right: var(--space-m); }
.lightbox-prev { left: var(--space-m); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: var(--space-m); top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ---------- Events ---------- */
.event {
  display: flex;
  gap: var(--space-m);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-m);
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--space-m);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.event-date {
  flex-shrink: 0;
  width: 5.5em;
  text-align: center;
  background: var(--burgundy);
  color: #fff;
  border-radius: 10px;
  padding: 0.7em 0.3em;
  display: flex;
  flex-direction: column;
}
.event-date .month { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.08em; color: var(--gold-light); }
.event-date .day { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; }
.event-date .year { font-size: 0.75rem; color: var(--gold-light); }
.tag {
  display: inline-block;
  background: rgba(47,158,87,0.16);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2em 0.7em;
  border-radius: 999px;
  margin-bottom: 0.5em;
}
.event-meta { list-style: none; padding: 0; margin: 0.5em 0; display: flex; flex-direction: column; gap: 0.3em; }
.event-meta li { display: flex; align-items: center; gap: 0.5em; color: var(--text-soft); }
.event-meta svg { width: 1.1em; height: 1.1em; color: var(--gold); flex-shrink: 0; }
@media (max-width: 560px) {
  .event { flex-direction: column; }
  .event-date { flex-direction: row; justify-content: center; gap: 0.5em; width: auto; }
}

/* ---------- Contact ---------- */
.contact-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-m); }
.contact-links li { display: flex; gap: 0.9em; align-items: flex-start; }
.contact-links svg { width: 1.6em; height: 1.6em; color: var(--burgundy); flex-shrink: 0; margin-top: 0.15em; }
.contact-links strong { display: block; font-family: var(--font-display); color: var(--burgundy-deep); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Give list (donate) ---------- */
.give-list { list-style: none; padding: 0; margin: var(--space-m) 0; display: grid; gap: 0.6em; }
.give-list li {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  flex-wrap: wrap;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8em 1.1em;
}
.give-list .label { font-weight: 700; color: var(--burgundy-deep); }
.give-list .value { color: var(--text-soft); font-style: italic; }

/* ---------- Detail lists & steps (about/services/learn) ---------- */
.detail-list { display: grid; gap: var(--space-m); margin: var(--space-m) 0; }
.detail-list dt { font-family: var(--font-display); color: var(--burgundy-deep); font-weight: 600; margin-bottom: 0.2em; }
.detail-list dd { margin: 0; color: var(--text-soft); }

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-m);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.steps li {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-m) var(--space-m) var(--space-m) 2.6em;
  box-shadow: var(--shadow-soft);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0.9em; top: 0.9em;
  width: 1.6em; height: 1.6em;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink-deep);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}

/* ---------- Schedule table ---------- */
.schedule { width: 100%; border-collapse: collapse; margin: var(--space-m) 0; background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.schedule caption { text-align: left; font-weight: 700; padding: 0.6em 1em; color: var(--burgundy-deep); }
.schedule th, .schedule td { padding: 0.8em 1em; border-bottom: 1px solid var(--border); text-align: left; }
.schedule thead th { background: var(--burgundy); color: #fff; }

/* ---------- Ornamental band ---------- */
.lattice-band {
  height: 14px;
  background:
    repeating-linear-gradient(135deg, var(--gold) 0 10px, var(--burgundy) 10px 20px);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-deep);
  color: var(--gold-light);
  padding: var(--space-xl) 0 var(--space-m);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--space-l);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h2 { color: #fff; font-size: 1.05rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5em; }
.site-footer a { color: var(--gold-light); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-brand { display: flex; align-items: center; gap: 0.7em; margin-bottom: 0.8em; }
.footer-brand .name { font-family: var(--font-display); color: #fff; font-weight: 600; }
.footer-geez { color: var(--gold-light); font-size: 0.85em; }
.social-link { display: inline-flex; align-items: center; gap: 0.5em; }
.social-link svg { width: 1.2em; height: 1.2em; }
.footer-bottom {
  border-top: 1px solid rgba(47,158,87,0.3);
  margin-top: var(--space-l);
  padding-top: var(--space-m);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5em;
  font-size: 0.85rem;
}

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: var(--space-xl) 0; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
