/* La Stella — design tokens & base styles
   Derived from the Claude Design handoff bundle.  */

@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Caveat:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Ink + paper */
  --ink: #1e3a7a;
  --ink-soft: #3a5599;
  --ink-muted: #6a7ea8;

  --paper: #fffbf2;
  --paper-warm: #fdf4d9;
  --paper-rose: #fde6e2;
  --paper-peach: #fde0c8;
  --paper-sage: #e4ecd8;
  --paper-sky: #d9e6ef;

  /* Watercolor accents */
  --sun: #f5c542;
  --sun-light: #ffe8a3;
  --rose: #e88fa0;
  --rose-light: #f8d5de;
  --peach: #f0a878;
  --peach-light: #f8cfa8;
  --sage: #9fc08f;
  --sage-light: #cfe0bf;
  --lilac: #bfa5d9;
  --sky: #7aa9c4;
  --sky-light: #bfd3e0;

  --heart: #d64545;
  --leaf: #3f7a47;

  --rule: rgba(30, 58, 122, 0.16);
  --rule-soft: rgba(30, 58, 122, 0.08);

  --shadow-sm: 0 1px 2px rgba(62, 48, 30, 0.08), 0 2px 6px rgba(62, 48, 30, 0.06);
  --shadow-md: 0 4px 14px rgba(62, 48, 30, 0.10), 0 1px 3px rgba(62, 48, 30, 0.06);
  --shadow-lg: 0 12px 40px rgba(62, 48, 30, 0.14), 0 2px 8px rgba(62, 48, 30, 0.08);

  --r-sm: 8px;  --r-md: 14px;  --r-lg: 22px;  --r-xl: 36px;  --r-pill: 999px;

  --f-display: "Amatic SC", "Caveat Brush", Impact, sans-serif;
  --f-script: "Caveat", "Dancing Script", cursive;
  --f-body: "Cormorant Garamond", Georgia, serif;
  --f-ui: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container-max: 1280px;
  --gutter: clamp(20px, 5vw, 90px);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── Watercolor wash backgrounds (pure CSS, replaces SVG feTurbulence) ─── */
.wash { position: relative; isolation: isolate; }
.wash::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--paper);
}
.wash::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  opacity: 0.85;
  mix-blend-mode: multiply;
  filter: blur(0.5px);
}
.wash-sun::after {
  background:
    radial-gradient(55% 50% at 30% 35%, rgba(245,197,66,.55) 0%, transparent 70%),
    radial-gradient(50% 48% at 75% 20%, rgba(255,232,163,.55) 0%, transparent 72%),
    radial-gradient(60% 55% at 65% 85%, rgba(253,244,217,.75) 0%, transparent 75%);
}
.wash-rose::after {
  background:
    radial-gradient(55% 50% at 30% 35%, rgba(232,143,160,.50) 0%, transparent 70%),
    radial-gradient(50% 48% at 75% 20%, rgba(248,213,222,.55) 0%, transparent 72%),
    radial-gradient(60% 55% at 65% 85%, rgba(253,230,226,.70) 0%, transparent 75%);
}
.wash-peach::after {
  background:
    radial-gradient(55% 50% at 30% 35%, rgba(240,168,120,.45) 0%, transparent 70%),
    radial-gradient(50% 48% at 75% 20%, rgba(248,207,168,.50) 0%, transparent 72%),
    radial-gradient(60% 55% at 65% 85%, rgba(253,224,200,.70) 0%, transparent 75%);
}
.wash-sage::after {
  background:
    radial-gradient(55% 50% at 30% 35%, rgba(159,192,143,.45) 0%, transparent 70%),
    radial-gradient(50% 48% at 75% 20%, rgba(207,224,191,.55) 0%, transparent 72%),
    radial-gradient(60% 55% at 65% 85%, rgba(228,236,216,.75) 0%, transparent 75%);
}
.wash-sky::after {
  background:
    radial-gradient(55% 50% at 30% 35%, rgba(122,169,196,.40) 0%, transparent 70%),
    radial-gradient(50% 48% at 75% 20%, rgba(191,211,224,.55) 0%, transparent 72%),
    radial-gradient(60% 55% at 65% 85%, rgba(217,230,239,.70) 0%, transparent 75%);
}
.wash-mix::after {
  background:
    radial-gradient(45% 40% at 20% 30%, rgba(245,197,66,.45) 0%, transparent 70%),
    radial-gradient(40% 40% at 75% 25%, rgba(232,143,160,.40) 0%, transparent 72%),
    radial-gradient(50% 50% at 55% 80%, rgba(191,165,217,.35) 0%, transparent 75%),
    radial-gradient(45% 40% at 15% 85%, rgba(159,192,143,.40) 0%, transparent 75%);
}

/* ─── Layout primitives ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.stack > * + * { margin-top: var(--stack-gap, 1rem); }

.grid { display: grid; gap: var(--grid-gap, 24px); }

@media (min-width: 768px)  { .md-cols-2 { grid-template-columns: 1fr 1fr; } .md-cols-3 { grid-template-columns: 1fr 1fr 1fr; } .md-cols-4 { grid-template-columns: repeat(4,1fr); } .md-cols-5 { grid-template-columns: repeat(5,1fr); } }
@media (min-width: 1024px) { .lg-cols-2 { grid-template-columns: 1fr 1fr; } .lg-cols-3 { grid-template-columns: 1fr 1fr 1fr; } .lg-side { grid-template-columns: 1.3fr 1fr; } }

.eyebrow {
  font-family: var(--f-display);
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
}
.script {
  font-family: var(--f-script);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink-soft);
}
.display {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 0.9;
}
.label-ui {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--ink-muted);
  font-weight: 600;
  text-transform: uppercase;
}

/* ─── Buttons ─── */
.btn {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(30,58,122,0.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 0 rgba(30,58,122,0.25); }
.btn:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(30,58,122,0.25); }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-secondary { background: transparent; color: var(--ink); box-shadow: none; }
.btn-secondary:hover { background: rgba(30,58,122,.06); box-shadow: none; }
.btn-sun { background: var(--sun); color: var(--ink); }
.btn-ghost { background: rgba(30,58,122,.06); border-color: transparent; color: var(--ink); box-shadow: none; }
.btn-block { width: 100%; justify-content: center; }

/* ─── Chip ─── */
.chip {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: var(--r-pill);
  border: 1.5px solid var(--ink);
  font-family: var(--f-body); font-size: 15px;
  font-variant: small-caps; letter-spacing: 0.5px;
  background: transparent; color: var(--ink);
  text-decoration: none;
}
.chip.is-active { background: var(--ink); color: var(--paper); }

/* ─── Field ─── */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--f-display);
  font-size: 15px; letter-spacing: 2px; font-weight: 700;
  color: var(--ink); text-transform: uppercase;
  margin-bottom: 4px;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--f-body); font-size: 18px; color: var(--ink);
  padding: 10px 0;
  background: transparent; border: none;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0; outline: none;
}
.field textarea { resize: vertical; min-height: 80px; }
.field--admin label { font-family: var(--f-ui); font-size: 12px; font-weight: 500; color: var(--ink-muted); letter-spacing: .3px; text-transform: none; }
.field--admin input, .field--admin textarea, .field--admin select {
  font-family: var(--f-ui); font-size: 14px; padding: 9px 12px;
  background: var(--paper); border: 1px solid var(--rule); border-radius: 8px;
}

/* ─── Header / nav ─── */
.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(8px);
}
.site-header .wash-inner { padding: 16px 0; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand .wordmark { font-family: var(--f-script); font-size: 36px; line-height: 1; font-weight: 500; }
.nav-links { display: none; gap: 26px; align-items: center; list-style: none; padding: 0; margin: 0; }
.nav-links a {
  font-family: var(--f-display); font-size: 16px; letter-spacing: 2px;
  color: var(--ink); font-weight: 700; text-decoration: none;
  padding-bottom: 2px; border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.is-active { border-bottom-color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  font-family: var(--f-ui); font-size: 12px; color: var(--ink-muted);
  background: transparent; border: none; cursor: pointer; padding: 4px 0;
  letter-spacing: .5px;
  display: inline-flex; align-items: center; gap: 4px;
}
.lang-switch:hover { color: var(--ink); }
.lang-menu {
  position: absolute; margin-top: 8px;
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 6px 0; list-style: none; min-width: 140px;
  display: none; z-index: 40;
}
.lang-menu.is-open { display: block; }
.lang-menu .lang-option {
  display: block; width: 100%; padding: 8px 16px; text-align: left;
  font-family: var(--f-ui); font-size: 14px; color: var(--ink);
  text-decoration: none;
}
.lang-menu .lang-option:hover { background: var(--paper-warm); }
.lang-menu .lang-option.is-current { font-weight: 600; }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-pill); border: 1.5px solid var(--ink);
  background: transparent; cursor: pointer; padding: 0;
}
.menu-toggle svg { width: 20px; height: 20px; }

.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw);
  background: var(--paper); z-index: 60;
  transform: translateX(100%); transition: transform .28s ease;
  display: flex; flex-direction: column;
  padding: 72px 28px 28px;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--f-display); font-size: 22px; letter-spacing: 2px;
  color: var(--ink); font-weight: 700; text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid var(--rule);
}
.mobile-nav .close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: var(--r-pill);
  border: 1.5px solid var(--ink); background: transparent; cursor: pointer;
}
.scrim {
  position: fixed; inset: 0; background: rgba(30,58,122,.35);
  z-index: 50; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.scrim.is-open { opacity: 1; pointer-events: auto; }

.open-day-btn { display: none; }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .open-day-btn { display: inline-flex; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 108px);
  overflow: hidden;
}
.hero__eyebrow { margin-bottom: 14px; }
.hero__display {
  font-size: clamp(56px, 13vw, 132px);
  margin: 0;
}
.hero__script {
  font-family: var(--f-script);
  font-size: clamp(30px, 6vw, 58px);
  color: var(--ink);
  margin-top: 6px;
  line-height: 1;
}
.hero__lede {
  font-size: clamp(17px, 2.2vw, 22px);
  max-width: 580px;
  margin-top: 24px;
  line-height: 1.55;
}
.hero__cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero__star {
  position: absolute; pointer-events: none;
}
.hero__star--1 { top: 8%; right: 8%; }
.hero__star--2 { top: 32%; right: 24%; }
.hero__star--3 { bottom: 14%; left: 6%; }
@media (max-width: 640px) {
  .hero__star--1 { top: 4%; right: 6%; }
  .hero__star--2 { display: none; }
  .hero__star--3 { bottom: 5%; left: 4%; }
}

/* ─── Section headings ─── */
.sh-center { text-align: center; margin-bottom: 36px; }
.sh-script { font-family: var(--f-script); font-size: clamp(22px, 3vw, 32px); color: var(--ink-soft); }
.sh-display { font-family: var(--f-display); font-size: clamp(34px, 6vw, 56px); color: var(--ink); font-weight: 700; letter-spacing: 1.5px; margin: 6px 0 0; }
.sh-rule { display: inline-flex; align-items: center; gap: 12px; margin-top: 12px; }
.sh-rule .line { width: 60px; height: 1px; background: var(--ink); }

/* ─── Pillar cards ─── */
.pillar {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  min-height: 300px; border: 1px solid var(--rule);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 18px;
}
.pillar__kicker { font-family: var(--f-script); font-size: 32px; color: var(--ink); line-height: 1; }
.pillar__title { font-family: var(--f-display); font-size: 26px; color: var(--ink); letter-spacing: 1px; font-weight: 700; margin-top: 4px; line-height: 1.05; }
.pillar__body { font-family: var(--f-body); font-size: 16px; color: var(--ink); line-height: 1.55; }

/* ─── Event card ─── */
.event-card {
  background: var(--paper); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--rule); display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.event-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.event-card__media { position: relative; min-height: 110px; }
.event-card__date {
  position: absolute; bottom: 10px; left: 16px;
}
.event-card__date .d { font-family: var(--f-display); font-size: 24px; letter-spacing: 1.5px; color: var(--ink); font-weight: 700; line-height: 1; }
.event-card__date .t { font-family: var(--f-ui); font-size: 11px; color: var(--ink); letter-spacing: 1px; }
.event-card__star { position: absolute; top: 12px; right: 12px; }
.event-card__body { padding: 14px 16px; }
.event-card__kind { font-family: var(--f-ui); font-size: 10px; letter-spacing: 2px; color: var(--ink-muted); font-weight: 600; }
.event-card__title { font-family: var(--f-display); font-size: 22px; color: var(--ink); letter-spacing: 1px; font-weight: 700; margin: 4px 0 14px; line-height: 1; }
.event-card__rsvp { font-family: var(--f-display); font-size: 11px; letter-spacing: 2px; color: var(--ink); font-weight: 700; }

/* ─── Stat card ─── */
.stat {
  border-radius: var(--r-lg); padding: 22px; background: var(--paper-warm);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column; justify-content: space-between; gap: 12px;
  min-height: 160px;
}
.stat__big { font-family: var(--f-display); font-size: 72px; line-height: 0.85; font-weight: 700; color: var(--ink); }
.stat__small { font-family: var(--f-display); font-size: 16px; letter-spacing: 2px; color: var(--ink); font-weight: 700; text-transform: uppercase; }
.stat__foot { font-family: var(--f-body); font-size: 12px; font-style: italic; color: var(--ink-muted); }

/* ─── Quote card ─── */
.quote {
  border-radius: var(--r-lg); padding: 28px; min-height: 160px;
  position: relative; overflow: hidden;
}
.quote__text { font-family: var(--f-script); font-size: clamp(32px, 5vw, 58px); color: var(--ink); line-height: 0.95; }
.quote__attr { font-family: var(--f-body); font-size: 14px; font-style: italic; color: var(--ink); margin-top: 10px; }

/* ─── Info chip row ─── */
.info-row { display: flex; flex-wrap: wrap; gap: 20px 32px; margin-top: 28px; }
.info-row__label { font-family: var(--f-ui); font-size: 10px; letter-spacing: 2px; color: var(--ink-muted); font-weight: 600; }
.info-row__value { font-family: var(--f-body); font-size: 16px; color: var(--ink); font-variant: small-caps; letter-spacing: 0.5px; }

/* ─── Footer ─── */
.site-footer {
  position: relative; margin-top: 56px; padding-top: 40px; padding-bottom: 32px;
  overflow: hidden;
}
.footer-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 768px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-col h4 { font-family: var(--f-display); font-size: 14px; letter-spacing: 2px; color: var(--ink); font-weight: 700; margin: 0 0 10px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { font-family: var(--f-body); font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.footer-col a { color: var(--ink); text-decoration: none; }
.footer-col a:hover { text-decoration: underline; text-decoration-style: wavy; text-decoration-color: var(--sun); text-underline-offset: 4px; }
.footer-bottom {
  margin-top: 32px; padding-top: 16px; border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--f-ui); font-size: 11px; color: var(--ink-muted);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom .cura { font-family: var(--f-script); font-size: 18px; color: var(--ink); }

/* ─── Timeline ─── */
.timeline { margin-top: 14px; }
.timeline__row { display: flex; gap: 14px; }
.timeline__dot-col { display: flex; flex-direction: column; align-items: center; }
.timeline__dot {
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--paper); border: 2px solid var(--ink);
}
.timeline__dot.is-done { background: var(--ink); }
.timeline__line { flex: 1; width: 2px; background: var(--rule); min-height: 18px; }
.timeline__content { padding-bottom: 18px; }
.timeline__date { font-family: var(--f-display); font-size: 14px; letter-spacing: 2px; color: var(--ink); font-weight: 700; text-transform: uppercase; }
.timeline__title { font-family: var(--f-body); font-size: 17px; color: var(--ink); font-variant: small-caps; }
.timeline__sub { font-family: var(--f-body); font-size: 13px; color: var(--ink-muted); font-style: italic; }

/* ─── Rhythm grid (schedule) ─── */
.rhythm { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.rhythm__cell {
  background: var(--paper); border-radius: var(--r-md); padding: 18px;
  border: 1px solid var(--rule);
}
.rhythm__time { font-family: var(--f-display); font-size: 22px; letter-spacing: 1px; color: var(--ink); font-weight: 700; }
.rhythm__title { font-family: var(--f-body); font-size: 16px; color: var(--ink); font-variant: small-caps; margin-top: 4px; }
.rhythm__sub { font-family: var(--f-body); font-size: 13px; color: var(--ink-muted); font-style: italic; margin-top: 4px; }

/* ─── Badge / callout ─── */
.ink-badge {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  font-family: var(--f-display); font-size: 13px; letter-spacing: 3px; font-weight: 700;
}
.callout {
  padding: 16px; border-radius: var(--r-md);
  background: rgba(255,251,242,0.85);
  border: 1px dashed var(--ink);
  display: flex; gap: 12px; align-items: flex-start;
}
.callout__body { font-family: var(--f-body); font-size: 15px; color: var(--ink); font-style: italic; line-height: 1.5; }

/* ─── Teacher card ─── */
.teacher {
  border-radius: var(--r-lg); padding: 22px; background: var(--paper);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 14px;
}
.teacher__row { display: flex; gap: 14px; align-items: center; }
.teacher__avatar {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--paper-rose); border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-script); font-size: 28px; color: var(--ink);
  flex-shrink: 0;
}
.teacher__name { font-family: var(--f-display); font-size: 22px; color: var(--ink); letter-spacing: 1px; font-weight: 700; line-height: 1.1; }
.teacher__role { font-family: var(--f-script); font-size: 20px; color: var(--ink-soft); }
.teacher__quote { font-family: var(--f-body); font-size: 15px; color: var(--ink); font-style: italic; line-height: 1.55; }
.teacher__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.teacher__tag { font-family: var(--f-ui); font-size: 11px; padding: 3px 10px; border-radius: 999px; background: var(--paper-sage); color: var(--ink); }

/* ─── Diary / news card ─── */
.news {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--rule);
  background: var(--paper); display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
}
.news__media {
  min-height: 160px;
  background: repeating-linear-gradient(135deg, var(--paper-warm) 0 14px, var(--paper-rose) 14px 28px, var(--paper-sky) 28px 42px, var(--paper-sage) 42px 56px);
  display: flex; align-items: center; justify-content: center;
}
.news__media--img { aspect-ratio: 16 / 10; min-height: 0; background: none; overflow: hidden; }
.news__media--img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news__tag { font-family: var(--f-ui); font-size: 11px; letter-spacing: 2px; color: var(--ink-muted); font-weight: 600; text-transform: uppercase; }
.news__title { font-family: var(--f-display); font-size: 26px; color: var(--ink); letter-spacing: 1px; font-weight: 700; margin: 8px 0 0; line-height: 1.05; }
.news__body { font-family: var(--f-body); font-size: 15px; color: var(--ink); line-height: 1.55; margin-top: 10px; }
.news__sig { font-family: var(--f-script); font-size: 18px; color: var(--ink-soft); margin-top: 10px; }
.news__content { padding: 18px; }

/* ─── Avatars row ─── */
.avatars { display: flex; align-items: center; margin-top: 10px; }
.avatars__item {
  width: 32px; height: 32px; border-radius: 999px;
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-ui); font-size: 10px; font-weight: 600; color: var(--ink);
  margin-left: -8px;
}
.avatars__item:first-child { margin-left: 0; }

/* ─── Utility ─── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hide-md { display: initial; }
@media (min-width: 768px) { .hide-md { display: none; } }
.only-md { display: none; }
@media (min-width: 768px) { .only-md { display: initial; } }

/* Page heading */
.page-head {
  position: relative; padding: clamp(48px, 7vw, 80px) 0 clamp(40px, 5vw, 60px);
  overflow: hidden;
}
.page-head__script { font-family: var(--f-script); font-size: clamp(28px, 4vw, 36px); color: var(--ink-soft); }
.page-head__display { font-family: var(--f-display); font-size: clamp(52px, 11vw, 108px); color: var(--ink); letter-spacing: 2px; line-height: 0.95; font-weight: 700; margin: 4px 0 0; }

/* Prose */
.prose { font-family: var(--f-body); font-size: 19px; color: var(--ink); line-height: 1.65; }
.prose .dropcap {
  font-family: var(--f-display); font-size: 56px; float: left;
  line-height: 0.85; margin: 4px 10px 0 0; font-weight: 700;
}
.prose p + p { margin-top: 18px; }
.prose em, .prose i { font-style: italic; }

/* Section band with wash */
.band { position: relative; padding: clamp(48px, 7vw, 80px) 0; overflow: hidden; }
.band-inner { position: relative; z-index: 1; }

/* Program list (event detail agenda) */
.program__row {
  display: grid; gap: 8px 24px;
  grid-template-columns: 1fr;
  padding: 20px 0; border-top: 1px solid var(--rule);
}
@media (min-width: 640px) { .program__row { grid-template-columns: 160px 1fr; } }
.program__time { font-family: var(--f-display); font-size: 18px; letter-spacing: 1px; color: var(--ink); font-weight: 700; }
.program__title { font-family: var(--f-body); font-size: 19px; color: var(--ink); font-variant: small-caps; letter-spacing: 0.5px; }
.program__sub { font-family: var(--f-body); font-size: 15px; color: var(--ink-muted); font-style: italic; margin-top: 4px; line-height: 1.5; }

/* Sticky RSVP */
.rsvp-card {
  padding: 24px; border-radius: var(--r-lg);
  background: var(--paper-warm); border: 1px solid var(--rule);
}
@media (min-width: 1024px) {
  .rsvp-card.is-sticky { position: sticky; top: 96px; }
}

/* Photo placeholder rounded block */
.photo {
  border-radius: var(--r-xl); overflow: hidden;
  background: repeating-linear-gradient(135deg, var(--paper-warm) 0 14px, var(--paper-rose) 14px 28px, var(--paper-sky) 28px 42px, var(--paper-sage) 42px 56px);
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
  border: 1px dashed var(--rule);
}
.photo__label {
  background: rgba(255,251,242,0.85);
  padding: 6px 14px; border-radius: 999px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; color: var(--ink); letter-spacing: 0.4px; text-transform: uppercase;
}
.photo--img { background: none; border: none; min-height: 0; aspect-ratio: 1 / 1; padding: 0; }
.photo--img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Reveal hidden content on narrow screens */
@media (max-width: 768px) {
  .hero__lede { font-size: 17px; }
  .program__row { padding: 16px 0; }
}

/* ─── Gallery ─── */
.gallery {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .gallery { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.gallery__item {
  position: relative; padding: 10px; margin: 0;
  border-radius: var(--r-lg); border: 1px solid var(--rule);
  background: var(--paper); cursor: zoom-in;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.gallery__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.gallery__item:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.gallery__item img {
  display: block; width: 100%; aspect-ratio: 4 / 5;
  object-fit: cover; border-radius: calc(var(--r-lg) - 6px);
  background: var(--paper-warm);
}
.gallery__item:nth-child(3n) img { aspect-ratio: 1 / 1; }
.gallery__item:nth-child(4n) img { aspect-ratio: 5 / 4; }
.gallery__star {
  position: absolute; top: 14px; right: 14px; pointer-events: none;
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(30, 58, 122, 0.86);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox[hidden] { display: none; }
.lightbox__frame {
  max-width: min(1100px, 100%); max-height: 100%;
  background: var(--paper); border-radius: var(--r-lg);
  padding: 12px; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-lg);
}
.lightbox__frame img {
  max-width: 100%; max-height: calc(100vh - 160px);
  object-fit: contain; border-radius: calc(var(--r-lg) - 6px);
  background: var(--paper-warm);
}
.lightbox__frame figcaption {
  font-family: var(--f-script); font-size: 20px; color: var(--ink-soft);
  text-align: right; padding: 0 10px 4px;
}
.lightbox__close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: var(--r-pill);
  border: 1.5px solid var(--paper); background: transparent;
  color: var(--paper); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.lightbox__close:hover { background: rgba(255, 251, 242, 0.15); }

