/* ================================================================
   CCAV E-Bulletin — Styles
   Built on the Calvary Chapel Antelope Valley Design System
   ================================================================ */

/* ---- HATTEN display face ---------------------------------- */
@font-face {
  font-family: "Hatten";
  src: url("fonts/HATTEN.TTF") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* ---- Google Fonts ----------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@1,500;1,600&display=swap");

/* ---- Color Tokens ----------------------------------------- */
:root {
  --ink:          #0B0B0C;
  --ink-2:        #1C1C1F;
  --paper:        #F7F3EC;
  --paper-2:      #EEE8DC;
  --white:        #FFFFFF;

  --ochre:        #C8922E;
  --ochre-soft:   #E6C07A;
  --clay:         #A4521F;
  --sage:         #6B7A55;
  --sky:          #4E6A84;

  --fg-1:         var(--ink);
  --fg-2:         color-mix(in oklab, var(--ink) 72%, var(--paper));
  --fg-3:         color-mix(in oklab, var(--ink) 50%, var(--paper));
  --fg-inv:       var(--paper);
  --fg-accent:    var(--ochre);

  --bg-1:         var(--paper);
  --bg-2:         var(--paper-2);
  --bg-inv:       var(--ink);
  --bg-inv-2:     var(--ink-2);

  --rule:         color-mix(in oklab, var(--ink) 18%, transparent);
  --rule-strong:  color-mix(in oklab, var(--ink) 45%, transparent);
  --rule-inv:     color-mix(in oklab, var(--paper) 22%, transparent);

  --link:         var(--sky);
  --link-hover:   var(--clay);

  /* Type */
  --font-display:   "Hatten", "Oswald", "Arial Narrow", sans-serif;
  --font-sans:      "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-condensed: "Oswald", "Arial Narrow", sans-serif;
  --font-script:    "Cormorant Garamond", Georgia, serif;

  /* Radii */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11,11,12,0.08);
  --shadow-md: 0 4px 12px rgba(11,11,12,0.10), 0 1px 2px rgba(11,11,12,0.06);

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Motion */
  --ease-standard: cubic-bezier(.2,.7,.2,1);
  --ease-reverent: cubic-bezier(.25,.1,.25,1);
  --dur-fast: 120ms;
  --dur-base: 220ms;
  --dur-slow: 480ms;

  /* Layout */
  --max-width: 1100px;
  --toc-width: 230px;
}

/* ---- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg-1);
  color: var(--fg-1);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--link); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--link-hover); }
ul { list-style: none; }
p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

/* ---- Typography ------------------------------------------- */
h1, h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.04em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 {
  font-family: var(--font-condensed);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow {
  font-family: var(--font-condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--fg-2);
}

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-condensed);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--r-md);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition:
    background var(--dur-base) var(--ease-standard),
    color var(--dur-base) var(--ease-standard),
    transform var(--dur-fast);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--ink-2); color: var(--paper); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--paper); }

.btn--ochre {
  background: var(--ochre);
  color: var(--ink);
  border-color: var(--ochre);
}
.btn--ochre:hover { background: var(--clay); color: var(--white); border-color: var(--clay); }

.btn--ghost {
  background: transparent;
  color: var(--fg-2);
  border-color: var(--rule-strong);
}
.btn--ghost:hover { background: var(--paper-2); color: var(--ink); }

.btn--inv-outline {
  background: transparent;
  color: var(--paper);
  border-color: var(--rule-inv);
}
.btn--inv-outline:hover { background: rgba(247,243,236,0.12); color: var(--paper); }

/* ---- Pills / Badges --------------------------------------- */
.pill {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.pill--ink   { background: var(--ink); color: var(--paper); }
.pill--ochre { background: var(--ochre); color: var(--ink); }
.pill--sage  { background: var(--sage); color: var(--white); }
.pill--clay  { background: var(--clay); color: var(--white); }
.pill--outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }

/* ---- Rule + dove divider ---------------------------------- */
.rule-dove {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--fg-3);
  margin: var(--space-6) 0;
}
.rule-dove::before, .rule-dove::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.rule-dove img {
  height: 18px;
  opacity: 0.35;
  flex-shrink: 0;
}

/* ---- Site Header ------------------------------------------ */
.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--rule-inv);
}
.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}
.site-header__logo img {
  height: var(--logo-h, 38px);
  display: block;
  width: auto;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.site-header__nav a {
  font-family: var(--font-condensed);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: rgba(247,243,236,0.72);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-standard);
}
.site-header__nav a:hover { color: var(--paper); }

/* ---- Bulletin Hero ---------------------------------------- */
.bulletin-hero {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-9) var(--space-6) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--ochre);
}
.bulletin-hero__inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.bulletin-hero__date {
  font-family: var(--font-condensed);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ochre);
  font-weight: 600;
  margin-bottom: var(--space-4);
  display: block;
}
.bulletin-hero h1 {
  color: var(--paper);
  font-size: clamp(2.5rem, 7vw, 5rem);
  margin-bottom: var(--space-4);
}
.bulletin-hero__welcome {
  font-size: 16px;
  color: rgba(247,243,236,0.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.bulletin-hero__badge {
  margin: 0 auto var(--space-6);
  height: var(--badge-h, 100px);
  width: auto;
  max-width: none;
  display: block;
  opacity: 0.85;
}

/* ---- Layout: TOC + Content -------------------------------- */
.bulletin-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-7) var(--space-6);
  display: grid;
  grid-template-columns: var(--toc-width) 1fr;
  gap: var(--space-7);
  align-items: start;
}

/* ---- TOC -------------------------------------------------- */
.toc {
  position: sticky;
  top: calc(56px + var(--space-5));
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--space-5) var(--space-4);
  box-shadow: var(--shadow-sm);
}
.toc__title {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-3);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--rule);
}
.toc__list { display: flex; flex-direction: column; gap: 2px; }
.toc__link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 7px var(--space-3);
  border-radius: var(--r-md);
  font-family: var(--font-condensed);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--fg-3);
  text-decoration: none;
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard);
}
.toc__link:hover { background: var(--paper); color: var(--ink); text-decoration: none; }
.toc__link.is-active {
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  text-decoration: none;
}
.toc__link i[data-lucide] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke-width: 1.5;
}

/* Mobile TOC pill strip */
.toc-mobile {
  display: none;
  background: var(--ink);
  border-bottom: 1px solid var(--rule-inv);
  padding: 10px var(--space-5);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: sticky;
  top: 56px;
  z-index: 90;
}
.toc-mobile::-webkit-scrollbar { display: none; }
.toc-mobile__list {
  display: flex;
  gap: var(--space-2);
  white-space: nowrap;
}
.toc-mobile__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 12px 5px;
  border-radius: var(--r-pill);
  font-family: var(--font-condensed);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  background: rgba(247,243,236,0.08);
  border: 1px solid rgba(247,243,236,0.18);
  color: rgba(247,243,236,0.65);
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard);
}
.toc-mobile__link:hover,
.toc-mobile__link.is-active {
  background: var(--ochre);
  border-color: var(--ochre);
  color: var(--ink);
  text-decoration: none;
}
.toc-mobile__link i[data-lucide] {
  width: 12px;
  height: 12px;
  stroke-width: 2;
}

/* ---- Bulletin Sections ------------------------------------ */
.bulletin-sections { display: flex; flex-direction: column; gap: var(--space-6); }

.section-card {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: calc(56px + var(--space-5));
}

.section-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--rule);
}
.section-card__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ochre);
}
.section-card__icon i[data-lucide] { width: 20px; height: 20px; stroke-width: 1.5; }
.section-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* ---- Service Section -------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-4);
}
.service-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: var(--space-4) var(--space-5);
  text-align: center;
}
.service-item__label {
  font-family: var(--font-condensed);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-3);
  margin-bottom: var(--space-2);
  font-weight: 600;
}
.service-item__value {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.service-times {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}
.service-time-chip {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service-livestream { margin-top: var(--space-5); text-align: center; }

/* ---- Scripture Section ------------------------------------ */
.scripture-block {
  background: var(--paper);
  border-left: 3px solid var(--ochre);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--space-3) var(--space-5);
  margin-bottom: var(--space-5);
}
.scripture-verse {
  font-family: var(--font-condensed);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.scripture-reference {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--ochre);
  font-size: 26px;
  letter-spacing: 0.005em;
  display: block;
}
.sermon-info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}
.sermon-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-3);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.sermon-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.sermon-series {
  display: inline-block;
  background: var(--ochre);
  color: var(--ink);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ---- Announcements Section -------------------------------- */
.announcements-list { display: flex; flex-direction: column; gap: var(--space-4); }
.announcement-item {
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: var(--space-4) var(--space-5);
  background: var(--paper);
}
.announcement-item__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-2);
  flex-wrap: wrap;
}
.announcement-item__title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.announcement-item__date {
  font-family: var(--font-condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  white-space: nowrap;
  font-weight: 500;
}
.announcement-item__body {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---- Item images (announcements, save the dates, scripture) */
.item-image { overflow: hidden; }
.item-image--16x9 { position: relative; padding-bottom: 56.25%; }
.item-image--16x9 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.announcement-item .item-image--16x9 {
  margin: calc(-1 * var(--space-4)) calc(-1 * var(--space-5)) var(--space-4);
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.item-image--1x1 {
  position: relative;
  width: 160px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  align-self: flex-start;
}
.item-image--1x1::before { content: ''; display: block; padding-bottom: 100%; }
.item-image--1x1 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Events Section --------------------------------------- */
.events-list { display: flex; flex-direction: column; gap: var(--space-4); }
.event-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper);
}
.event-item__image { grid-column: 1 / -1; }
.event-item__date-block {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: var(--space-4) var(--space-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
.event-item__month {
  font-family: var(--font-condensed);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.65;
  font-weight: 600;
}
.event-item__day {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.event-item__content { padding: var(--space-4) var(--space-5); }
.event-item__title {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 4px;
}
.event-item__time {
  font-family: var(--font-condensed);
  font-size: 11px;
  color: var(--ochre);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}
.event-item__desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ---- CTA + QR Code ---------------------------------------- */
.item-ctas {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: flex-start;
}
.cta-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.cta-qr-wrap {
  display: none; /* hidden on mobile */
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.cta-qr-wrap img {
  width: 80px;
  height: 80px;
  display: block;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  max-width: none;
}
.cta-qr-label {
  font-family: var(--font-condensed);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  text-align: center;
}
@media (min-width: 769px) {
  .cta-qr-wrap { display: flex; }
}

/* ---- This Week at Calvary --------------------------------- */
.thisweek-groups { display: flex; flex-direction: column; gap: var(--space-5); }
.thisweek-day-group {}
.thisweek-day-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin: 0 0 var(--space-3) 0;
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--ochre);
}
.thisweek-list { display: flex; flex-direction: column; gap: var(--space-3); }
.thisweek-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 var(--space-4);
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--paper);
  align-items: start;
}
.thisweek-item__day-block {
  text-align: center;
  padding-top: 2px;
}
.thisweek-item__time {
  font-family: var(--font-condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ochre);
  font-weight: 600;
  display: block;
  margin-top: 0;
}
.thisweek-item__title {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 4px;
}
.thisweek-item__location {
  font-family: var(--font-condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-3);
  font-weight: 500;
  margin-bottom: var(--space-2);
}
.thisweek-item__desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ---- Giving Card ------------------------------------------ */
.giving-card {
  text-align: center;
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  padding: var(--space-7) var(--space-6) !important;
}
.giving-card__divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--rule-inv);
  margin-bottom: var(--space-5);
}
.giving-card__divider::before,
.giving-card__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule-inv);
}
.giving-card__divider img {
  height: 28px;
  width: auto;
  max-width: none;
  opacity: 0.45;
  flex-shrink: 0;
}
.giving-card__text {
  color: rgba(247,243,236,0.75);
  font-size: 16px;
  line-height: 1.65;
  max-width: 42ch;
  margin: 0 auto var(--space-5);
}

/* ---- Previous Bulletins ----------------------------------- */
.page-header {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  border-bottom: 3px solid var(--ochre);
}
.page-header h1 { color: var(--paper); margin-bottom: var(--space-2); }
.page-header p {
  color: rgba(247,243,236,0.65);
  font-size: 16px;
  margin: 0;
  max-width: none;
}
.previous-layout {
  max-width: 720px;
  margin: var(--space-7) auto;
  padding: 0 var(--space-6);
}
.bulletin-list { display: flex; flex-direction: column; gap: var(--space-3); }
.bulletin-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}
.bulletin-list-item:hover {
  border-color: var(--ochre);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--ink);
}
.bulletin-list-item__date {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.bulletin-list-item__theme {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 2px;
}
.bulletin-list-item__arrow {
  color: var(--ochre);
  flex-shrink: 0;
}
.bulletin-list-item__arrow i[data-lucide] { width: 18px; height: 18px; stroke-width: 1.5; }

/* ---- Site Footer ------------------------------------------ */
.site-footer {
  background: var(--ink);
  color: rgba(247,243,236,0.6);
  margin-top: var(--space-9);
  padding: var(--space-8) var(--space-6) var(--space-7);
  border-top: 1px solid var(--rule-inv);
}
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
}
.site-footer__logo { height: 36px; width: auto; opacity: 0.9; }
.site-footer__address {
  font-family: var(--font-condensed);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247,243,236,0.45);
  line-height: 1.6;
}
.site-footer__contact {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
}
.site-footer__contact a {
  color: rgba(247,243,236,0.6);
  text-decoration: none;
  transition: color var(--dur-base);
}
.site-footer__contact a:hover { color: var(--paper); }
.site-footer__copy {
  font-family: var(--font-condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.35;
  margin: 0;
}

/* ---- Responsive ------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --logo-h: var(--logo-h-mobile, 32px);
    --badge-h: var(--badge-h-mobile, 80px);
  }
  .bulletin-layout {
    grid-template-columns: 1fr;
    padding: var(--space-5) var(--space-4);
    gap: 0;
  }
  .toc { display: none; }
  .toc-mobile { display: block; }
  .bulletin-sections { margin-top: var(--space-5); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .section-card { padding: var(--space-5); }
  .bulletin-hero { padding: var(--space-8) var(--space-4) var(--space-7); }
  .site-header__inner { padding: 0 var(--space-4); }
  .site-header__nav .btn { padding: 7px 12px; font-size: 11px; }
}

@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; }
  .announcement-item__header { flex-direction: column; gap: 4px; }
  .bulletin-hero h1 { font-size: 2.2rem; }
  .item-image--1x1 { width: 100%; }
}

/* ---- Print ------------------------------------------------ */
@media print {
  .site-header, .toc, .toc-mobile, .site-footer, .btn { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .bulletin-layout { display: block; padding: 0; }
  .section-card { box-shadow: none; border: 1px solid #ccc; page-break-inside: avoid; margin-bottom: 1rem; }
  .bulletin-hero { background: var(--ink); -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
