/* ============================================================
   Website UI Kit — page-level + component styles
   Imports root design tokens from project's colors_and_type.css
   ============================================================ */
@import url("colors_and_type.css");

* { box-sizing: border-box; }

body {
  background: var(--paper-50);
  min-height: 100vh;
}

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

button { font-family: inherit; }
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--navy-700);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

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

/* ───────── Layout primitives ───────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-5);
}
.container.narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--s-9); }
.section.tight { padding-block: var(--s-7); }
.section.dark {
  background: var(--navy-900);
  color: var(--fg-on-dark);
}
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: var(--fg-on-dark); }
.section.dark a { color: var(--gold-300); }
.section.warm { background: var(--paper-100); }
.section.cream { background: var(--paper-50); }

.eyebrow { display: inline-block; margin-bottom: var(--s-3); }
.eyebrow.on-dark { color: var(--gold-300); }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 12px 22px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-body);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  line-height: 1.1;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--shadow-1);
}
.btn-primary:hover { background: var(--primary-hover); box-shadow: var(--shadow-2); }
.btn-primary:active { background: var(--primary-press); box-shadow: var(--shadow-1); }

.btn-accent {
  background: var(--accent);
  color: var(--paper-50);
  box-shadow: var(--shadow-1);
}
.btn-accent:hover { background: var(--accent-hover); box-shadow: var(--shadow-2); }

.btn-ghost {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--paper-100); border-color: var(--navy-700); color: var(--navy-800); }

.btn-ghost.on-dark {
  color: var(--paper-50);
  border-color: rgba(253,247,242,0.4);
}
.btn-ghost.on-dark:hover { background: rgba(253,247,242,0.08); border-color: var(--gold-300); color: var(--gold-300); }

.btn-sm { padding: 8px 14px; font-size: var(--fs-small); }
.btn-lg { padding: 16px 28px; font-size: 1.125rem; }

/* ───────── Nav ───────── */
.nav-wrap {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253, 247, 242, 0.97);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  height: var(--nav-h);
}
.nav-brand {
  display: flex; align-items: center; gap: var(--s-3);
  text-decoration: none; color: var(--fg);
}
.nav-brand .mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--navy-700);
  color: var(--paper-50);
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.nav-brand .wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  line-height: 1.05;
  white-space: nowrap;
}
.nav-brand .wordmark .sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 2px;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .nav-brand .wordmark { font-size: 0.95rem; }
  .nav-brand .wordmark .sub { display: none; }
  .nav-brand .mark { width: 36px; height: 36px; }
  .nav-cta { display: none; }
}
.nav-spacer { flex: 1; }
.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-link {
  position: relative;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-700);
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: 0;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.nav-link:hover { background: var(--paper-200); color: var(--ink-900); }
.nav-link.active { background: var(--navy-700); color: var(--paper-50); }
.nav-link.active:hover { background: var(--navy-800); color: var(--paper-50); }

.nav-cta { margin-left: var(--s-3); }

.nav-mobile-toggle { display: none; }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .nav-mobile-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: transparent; border: 1px solid var(--border-strong);
    border-radius: var(--r-md);
    color: var(--ink-900);
    cursor: pointer;
  }
  .nav-scrim {
    position: fixed; inset: 0;
    z-index: 70;
    background: rgba(8, 40, 60, 0.45);
    backdrop-filter: blur(2px);
  }
  .nav-drawer {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: var(--paper-50);
    padding: var(--s-5);
    display: flex; flex-direction: column; gap: var(--s-2);
    z-index: 71;
    overflow-y: auto;
    box-shadow: 0 12px 24px -8px rgba(8, 40, 60, 0.25);
    animation: drawerIn 200ms var(--ease);
  }
  @keyframes drawerIn {
    from { transform: translateY(-8px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .nav-drawer .nav-link {
    width: 100%; text-align: left;
    padding: var(--s-4);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--r-md);
  }
}

/* ───────── Hero ───────── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  color: var(--paper-50);
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-900);     /* fallback if photo doesn't load */
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  background-color: var(--navy-800);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 40, 60, 0.45) 0%, rgba(8, 40, 60, 0.55) 35%, rgba(8, 40, 60, 0.92) 100%);
  z-index: -1;
}
.hero-inner {
  padding-block: var(--s-9) var(--s-7);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--s-7);
}
.hero-text { min-width: 0; }
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s-5); }
}
.hero h1 {
  font-size: clamp(2.5rem, 4.5vw + 1rem, 4.75rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--paper-50);
  max-width: 22ch;
  margin-bottom: var(--s-5);
}
.hero h1 .h-gold { color: var(--gold-300); }
.hero .lede {
  font-family: var(--font-serif); font-style: italic;
  color: rgba(253,247,242,0.92);
  font-size: 1.35rem;
  max-width: 36ch;
  margin-bottom: var(--s-5);
}
.hero .hero-cta-row { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-4); }
.hero-eyebrow {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(253,247,242,0.14);
  border: 1px solid rgba(253,247,242,0.32);
  border-radius: var(--r-pill);
  color: var(--paper-50);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.hero-meta {
  display: flex; gap: var(--s-6); flex-wrap: wrap;
  margin-top: var(--s-6); padding-top: var(--s-5);
  border-top: 1px solid rgba(253,247,242,0.22);
  color: rgba(253,247,242,0.88);
}
.hero-meta dt {
  font-size: var(--fs-eyebrow); letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(253,247,242,0.62); font-weight: 600; margin-bottom: 4px;
}
.hero-meta dd { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; white-space: nowrap; }

/* Hero QR card — sits inline next to the hero headline */
.hero-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4);
  background: var(--paper-50);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-3);
  text-decoration: none;
  color: var(--ink-900);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  align-self: center;
  justify-self: end;
}
.hero-qr:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -8px rgba(8, 40, 60, 0.5); text-decoration: none; color: var(--ink-900); }
.hero-qr img { display: block; width: 200px; height: 200px; border-radius: var(--r-sm); }
.hero-qr-label { text-align: center; }

@media (max-width: 880px) {
  .hero-qr { flex-direction: row; gap: var(--s-3); justify-self: start; }
  .hero-qr img { width: 110px; height: 110px; }
  .hero-qr-label { text-align: left; }
}
@media (max-width: 500px) {
  .hero-qr img { width: 80px; height: 80px; }
  .hero-qr-label .eyebrow { font-size: 0.7rem; }
}

.page-hero {
  background: var(--navy-900);
  color: var(--fg-on-dark);
  padding-block: var(--s-8) var(--s-7);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  color: var(--paper-50);
  font-size: clamp(2.25rem, 3.5vw + 1rem, 3.75rem);
  letter-spacing: -0.03em;
  margin-bottom: var(--s-3);
}
.page-hero .lede {
  font-family: var(--font-serif); font-style: italic;
  color: var(--gold-300);
  font-size: 1.2rem;
  max-width: 50ch;
}
.page-hero .eyebrow { color: var(--gold-300); }

/* ───────── Info card ───────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-5);
  box-shadow: var(--shadow-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card.clickable {
  cursor: pointer; text-decoration: none; color: inherit; display: block;
}
.card.clickable:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.card.clickable:active { transform: translateY(0); box-shadow: var(--shadow-1); }
.packet-card { cursor: pointer; }
.packet-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: var(--gold-300); }
.packet-card:active { transform: translateY(0); box-shadow: var(--shadow-1); }
.packet-card:hover .packet-dl { text-decoration: underline; }
.card h3 { margin-top: 0; }
.card .icon {
  width: 44px; height: 44px;
  background: var(--paper-100);
  color: var(--navy-700);
  display: grid; place-items: center;
  border-radius: var(--r-md);
  margin-bottom: var(--s-3);
}

.card.dark {
  background: var(--navy-800); color: var(--fg-on-dark);
  border-color: var(--navy-600);
}
.card.dark .icon { background: var(--navy-700); color: var(--gold-300); }

/* ───────── Photo card ───────── */
.photo-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.photo-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-3); }
.photo-card .photo {
  aspect-ratio: 16 / 10;
  background-size: cover; background-position: center;
  border-bottom: 1px solid var(--border);
}
.photo-card .body { padding: var(--s-4) var(--s-5) var(--s-5); }
.photo-card h4 { margin: 0 0 4px; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.photo-card p { margin: 0; color: var(--fg-muted); font-size: var(--fs-small); }

/* ───────── Activity grid ───────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
@media (max-width: 860px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.activity {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-2);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.activity:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-2);
  border-color: var(--navy-300);
}
.activity .glyph {
  width: 40px; height: 40px;
  color: var(--navy-700);
  margin-bottom: var(--s-2);
}
.activity h4 {
  margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
}
.activity p { margin: 0; font-size: var(--fs-small); color: var(--fg-muted); }
.activity .tag {
  margin-top: auto; padding-top: var(--s-3);
  font-family: var(--font-mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold-700); font-weight: 500;
}

/* ───────── Ward table ───────── */
.ward-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  background: var(--surface);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.ward-table thead th {
  text-align: left;
  padding: var(--s-3) var(--s-4);
  background: var(--paper-100);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
}
.ward-table tbody td {
  padding: var(--s-3) var(--s-4);
  border-bottom: 1px solid var(--divider);
}
.ward-table tbody tr:last-child td { border-bottom: 0; }
.ward-table tbody tr:hover { background: var(--paper-50); }
.ward-table .ward { color: var(--ink-900); font-weight: 500; }
.ward-table .site {
  color: var(--navy-700); font-weight: 600;
}

/* ───────── Schedule ───────── */
.schedule {
  border-top: 1px solid var(--border);
}
.schedule-day {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--s-5);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--border);
}
.schedule-day h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.3rem;
  margin: 0;
  color: var(--navy-700);
}
.schedule-day .date {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 4px;
}
.schedule-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--s-4);
  padding: var(--s-2) 0;
  align-items: baseline;
}
.schedule-row + .schedule-row { border-top: 1px dashed var(--divider); }
.schedule-row .time {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--gold-700);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.schedule-row .what { font-size: var(--fs-body); }
.schedule-row .what .note {
  display: block; color: var(--fg-muted); font-size: var(--fs-small); margin-top: 2px;
}

@media (max-width: 720px) {
  .schedule-day { grid-template-columns: 1fr; gap: var(--s-3); }
  .schedule-row { grid-template-columns: 90px 1fr; gap: var(--s-3); }
}

/* ───────── FAQ ───────── */
.faq-list { display: flex; flex-direction: column; gap: var(--s-2); }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: var(--s-4) var(--s-5);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.075rem;
  color: var(--ink-900);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
}
.faq-q:hover { background: var(--paper-50); }
.faq-q .chev {
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  padding: 0 var(--s-5) var(--s-5);
  color: var(--ink-700);
  font-size: var(--fs-body);
}
.faq-a p { margin: 0 0 var(--s-3); }
.faq-a p:last-child { margin-bottom: 0; }

/* ───────── Forms ───────── */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s-4); }
.field label {
  font-family: var(--font-body); font-weight: 600; font-size: var(--fs-small); color: var(--ink-900);
}
.field .hint { font-size: 0.8rem; color: var(--fg-muted); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink-900);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(16, 60, 86, 0.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.checkbox-row {
  display: flex; align-items: flex-start; gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--paper-50);
  cursor: pointer;
}
.checkbox-row:hover { background: var(--paper-100); }
.checkbox-row input { margin-top: 4px; }
.checkbox-row .label-stack { display: flex; flex-direction: column; gap: 2px; }
.checkbox-row .label-stack .title { font-weight: 600; color: var(--ink-900); }
.checkbox-row .label-stack .hint { color: var(--fg-muted); font-size: var(--fs-small); }

/* ───────── Footer ───────── */
.footer {
  background: var(--navy-900);
  color: var(--fg-on-dark);
  padding-block: var(--s-8) var(--s-6);
}
.footer a { color: var(--gold-300); }
.footer .columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s-9);
}
@media (max-width: 720px) { .footer .columns { grid-template-columns: 1fr; gap: var(--s-5); } }
.footer h5 {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
  margin: 0 0 var(--s-3);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.footer .scripture {
  font-family: var(--font-serif); font-style: italic; color: var(--paper-100);
  font-size: 1.05rem; max-width: 28ch; line-height: 1.45;
}
.footer .footer-meta {
  margin-top: var(--s-7); padding-top: var(--s-5);
  border-top: 1px solid rgba(253,247,242,0.18);
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); flex-wrap: wrap;
  color: rgba(253,247,242,0.62);
  font-size: var(--fs-small);
}

/* ───────── Misc utility ───────── */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7); align-items: center; }
@media (max-width: 860px) { .split-2 { grid-template-columns: 1fr; gap: var(--s-5); } }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
@media (max-width: 860px) { .stat-row { grid-template-columns: 1fr 1fr; } }
.stat {
  padding: var(--s-5) 0;
}
.stat .n {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
  color: var(--navy-700);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat .l {
  display: block;
  margin-top: var(--s-2);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  font-weight: 600;
}
.section.dark .stat .n { color: var(--gold-300); }
.section.dark .stat .l { color: rgba(253,247,242,0.62); }

/* ───────── Countdown ───────── */
.cd {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s-3);
  font-feature-settings: "tnum";
  flex-wrap: wrap;
}
.cd-cell {
  display: flex; flex-direction: column; align-items: center;
  min-width: 110px;
}
.cd-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gold-300);
}
.cd-l {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(253,247,242,0.62);
  font-weight: 600;
  margin-top: var(--s-2);
}
.cd-sep {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: rgba(253,247,242,0.32);
  margin-bottom: 1.4em;
}
@media (max-width: 560px) {
  .cd-sep { display: none; }
  .cd-cell { min-width: 70px; }
}

.callout {
  border-left: 4px solid var(--gold-600);
  background: var(--paper-100);
  padding: var(--s-4) var(--s-5);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--fs-body);
  color: var(--ink-900);
}
.callout strong { color: var(--gold-700); }

.tag-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--paper-100); color: var(--navy-700);
  border: 1px solid var(--navy-300);
  padding: 4px 10px; border-radius: var(--r-pill);
  font-size: 0.8rem; font-weight: 600;
}
.tag-pill.gold { background: rgba(224, 160, 16, 0.12); color: var(--gold-800); border-color: rgba(224, 160, 16, 0.45); }
.tag-pill.navy { background: var(--navy-100); color: var(--navy-700); border-color: var(--navy-300); }

.divider-leaf {
  text-align: center; color: var(--navy-500);
  font-family: var(--font-display); letter-spacing: 0.4em;
  padding-block: var(--s-5);
}

/* ───────── Print: isolate the chosen sheet ───────── */
@media print {
  /* Hide the live app; only the cloned sheet in .print-holder prints. */
  body > #root { display: none !important; }
  body > *:not(.print-holder) { display: none !important; }
  .print-holder { display: block !important; }
  .print-holder .no-print { display: none !important; }
  .print-holder .card {
    box-shadow: none !important; border: none !important; padding: 0 !important;
  }
  @page { margin: 1.5cm; }
}
