/* =========================================================
   District 11 - Area 27 Louisiana AA
   Visual language follows aa-louisiana.org
   ========================================================= */

:root {
  --page-bg: #ffffff;
  --section-bg: #ffffff;
  --cream: #F4EDDF;
  --cream-deep: #EBE0C7;
  --soft-bg: #F4EDDF;
  --text: #4a4a4a;
  --heading: #2a2a2a;
  --muted: #6e6e6e;
  --accent: #B89968;       /* warm gold/beige */
  --accent-light: #D4B98E;
  --accent-dark: #8B6F3F;
  --link-hover: #8B6F3F;
  --border: #e2e2e2;
  --border-warm: #d8c9a8;
  --table-head: #B89968;
  --row-alt: #FAF5E9;
  --charcoal: #2B2B2B;
  --charcoal-mid: #3D3D3D;
  --footer-bg: #2B2B2B;
  --footer-text: #cccccc;
  --max-width: 1080px;
  --gutter: 24px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover { color: var(--link-hover); text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--heading);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 .6em;
}
h1 { font-size: 36px; font-weight: 500; }
h2 { font-size: 26px; font-weight: 500; }
h3 { font-size: 20px; font-weight: 500; }
h4 { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-dark); }
p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ================= Header ================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--heading);
}
.brand-mark {
  width: 52px;
  height: 52px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 13px;
  text-align: center;
  line-height: 1.05;
  background: #fff;
}
.brand-title { font-size: 17px; font-weight: 600; color: var(--heading); line-height: 1.15; }
.brand-sub { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }

.nav-toggle { display: none; }
.primary-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.primary-nav a {
  color: #555;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 10px 14px;
  border-radius: 3px;
}
.primary-nav a:hover { color: var(--accent-dark); background: rgba(184,153,104,0.10); text-decoration: none; }
.primary-nav a.active { color: var(--accent-dark); }

/* ================= Hero ================= */
.hero {
  background: var(--charcoal);
  color: #fff;
  padding: 88px 0 96px;
  text-align: center;
  border-bottom: 4px solid var(--accent);
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184,153,104,0.16), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(184,153,104,0.12), transparent 60%);
  pointer-events: none;
}
.hero > .container { position: relative; }
.hero h1 {
  color: #fff;
  font-size: 40px;
  margin: 12px 0 14px;
  font-weight: 500;
  letter-spacing: .01em;
}
.hero .lede {
  color: rgba(255,255,255,.88);
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 26px;
}
.hero .meta {
  display: inline-block;
  background: var(--accent);
  border: 1px solid var(--accent-light);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}

/* ================= Section ================= */
section.section {
  padding: 60px 0;
  background: #ffffff;
}
section.section.cream,
section.section.alt {
  background: var(--cream);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}
section.section.gold {
  background: var(--accent);
  color: #fff;
  border-top: 1px solid var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
}
section.section.gold h1,
section.section.gold h2,
section.section.gold h3 { color: #fff; }
section.section.gold h4 { color: rgba(255,255,255,.85); }
section.section.gold p,
section.section.gold .section-intro { color: rgba(255,255,255,.95); }
section.section.gold a:not(.btn) { color: #fff; text-decoration: underline; }
section.section.gold a:not(.btn):hover { color: var(--cream); }
section.section.gold .btn {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
}
section.section.gold .btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
section.section.charcoal {
  background: var(--charcoal);
  color: #fff;
}
section.section.charcoal h1,
section.section.charcoal h2,
section.section.charcoal h3 { color: #fff; }
section.section.charcoal h4 { color: var(--accent-light); }
section.section.charcoal p,
section.section.charcoal .section-intro { color: rgba(255,255,255,.85); }
.section h2 { text-align: left; }
.section .section-intro { max-width: 760px; color: var(--text); }

/* Two-column grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--border-warm);
  border-radius: 4px;
  padding: 26px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: 0 8px 22px rgba(139,111,63,.12); transform: translateY(-2px); border-color: var(--accent-light); }
.card h3 { margin-top: 0; }
.card .card-foot { margin-top: 14px; }
section.section.gold .card { background: #fff; color: var(--text); }
section.section.gold .card h3 { color: var(--heading); }
section.section.gold .card h4 { color: var(--accent-dark); }
section.section.gold .card p { color: var(--text); }
section.section.gold .card a:not(.btn) { color: var(--accent-dark); text-decoration: none; }
section.section.gold .card a:not(.btn):hover { color: var(--accent); text-decoration: underline; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 3px;
  border: 2px solid var(--accent);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  text-decoration: none;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; text-decoration: none; }
.btn.btn-light {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
}
.btn.btn-light:hover { background: transparent; color: #fff; border-color: #fff; }
.btn.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent);
}
.btn.btn-outline:hover { background: var(--accent); color: #fff; }

/* ================= Tables ================= */
.tbl-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 4px;
}
table.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
}
table.tbl thead th {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-right: 1px solid rgba(255,255,255,.18);
}
table.tbl thead th:last-child { border-right: none; }
table.tbl tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-warm);
  vertical-align: top;
}
table.tbl tbody tr:nth-child(even) td { background: var(--row-alt); }
table.tbl tbody tr:last-child td { border-bottom: none; }
table.tbl tbody tr:hover td { background: #F4EDDF; }

/* Groups table - 3 columns, dense meeting times */
table.tbl.tbl-groups td { font-size: 14px; line-height: 1.55; vertical-align: top; }
table.tbl.tbl-groups td:first-child { width: 24%; }
table.tbl.tbl-groups td:nth-child(2) { width: 40%; }
table.tbl.tbl-groups td:last-child { width: 36%; }
@media (max-width: 760px) {
  table.tbl.tbl-groups td { font-size: 13px; }
  table.tbl.tbl-groups td:first-child,
  table.tbl.tbl-groups td:nth-child(2),
  table.tbl.tbl-groups td:last-child { width: auto; }
}

/* Compact pill for table cells */
.pill {
  display: inline-block;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--accent-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 1px solid var(--border-warm);
}

/* ================= Callout ================= */
.callout {
  background: var(--cream);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
  margin: 24px 0;
  color: var(--text);
}
.callout strong { color: var(--heading); }
section.section.gold .callout {
  background: rgba(255,255,255,.14);
  border-left-color: #fff;
  color: #fff;
}
section.section.gold .callout strong { color: #fff; }
section.section.charcoal .callout {
  background: rgba(255,255,255,.06);
  border-left-color: var(--accent);
  color: #fff;
}
section.section.charcoal .callout strong { color: #fff; }
section.section.charcoal .callout a { color: var(--accent-light); }

/* ================= Page header (sub-pages) ================= */
.page-header {
  background: var(--charcoal);
  color: #fff;
  border-bottom: 4px solid var(--accent);
  padding: 64px 0 52px;
  text-align: center;
  position: relative;
}
.page-header:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 40%, rgba(184,153,104,0.14), transparent 55%),
    radial-gradient(circle at 75% 60%, rgba(184,153,104,0.10), transparent 60%);
  pointer-events: none;
}
.page-header > .container { position: relative; }
.page-header h1 { margin: 0 0 10px; color: #fff; }
.page-header .lede { color: rgba(255,255,255,.85); max-width: 720px; margin: 0 auto; font-size: 17px; }

/* ================= Newsletter archive ================= */
.archive-year { margin: 36px 0 0; }
.archive-year h3 {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: 3px;
}
.archive-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.archive-list li a {
  display: block;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border-warm);
  border-radius: 3px;
  color: var(--text);
  font-size: 14px;
}
.archive-list li a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  text-decoration: none;
}

/* ================= Footer ================= */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 56px 0 24px;
  margin-top: 0;
  font-size: 14px;
}
.site-footer a { color: #fff; transition: color .15s ease; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr 1.3fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer-col p { margin: 0 0 10px; line-height: 1.6; color: #b8b8b8; font-size: 13px; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { padding: 5px 0; color: #b8b8b8; font-size: 13px; line-height: 1.45; }
.footer-list li a.lead { display: block; }
.footer-list .agency-name { color: #b8b8b8; }
.footer-events { list-style: none; padding: 0; margin: 0; }
.footer-events li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #b8b8b8;
  font-size: 13px;
  line-height: 1.4;
}
.footer-events li:last-child { border-bottom: none; }
.footer-events .ev-title { color: #fff; font-weight: 500; display: block; margin-bottom: 2px; }
.footer-events .ev-meta { color: #909090; font-size: 12px; }
.footer-events .empty { color: #909090; font-style: italic; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
.footer-copy { font-size: 12px; color: #909090; }
.footer-copy a { color: #b8b8b8; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding-top: 40px; }
}

/* ================= Calendar (TEC Modern style) ================= */
.cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 0 28px;
}
.cal-title {
  font-size: 26px;
  font-weight: 500;
  color: var(--heading);
  margin: 0;
  min-width: 220px;
  text-align: center;
  letter-spacing: .01em;
}
.cal-nav { display: flex; gap: 4px; align-items: center; }
.cal-btn {
  background: transparent;
  border: none;
  color: var(--heading);
  width: 36px;
  height: 36px;
  border-radius: 3px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .15s ease, background .15s ease;
  font-family: inherit;
}
.cal-btn:hover { color: var(--accent); background: var(--soft-bg); }
.cal-btn.today {
  width: auto;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.cal-btn.today:hover { color: var(--accent); background: transparent; text-decoration: underline; }

.cal-grid {
  display: grid;
  /* minmax(0, 1fr) keeps long event text from stretching a column wider than its siblings */
  grid-template-columns: repeat(7, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--border-warm);
  border-bottom: none;
  border-right: none;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(43,43,43,0.08), 0 2px 6px rgba(43,43,43,0.05);
}
.cal-dow {
  background: #FAF5E9;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  padding: 14px 16px 10px;
  border-right: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  position: relative;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cal-day {
  background: #fff;
  min-width: 0;
  min-height: 140px;
  padding: 10px 10px 12px;
  border-right: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}
.cal-day.other-month { background: #fbfaf5; }
.cal-day.other-month .cal-daynum { color: #bcb59e; font-weight: 500; }
.cal-day.today { background: #FAF5E9; }
.cal-day.today .cal-daynum { color: var(--accent-dark); }

.cal-daynum {
  font-size: 22px;
  font-weight: 700;
  color: #3a3f4b;
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}

.cal-event {
  font-size: 11px;
  color: #555;
  line-height: 1.35;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cal-event:hover { color: var(--accent-dark); text-decoration: none; }
.cal-event:hover .cal-event-title { color: var(--accent-dark); }
a.cal-event { cursor: pointer; }
.cal-event-time { display: inline; font-size: 11px; color: var(--accent-dark); font-weight: 600; margin-right: 4px; }
.cal-event-title { display: inline; font-weight: 400; color: #555; }

/* Multi-day event bar -- bleeds into adjacent cell edges via negative margin */
.cal-event.multi {
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  margin: 0 -16px 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cal-event.multi .cal-event-title { color: #fff; }
.cal-event.multi:hover { background: var(--accent-dark); color: #fff; }
.cal-event.multi:hover .cal-event-title { color: #fff; text-decoration: none; }
.cal-event.multi.bar-start { margin-left: 0; border-radius: 999px 0 0 999px; padding-left: 14px; }
.cal-event.multi.bar-end { margin-right: 0; border-radius: 0 999px 999px 0; padding-right: 14px; }
.cal-event.multi.bar-only { margin: 0 0 2px; border-radius: 999px; padding: 5px 14px; }
.cal-event.multi.bar-middle .cal-event-title { visibility: hidden; }

/* Mobile representation: dot markers in the grid + agenda list below.
   Hidden on desktop; the mobile media blocks flip these on and the
   in-cell text events off. */
.cal-dots { display: none; gap: 3px; justify-content: center; flex-wrap: wrap; margin-top: 2px; }
.cal-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); flex: 0 0 auto; }
.cal-dot.multi { width: 14px; }
.cal-day.other-month .cal-dot { opacity: .35; }

.cal-agenda { display: none; margin-top: 22px; }
.cal-agenda-head {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin: 0 0 6px;
}
.agenda-item {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 12px 2px;
  border-bottom: 1px solid var(--border-warm);
  text-decoration: none;
}
.agenda-item:last-child { border-bottom: none; }
.agenda-date { flex: 0 0 82px; font-size: 12px; font-weight: 600; color: var(--accent-dark); }
.agenda-body { flex: 1; min-width: 0; }
.agenda-title { display: block; font-size: 14px; font-weight: 600; color: var(--heading); line-height: 1.35; }
a.agenda-item:hover .agenda-title { color: var(--accent-dark); text-decoration: underline; }
.agenda-meta { display: block; font-size: 12px; color: var(--muted); line-height: 1.45; margin-top: 2px; }
.cal-agenda-empty { font-size: 13px; color: var(--muted); padding: 10px 2px; margin: 0; }

/* (Calendar mobile rules consolidated in the bottom mobile blocks) */

/* ================= Utility ================= */
.text-center { text-align: center; }
.muted { color: var(--muted); }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* ================= Mobile (760px and below) ================= */
@media (max-width: 760px) {
  body { font-size: 15px; }

  /* Header */
  .site-header .container {
    min-height: 64px;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .brand-mark { width: 44px; height: 44px; font-size: 11px; border-width: 2px; }
  .brand-title { font-size: 15px; }
  .brand-sub { font-size: 10px; letter-spacing: .1em; }

  /* Hamburger */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--border);
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    border-radius: 3px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .nav-toggle:hover, .nav-toggle:focus { background: var(--cream); border-color: var(--accent); outline: none; }
  .nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--heading);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Collapsible nav */
  .primary-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
    padding-top: 6px;
    border-top: 1px solid var(--border);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 14px;
    border-radius: 0;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .primary-nav a:last-child { border-bottom: none; }

  /* Hero */
  .hero { padding: 56px 0 64px; border-bottom-width: 3px; }
  .hero h1 { font-size: 30px; line-height: 1.2; margin: 10px 0 12px; }
  .hero .lede { font-size: 15px; line-height: 1.55; }
  .hero .meta { font-size: 11px; letter-spacing: .1em; padding: 5px 12px; }

  /* Page header */
  .page-header { padding: 44px 0 32px; border-bottom-width: 3px; }
  .page-header h1 { font-size: 26px; }
  .page-header .lede { font-size: 14px; }

  /* Sections */
  section.section { padding: 40px 0; }

  /* Typography */
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  h4 { font-size: 13px; }

  /* Buttons - keep 44px tap target */
  .btn { padding: 12px 22px; min-height: 44px; }

  /* Tables */
  table.tbl thead th { padding: 10px 12px; font-size: 12px; letter-spacing: .04em; }
  table.tbl tbody td { padding: 10px 12px; font-size: 13px; }

  /* Cards */
  .card { padding: 20px; }
  .card h3 { font-size: 17px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 14px; }

  /* Callout */
  .callout { padding: 16px 18px; }

  /* Calendar: compact grid with dot markers; event details move to the
     agenda list below the grid */
  .cal-toolbar { gap: 8px; padding: 4px 0 16px; }
  .cal-title { font-size: 18px; min-width: 0; }
  .cal-btn { width: 40px; height: 40px; font-size: 20px; }
  .cal-day {
    min-height: 54px;
    padding: 8px 4px;
    gap: 0;
    align-items: center;
  }
  .cal-dow {
    font-size: 11px;
    padding: 8px 4px 6px;
    letter-spacing: 0;
    text-align: center;
  }
  .cal-daynum { font-size: 14px; margin: 0 0 5px; }
  .cal-day .cal-event { display: none; }
  .cal-dots { display: flex; }
  .cal-agenda { display: block; }

  /* Newsletter Current Issue: stack the cover + content */
  .current-issue-card { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; }
  .current-issue-card > div:first-child { width: 100px !important; height: 130px !important; }

  /* Footer */
  .site-footer { padding: 40px 0 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
  .footer-col h4 { font-size: 12px; }
  .footer-col p, .footer-list li, .footer-events li { font-size: 12px; }
  .footer-bottom { padding-top: 18px; }
}

/* ================= Phone (480px and below) ================= */
@media (max-width: 480px) {
  :root { --gutter: 18px; }

  .brand-mark { width: 40px; height: 40px; font-size: 10px; }
  .brand-title { font-size: 14px; }
  .brand-sub { font-size: 9px; letter-spacing: .08em; }

  .hero { padding: 44px 0 52px; }
  .hero h1 { font-size: 24px; }
  .hero .lede { font-size: 14px; }

  .page-header { padding: 36px 0 28px; }
  .page-header h1 { font-size: 22px; }
  .page-header .lede { font-size: 13px; }

  section.section { padding: 32px 0; }
  h1 { font-size: 22px; }
  h2 { font-size: 20px; }
  h3 { font-size: 17px; }

  .btn { padding: 11px 18px; font-size: 12px; letter-spacing: .08em; }

  /* Calendar gets a tiny bit tighter */
  .cal-day { min-height: 48px; padding: 6px 3px; }
  .cal-daynum { font-size: 13px; }
  .agenda-date { flex-basis: 72px; }

  /* Footer collapses to a single column */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Archive list tighter */
  .archive-list { grid-template-columns: 1fr; }
}
