/* ── City of Fairview, Missouri — Frontier Newspaper Edition ── */

/* ── Variables ── */
:root {
  /* City of Fairview palette: Nautical Blue / Red / New Century Silver / White */
  --walnut:    #002244;   /* Nautical Blue — primary */
  --walnut-dk: #001633;   /* deeper navy */
  --walnut-md: #1a3a5c;   /* mid navy for hover states */
  --brass:     #C60C30;   /* Red — accent */
  --brass-lt:  #e63950;   /* light red */
  --paper:     #eef0f2;   /* silver-tinted panel bg */
  --paper-dk:  #B0B7BC;   /* New Century Silver */
  --cream:     #FFFFFF;   /* White — main surface */
  --ink:       #001633;   /* body text — deep navy */
  --rust:      #C60C30;   /* legacy accent → red */
  --sage:      #6e7a86;   /* muted slate */
  --line:      #B0B7BC;   /* silver borders */
  --muted:     #6b7176;   /* mid silver-gray */
  --bg-alt:    #eef0f2;
  --bg-panel:  #FFFFFF;
  --card:      #FFFFFF;
  --text:      #001633;
  --white:     #FFFFFF;

  /* legacy aliases used by inline styles in some templates */
  --copper:    #C60C30;
  --coal:      #001633;
  --navy:      #002244;
  --navy-dk:   #001633;
  --navy-md:   #1a3a5c;
  --gold:      #C60C30;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Base ── */
body {
  font-family: 'Public Sans', system-ui, sans-serif;
  background: var(--cream);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.00  0 0 0 0 0.13  0 0 0 0 0.27  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

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

.skip-link {
  position: absolute; left: 16px; top: -44px;
  padding: 10px 14px; background: var(--walnut);
  color: var(--cream); z-index: 200;
  text-decoration: none; transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

/* ── Layout ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 740px) { .two-col { grid-template-columns: 1fr; } }

/* ── Top bar ── */
.top-bar {
  background: var(--walnut-dk);
  color: rgba(251, 246, 234, 0.55);
  font-size: 0.75rem;
  padding: 6px 0;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  letter-spacing: 0.02em;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.top-bar a { color: rgba(251, 246, 234, 0.7); text-decoration: none; }
.top-bar a:hover { color: var(--brass-lt); }

/* ── Navigation ── */
.site-nav {
  background: var(--walnut);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 4px double var(--brass);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1120px;
  margin: 0 auto;
  gap: 16px;
  position: relative;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  text-decoration: none;
}
.nav-seal {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--walnut-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px var(--walnut), inset 0 0 0 3px var(--brass-lt);
}
.nav-brand-text { line-height: 1.2; }
.nav-city {
  display: block;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.nav-state {
  display: block;
  font-size: 0.66rem;
  color: rgba(251, 246, 234, 0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 700;
}
.nav-links { display: flex; list-style: none; gap: 0; flex-wrap: wrap; }
.nav-links a {
  color: rgba(251, 246, 234, 0.78);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 16px 12px;
  display: block;
  border-bottom: 3px solid transparent;
  transition: color 0.1s, border-color 0.1s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--cream); border-bottom-color: rgba(184, 133, 42, 0.55); }
.nav-links a.active { color: var(--cream); border-bottom-color: var(--brass); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: rgba(251, 246, 234, 0.8);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--walnut);
    flex-direction: column;
    padding: 10px 20px 16px;
    border-top: 1px solid rgba(251, 246, 234, 0.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 9px 10px; border-bottom: 1px solid rgba(251, 246, 234, 0.06); }
  .nav-links a:last-child { border-bottom: none; }
}

/* ── Alert banners ── */
.alert-banner {
  display: flex;
  align-items: center;
  height: 40px;
  font-weight: 700;
  font-size: 0.88rem;
  overflow: hidden;
  border-bottom: 2px solid rgba(251, 246, 234, 0.18);
}
.alert-banner.red    { background: #C60C30; color: #FFFFFF; }
.alert-banner.orange { background: #8a0820; color: #FFFFFF; }
.alert-banner.yellow { background: #4a5258; color: #FFFFFF; }
.alert-banner.blue   { background: #002244; color: #FFFFFF; }
.alert-label {
  flex-shrink: 0;
  padding: 0 14px 0 16px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  border-right: 1px solid rgba(251, 246, 234, 0.32);
  white-space: nowrap;
  animation: alert-pulse 1s ease-in-out infinite;
}
@keyframes alert-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
.alert-ticker-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.alert-ticker-inner {
  display: inline-block;
  white-space: nowrap;
  animation: alert-ticker 22s linear infinite;
}
.alert-ticker-inner span { padding-right: 80px; }
@keyframes alert-ticker {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* Amber alert */
.amber-wrap  { background: #C60C30; color: #FFFFFF; border-bottom: 3px solid var(--walnut); }
.amber-inner { max-width: 1120px; margin: 0 auto; padding: 12px 20px; }
.amber-hed   { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-lt); margin-bottom: 3px; font-family: 'Public Sans', system-ui, sans-serif; }
.amber-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; font-family: 'Source Serif 4', Georgia, serif; }
.amber-desc  { font-size: 0.83rem; line-height: 1.5; }

/* ── Hero ── */
.hero-wrap {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 52px 0 44px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  border-left: 3px solid var(--brass);
  padding-left: 10px;
  margin-bottom: 18px;
  font-family: 'Public Sans', system-ui, sans-serif;
}
.hero-wrap h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  font-weight: 400;
  color: var(--walnut-dk);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.hero-wrap h1 span { font-style: italic; color: var(--walnut); }

.hero-copy {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 26px;
  opacity: 0.85;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  flex-wrap: wrap;
}
.stat-item {
  padding-right: 26px;
  margin-right: 26px;
  border-right: 1px solid var(--line);
  margin-bottom: 8px;
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--walnut-dk);
  line-height: 1.1;
}
.stat-item span { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.stat-item.weather strong { color: var(--rust); }

/* Hero side panels */
.hero-side { display: flex; flex-direction: column; gap: 14px; }
.side-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 4px double var(--brass);
  padding: 18px 20px;
}
.side-panel .kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 8px;
  display: block;
  font-family: 'Public Sans', system-ui, sans-serif;
}
.side-panel h3 { font-family: 'Source Serif 4', Georgia, serif; font-size: 1.05rem; color: var(--walnut-dk); margin-bottom: 6px; line-height: 1.3; font-weight: 700; }
.side-panel p  { font-size: 0.84rem; color: var(--ink); line-height: 1.55; opacity: 0.82; }
.panel-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--line); gap: 8px;
}
.panel-row:last-child { border-bottom: none; }
.panel-row strong { font-size: 0.84rem; color: var(--ink); font-weight: 700; display: block; }
.panel-row span   { font-size: 0.72rem; color: var(--muted); display: block; }
.panel-row a { font-size: 0.78rem; color: var(--walnut); text-decoration: none; font-weight: 700; white-space: nowrap; }
.panel-row a:hover { color: var(--brass); text-decoration: underline; }

/* ── Buttons ── */
.btn-copper {
  background: var(--walnut);
  color: var(--cream);
  padding: 11px 22px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid var(--walnut-dk);
  cursor: pointer;
  display: inline-block;
  font-family: 'Public Sans', system-ui, sans-serif;
  transition: background 0.1s, box-shadow 0.1s;
}
.btn-copper:hover { background: var(--walnut-md); box-shadow: 0 0 0 2px var(--brass) inset; }
.btn-copper:active { background: var(--walnut-dk); }

.btn-outline {
  background: transparent;
  color: var(--walnut);
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1.5px solid var(--walnut);
  display: inline-block;
  font-family: 'Public Sans', system-ui, sans-serif;
  transition: background 0.1s, color 0.1s;
}
.btn-outline:hover { background: var(--walnut); color: var(--cream); }
.btn-sm { font-size: 0.78rem; padding: 7px 16px; }

/* ── Quick strip ── */
.quick-strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.quick-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }

.task-tile {
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brass);
  padding: 18px;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: border-color 0.1s, transform 0.1s;
}
.task-tile:hover { border-color: var(--walnut-md); border-top-color: var(--walnut); transform: translateY(-1px); }
.task-tile strong { display: block; font-family: 'Source Serif 4', Georgia, serif; font-size: 1rem; font-weight: 700; color: var(--walnut-dk); margin-bottom: 5px; }
.task-tile p  { font-size: 0.82rem; color: var(--ink); opacity: 0.78; line-height: 1.55; margin-bottom: 8px; }
.tile-tag { font-size: 0.68rem; font-weight: 700; color: var(--brass); letter-spacing: 0.12em; text-transform: uppercase; font-family: 'Public Sans', system-ui, sans-serif; }

/* ── Content sections ── */
.section     { padding: 60px 0; background: var(--cream); }
.section-alt { padding: 60px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.content-section { padding: 60px 0; }

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut);
  border-left: 3px solid var(--brass);
  padding-left: 10px;
  margin-bottom: 10px;
  font-family: 'Public Sans', system-ui, sans-serif;
}
.section-label::before { content: "★ "; color: var(--brass); }
.hero-eyebrow::before  { content: "★ "; color: var(--brass); }
.side-panel .kicker::before { content: "★ "; color: var(--brass); }
.page-hero .eyebrow::before { content: "★ "; color: var(--brass-lt); }
.section-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--walnut-dk);
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.section-sub { font-size: 0.92rem; color: var(--muted); margin-bottom: 26px; font-family: 'Public Sans', system-ui, sans-serif; }

/* ── News cards ── */
.news-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--walnut);
  padding: 16px 20px;
  margin-bottom: 12px;
}
.news-card .date { font-size: 0.72rem; font-weight: 700; color: var(--brass); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; font-family: 'Public Sans', system-ui, sans-serif; }
.news-card h4 { font-family: 'Source Serif 4', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: var(--walnut-dk); margin-bottom: 8px; line-height: 1.3; }
.news-card p  { font-size: 0.85rem; color: var(--ink); opacity: 0.82; line-height: 1.6; }
.news-card:hover { border-left-color: var(--brass); }

/* ── Event rows ── */
.event-row {
  display: flex; gap: 14px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.event-row:last-child { border-bottom: none; }
.event-date-box {
  background: var(--walnut);
  color: var(--cream);
  padding: 8px 11px; text-align: center;
  flex-shrink: 0; min-width: 52px;
  border: 1px solid var(--brass);
}
.event-date-box .mon { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; display: block; color: var(--brass-lt); font-family: 'Public Sans', system-ui, sans-serif; }
.event-date-box .day { font-family: 'Source Serif 4', Georgia, serif; font-style: italic; font-size: 1.5rem; font-weight: 400; line-height: 1; display: block; margin-top: 2px; }
.event-info strong { font-family: 'Source Serif 4', Georgia, serif; font-size: 0.98rem; color: var(--walnut-dk); display: block; margin-bottom: 2px; font-weight: 700; }
.event-info span   { font-size: 0.78rem; color: var(--muted); }

/* ── Departments / Directory ── */
.dir-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 26px; }
.dir-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 3px solid var(--walnut);
  padding: 22px;
}
.dir-card:hover { border-top-color: var(--brass); }
.dir-card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--walnut-dk);
  padding-bottom: 8px; margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.dir-card p    { font-size: 0.83rem; color: var(--ink); opacity: 0.82; line-height: 1.6; margin-bottom: 10px; }
.dir-list      { list-style: none; }
.dir-list li   { font-size: 0.82rem; color: var(--muted); padding: 3px 0; }
.dir-list a    { color: var(--walnut); text-decoration: none; font-weight: 700; }
.dir-list a:hover { color: var(--brass); text-decoration: underline; }

/* ── Page hero (inner pages) ── */
.page-hero { background: var(--walnut); padding: 44px 0 36px; border-bottom: 4px double var(--brass); }
.page-hero .eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brass-lt);
  display: block; margin-bottom: 10px; font-family: 'Public Sans', system-ui, sans-serif;
}
.page-hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 400;
  color: var(--cream); line-height: 1.15;
  letter-spacing: -0.005em;
}
.page-hero p { color: rgba(251, 246, 234, 0.7); font-size: 0.95rem; margin-top: 10px; max-width: 580px; }

/* ── Content shell ── */
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 3px solid var(--walnut);
  padding: 24px 26px;
  margin-bottom: 16px;
}
.card h3 { font-family: 'Source Serif 4', Georgia, serif; font-size: 1.1rem; color: var(--walnut-dk); margin-bottom: 8px; font-weight: 700; }
.card p  { font-size: 0.9rem; color: var(--ink); opacity: 0.86; line-height: 1.7; }

/* ── Mayor portrait ── */
.mayor-grid { display: grid; grid-template-columns: 200px 1fr; gap: 36px; align-items: start; }
@media (max-width: 600px) { .mayor-grid { grid-template-columns: 1fr; } }
.mayor-portrait {
  width: 200px; height: 240px;
  background: var(--paper-dk);
  border: 2px solid var(--line);
  border-top: 3px solid var(--walnut);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; overflow: hidden;
  color: var(--brass);
  font-family: 'Source Serif 4', Georgia, serif;
}
.mayor-portrait img { width: 100%; height: 100%; object-fit: cover; }
.mayor-meta { margin-top: 10px; }
.mayor-meta dt { font-size: 0.7rem; font-weight: 700; color: var(--walnut); letter-spacing: 0.12em; text-transform: uppercase; font-family: 'Public Sans', system-ui, sans-serif; }
.mayor-meta dd { font-size: 0.9rem; color: var(--ink); margin-bottom: 10px; }

/* ── Council table ── */
.council-table { width: 100%; border-collapse: collapse; }
.council-table th {
  text-align: left; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 10px 12px;
  border-bottom: 2px solid var(--walnut);
  background: var(--paper);
  font-family: 'Public Sans', system-ui, sans-serif;
}
.council-table td { padding: 12px; border-bottom: 1px solid var(--line); font-size: 0.9rem; vertical-align: top; }
.council-table tr:last-child td { border-bottom: none; }
.council-table td strong { color: var(--walnut-dk); font-family: 'Source Serif 4', Georgia, serif; font-weight: 700; }
.council-table td a { color: var(--walnut); text-decoration: none; font-weight: 700; }
.council-table td a:hover { color: var(--brass); text-decoration: underline; }

/* ── Meeting items ── */
.meeting-item { display: flex; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.meeting-item:last-child { border-bottom: none; }
.meeting-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brass); flex-shrink: 0; box-shadow: 0 0 0 2px var(--walnut); }
.meeting-item strong { font-family: 'Source Serif 4', Georgia, serif; font-size: 0.95rem; font-weight: 700; color: var(--walnut-dk); display: block; }
.meeting-item span   { font-size: 0.8rem; color: var(--muted); }
.meeting-item a { font-size: 0.78rem; color: var(--walnut); text-decoration: none; font-weight: 700; margin-left: auto; white-space: nowrap; }
.meeting-item a:hover { color: var(--brass); text-decoration: underline; }

/* ── Notices ── */
.notice-card { border-left: 4px solid var(--rust); border-top: none; }
.notice-card .badge { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rust); margin-bottom: 5px; display: block; font-family: 'Public Sans', system-ui, sans-serif; }

/* ── Utilities (water/electric) ── */
.util-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .util-grid { grid-template-columns: 1fr; } }
.util-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 3px solid var(--sage);
  padding: 22px;
}
.util-card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--walnut-dk); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.util-card p { font-size: 0.86rem; color: var(--ink); opacity: 0.86; line-height: 1.65; }
.outage-active { background: #C60C30; border-color: #8a0820; border-top-color: var(--walnut); color: #FFFFFF; }
.outage-active h3 { color: var(--cream); }
.outage-active p  { color: rgba(251, 246, 234, 0.85); opacity: 1; }

/* ── Documents ── */
.doc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; background: var(--paper);
  border: 1px solid var(--line); margin-bottom: 6px;
  gap: 12px;
}
.doc-row span   { font-weight: 700; font-size: 0.88rem; color: var(--walnut-dk); font-family: 'Source Serif 4', Georgia, serif; }
.doc-row a.dl   { font-size: 0.74rem; font-weight: 700; color: var(--walnut); text-decoration: none; background: rgba(184, 133, 42, 0.18); padding: 5px 12px; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid var(--brass); }
.doc-row a.dl:hover { background: var(--walnut); color: var(--cream); }

/* ── About stats ── */
.about-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 24px; }
.about-stat {
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brass);
  padding: 22px; text-align: center;
}
.about-stat strong { display: block; font-family: 'Source Serif 4', Georgia, serif; font-style: italic; font-size: 1.7rem; font-weight: 400; color: var(--walnut); }
.about-stat span   { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }

/* ── Contact ── */
.contact-wrap { background: var(--walnut-dk); padding: 60px 0; border-top: 4px double var(--brass); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-family: 'Source Serif 4', Georgia, serif; font-size: 2rem; color: var(--cream); margin-bottom: 14px; font-weight: 400; }
.contact-info p  { color: rgba(251, 246, 234, 0.7); font-size: 0.94rem; margin-bottom: 22px; line-height: 1.65; }
.contact-detail  { display: flex; flex-direction: column; gap: 14px; }
.contact-row     { display: flex; gap: 12px; align-items: flex-start; }
.contact-icon    { width: 36px; height: 36px; background: rgba(251, 246, 234, 0.08); border: 1px solid rgba(184, 133, 42, 0.4); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; color: var(--brass-lt); }
.contact-row strong { display: block; color: var(--cream); font-size: 0.9rem; font-family: 'Source Serif 4', Georgia, serif; font-weight: 700; }
.contact-row span   { color: rgba(251, 246, 234, 0.5); font-size: 0.78rem; }
.contact-row a      { color: rgba(251, 246, 234, 0.85); text-decoration: none; }
.contact-row a:hover { color: var(--brass-lt); }

.contact-form-wrap { background: rgba(251, 246, 234, 0.05); border: 1px solid rgba(184, 133, 42, 0.25); padding: 30px; }
.contact-form-wrap h3 { font-family: 'Source Serif 4', Georgia, serif; color: var(--cream); font-size: 1.2rem; margin-bottom: 22px; font-weight: 700; }
.cf-group { margin-bottom: 14px; }
.cf-group label {
  display: block; font-size: 0.74rem; font-weight: 700;
  color: rgba(251, 246, 234, 0.6); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 5px;
  font-family: 'Public Sans', system-ui, sans-serif;
}
.cf-group input, .cf-group textarea {
  width: 100%; background: rgba(251, 246, 234, 0.06);
  border: 1px solid rgba(184, 133, 42, 0.32);
  padding: 10px 13px; color: var(--cream);
  font-family: 'Public Sans', system-ui, sans-serif;
  font-size: 0.88rem; outline: none; transition: border-color 0.1s;
}
.cf-group input:focus, .cf-group textarea:focus { border-color: var(--brass); }
.cf-group textarea { min-height: 100px; resize: vertical; }
#contact-status { margin-top: 8px; font-size: 0.82rem; min-height: 20px; }

/* ── Footer ── */
.site-footer {
  background: var(--walnut-dk);
  color: rgba(251, 246, 234, 0.55);
  padding: 44px 0 20px;
  border-top: 4px double var(--brass);
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-bottom: 30px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand strong { display: block; color: var(--cream); font-size: 1rem; margin-bottom: 8px; font-family: 'Source Serif 4', Georgia, serif; font-weight: 700; }
.footer-brand p { font-size: 0.8rem; line-height: 1.7; }
.footer-col h4  { color: rgba(251, 246, 234, 0.65); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px; font-family: 'Public Sans', system-ui, sans-serif; }
.footer-col h4::before { content: "★ "; color: var(--brass); }
.footer-col ul  { list-style: none; }
.footer-col li  { margin-bottom: 6px; }
.footer-col a   { color: rgba(251, 246, 234, 0.55); font-size: 0.82rem; text-decoration: none; }
.footer-col a:hover { color: var(--brass-lt); }
.footer-bottom {
  border-top: 1px solid rgba(184, 133, 42, 0.18);
  padding-top: 16px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 0.74rem;
}
.footer-bottom a { color: rgba(251, 246, 234, 0.36); text-decoration: none; }
.footer-bottom a:hover { color: var(--brass-lt); }

/* ── Admin bar ── */
.admin-bar { background: rgba(58, 36, 24, 0.1); border-top: 1px solid rgba(58, 36, 24, 0.16); padding: 5px 0; text-align: center; font-size: 0.74rem; }
.admin-bar a { color: var(--walnut); text-decoration: none; font-weight: 700; }

/* ── Focus rings ── */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

/* ── Utility classes ── */
.serif       { font-family: 'Source Serif 4', Georgia, serif; }
.text-copper { color: var(--brass); }
.mt4  { margin-top: 4px; }
.mt8  { margin-top: 8px; }
.mt16 { margin-top: 16px; }
.mt24 { margin-top: 24px; }
.empty-state { text-align: center; padding: 44px; color: var(--muted); font-size: 0.92rem; font-family: 'Source Serif 4', Georgia, serif; font-style: italic; }

/* ── Animations (none — instant load) ── */
.fade-up { opacity: 1; transform: none; }
.fade-up.visible { opacity: 1; transform: none; }
