/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --background:        hsl(210, 20%, 98%);
  --foreground:        hsl(215, 25%, 15%);
  --card:              hsl(0, 0%, 100%);
  --card-foreground:   hsl(215, 25%, 15%);
  --primary:           hsl(215, 60%, 28%);
  --primary-foreground:hsl(0, 0%, 100%);
  --secondary:         hsl(210, 15%, 93%);
  --secondary-foreground: hsl(215, 25%, 15%);
  --muted:             hsl(210, 15%, 95%);
  --muted-foreground:  hsl(215, 10%, 45%);
  --accent:            hsl(45, 80%, 50%);
  --accent-foreground: hsl(215, 25%, 15%);
  --border:            hsl(214, 20%, 88%);
  --ring:              hsl(215, 60%, 28%);
  --radius:            0.375rem;
  --civic-navy:        hsl(215, 60%, 28%);
  --civic-navy-light:  hsl(215, 45%, 40%);
  --civic-sky:         hsl(205, 75%, 48%);
  --civic-gold:        hsl(45, 80%, 50%);
  --civic-gold-light:  hsl(45, 80%, 95%);
  --civic-green:       hsl(155, 60%, 38%);
  --civic-green-light: hsl(155, 50%, 94%);
  --civic-alert:       hsl(30, 90%, 52%);
  --civic-alert-bg:    hsl(30, 90%, 97%);
}

/* ============================================================
   BASE RESET & GLOBAL
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  border-color: var(--border);
}
body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  margin: 0;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  padding: 0;
}
a { text-decoration: none; color: inherit; }
img { display: block; }

/* ============================================================
   UTILITY: is-hidden, container-civic, section-padding
   ============================================================ */
.is-hidden { display: none !important; }

.container-civic {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container-civic { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container-civic { padding-left: 2rem; padding-right: 2rem; }
}

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .section-padding { padding-top: 5rem; padding-bottom: 5rem; }
}
@media (min-width: 1024px) {
  .section-padding { padding-top: 6rem; padding-bottom: 6rem; }
}

.bg-card        { background-color: var(--card); }
.bg-muted       { background-color: var(--muted); }
.bg-background  { background-color: var(--background); }

.scroll-mt-20 { scroll-margin-top: 5rem; }
.scroll-mt-24 { scroll-margin-top: 6rem; }

/* ============================================================
   SECTION HEADINGS & INTROS
   ============================================================ */
.section-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.section-title--lg {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .section-title--lg { font-size: 1.875rem; }
}
.section-title--center { text-align: center; }

.section-intro {
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  max-width: 42rem;
}
.section-intro--center { text-align: center; margin-left: auto; margin-right: auto; }

.section-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.section-header-row .section-title { margin-bottom: 0; }

/* ============================================================
   ICON CIRCLE
   ============================================================ */
.icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle--sky {
  background-color: hsl(205 75% 48% / 0.1);
  color: var(--civic-sky);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  transition: filter 150ms cubic-bezier(0.4,0,0.2,1);
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-primary:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  transition: background-color 150ms cubic-bezier(0.4,0,0.2,1);
}
.btn-secondary:hover { background-color: hsl(210 15% 93% / 0.8); }
.btn-secondary:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn-xs {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

/* ============================================================
   STICKY NAV
   ============================================================ */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--primary);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav-brand {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.025em;
  color: var(--primary-foreground);
}
.nav-brand:hover { color: var(--primary-foreground); }

.nav-links-list {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .nav-links-list { display: flex; }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(255 255 255 / 0.85);
  border-radius: 0.375rem;
  transition: color 150ms, background-color 150ms;
}
.nav-link:hover {
  color: var(--primary-foreground);
  background-color: rgb(255 255 255 / 0.1);
}
.nav-link:focus-visible { outline: 2px solid var(--primary-foreground); outline-offset: 2px; }

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-radius: 0.375rem;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(1.1); }
.nav-cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--primary-foreground);
  border-radius: 0.375rem;
}
.nav-mobile-toggle:focus-visible { outline: 2px solid var(--primary-foreground); outline-offset: 2px; }
@media (min-width: 768px) {
  .nav-mobile-toggle { display: none; }
}

.nav-mobile-menu {
  background-color: var(--primary);
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-bottom: 1rem;
}
.nav-mobile-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.5rem;
}
.nav-link--mobile {
  width: 100%;
  text-align: left;
}
.nav-cta--mobile {
  margin-left: 0;
  margin-top: 0.5rem;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ============================================================
   ALERT BANNER
   ============================================================ */
.alert-banner {
  background-color: var(--civic-alert-bg);
  border-bottom: 2px solid var(--civic-alert);
}
.alert-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.alert-icon {
  color: var(--civic-alert);
  flex-shrink: 0;
}
.alert-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: hsl(215 60% 28% / 0.7);
}
.hero-content {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .hero-content { padding-top: 7rem; padding-bottom: 7rem; }
}
@media (min-width: 1024px) {
  .hero-content { padding-top: 9rem; padding-bottom: 9rem; }
}
.hero-inner { max-width: 48rem; }

.hero-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1.25;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .hero-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3rem; } }

.hero-subtitle {
  font-size: 1.125rem;
  color: rgb(255 255 255 / 0.85);
  margin-bottom: 2rem;
  line-height: 1.625;
  max-width: 42rem;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-notice {
  background-color: var(--civic-gold-light);
  border-left: 4px solid var(--civic-gold);
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  padding: 1rem;
  margin-bottom: 2rem;
  max-width: 36rem;
}
.hero-notice-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}
.hero-notice-text {
  font-size: 0.875rem;
  color: var(--foreground);
  margin-top: 0.25rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  font-weight: 600;
  border-radius: 0.375rem;
  transition: filter 150ms;
}
.btn-hero-primary:hover { filter: brightness(1.1); }
.btn-hero-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: rgb(255 255 255 / 0.15);
  color: var(--primary-foreground);
  font-weight: 600;
  border-radius: 0.375rem;
  border: 1px solid rgb(255 255 255 / 0.3);
  transition: background-color 150ms;
}
.btn-hero-outline:hover { background-color: rgb(255 255 255 / 0.25); }
.btn-hero-outline:focus-visible { outline: 2px solid var(--primary-foreground); outline-offset: 2px; }

.hero-footnote {
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.6);
}

/* ============================================================
   LATEST UPDATES
   ============================================================ */
.updates-grid {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
}
.update-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--muted);
  border-radius: 0.375rem;
  border: 1px solid var(--border);
}
.update-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
  white-space: nowrap;
  margin-top: 0.125rem;
  flex-shrink: 0;
}
.update-text {
  font-size: 0.875rem;
  color: var(--foreground);
}

/* ============================================================
   JUMP NAV
   ============================================================ */
.jump-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .jump-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .jump-grid { grid-template-columns: repeat(5, 1fr); }
}

.jump-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background-color: var(--card);
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  transition: border-color 150ms, box-shadow 150ms;
  cursor: pointer;
}
.jump-card:hover {
  border-color: var(--civic-sky);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.jump-card:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

.jump-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: hsl(215 60% 28% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--primary);
  transition: background-color 150ms;
}
.jump-card:hover .jump-icon-wrap {
  background-color: hsl(205 75% 48% / 0.15);
}

.jump-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}
.jump-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ============================================================
   PROGRAM PATHWAYS
   ============================================================ */
.pathways-grid { display: grid; gap: 1.5rem; }

.pathway-card {
  background-color: var(--card);
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  overflow: hidden;
}
.pathway-card-inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .pathway-card-inner { flex-direction: row; }
}
.pathway-img-wrap {
  height: 12rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .pathway-img-wrap {
    width: 33.333333%;
    height: auto;
  }
}
.pathway-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pathway-body {
  padding: 1.5rem;
  flex: 1;
}
@media (min-width: 768px) {
  .pathway-body { padding: 2rem; }
}

.pathway-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.pathway-intro {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
  line-height: 1.625;
}
.pathway-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.pathway-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--civic-sky);
  border-radius: 0.25rem;
}
.pathway-toggle:hover { text-decoration: underline; }
.pathway-toggle:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

.pathway-checklist {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
}
.checklist-icon {
  color: var(--civic-green);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.pathway-contact {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ============================================================
   FEE TABLE
   ============================================================ */
.fee-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.fee-tab {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  transition: background-color 150ms;
}
.fee-tab:hover { background-color: hsl(210 15% 93% / 0.8); }
.fee-tab--active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.fee-tab--active:hover { filter: brightness(1.05); background-color: var(--primary); }
.fee-tab:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

.fee-table-wrap {
  overflow-x: auto;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
}
.fee-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
}
.fee-thead-row { background-color: var(--muted); }
.fee-th {
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--foreground);
}
.fee-th--left  { text-align: left; }
.fee-th--right { text-align: right; }
.fee-th--sm { display: none; }
@media (min-width: 640px) { .fee-th--sm { display: table-cell; } }
.fee-th--md { display: none; }
@media (min-width: 768px) { .fee-th--md { display: table-cell; } }

.fee-row {
  border-top: 1px solid var(--border);
  transition: background-color 150ms;
}
.fee-row:hover { background-color: hsl(210 15% 95% / 0.5); }
.fee-td {
  padding: 0.75rem 1rem;
  color: var(--foreground);
}
.fee-td--right { text-align: right; }
.fee-td--bold { font-weight: 500; }
.fee-td--muted { color: var(--muted-foreground); }
.fee-td--xs { font-size: 0.75rem; }
.fee-td--sm { display: none; }
@media (min-width: 640px) { .fee-td--sm { display: table-cell; } }
.fee-td--md { display: none; }
@media (min-width: 768px) { .fee-td--md { display: table-cell; } }

.fee-footnote {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-container { max-width: 56rem; }

.faq-search-wrap {
  position: relative;
  margin-bottom: 1.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
.faq-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  pointer-events: none;
}
.faq-search {
  width: 100%;
  padding: 0.625rem 1rem 0.625rem 2.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: var(--foreground);
  font-family: inherit;
  outline: none;
}
.faq-search::placeholder { color: var(--muted-foreground); }
.faq-search:focus { box-shadow: 0 0 0 2px var(--ring); }

.faq-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.faq-cat-btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  background-color: var(--card);
  color: var(--secondary-foreground);
  border: 1px solid var(--border);
  transition: background-color 150ms;
}
.faq-cat-btn:hover { background-color: var(--secondary); }
.faq-cat-btn--active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}
.faq-cat-btn--active:hover { background-color: var(--primary); filter: brightness(1.05); }
.faq-cat-btn:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }

.faq-empty {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  padding: 2rem 0;
}

.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  overflow: hidden;
}
.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background-color 150ms;
  gap: 0.75rem;
}
.faq-question-btn:hover { background-color: hsl(210 15% 95% / 0.5); }
.faq-question-btn:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

.faq-chevron {
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 200ms cubic-bezier(0.4,0,0.2,1);
}
.faq-answer {
  padding: 0.75rem 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
  border-top: 1px solid var(--border);
}

/* ============================================================
   RESOURCES SECTION
   ============================================================ */
.res-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.res-cat-btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  transition: background-color 150ms;
}
.res-cat-btn:hover { background-color: hsl(210 15% 93% / 0.8); }
.res-cat-btn--active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.res-cat-btn--active:hover { background-color: var(--primary); filter: brightness(1.05); }
.res-cat-btn:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

.res-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .res-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .res-grid { grid-template-columns: repeat(3, 1fr); } }

.res-card {
  padding: 1.5rem;
  background-color: var(--background);
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  transition: box-shadow 150ms;
}
.res-card:hover { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.res-card .icon-circle { margin-bottom: 1rem; }

.res-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.res-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.625;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }

.contact-card {
  padding: 1.25rem;
  background-color: var(--card);
  border-radius: 0.375rem;
  border: 1px solid var(--border);
}
.contact-name {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.contact-details { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.contact-icon { color: var(--civic-sky); flex-shrink: 0; }
.contact-link { color: var(--foreground); }
.contact-link:hover { text-decoration: underline; }
.contact-text { color: var(--foreground); }
.contact-hours { font-size: 0.75rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.footer-inner { padding-top: 3rem; padding-bottom: 3rem; }

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-brand-name {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.7);
  line-height: 1.625;
}

.footer-col-title {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: var(--primary-foreground);
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.7);
  transition: color 150ms;
}
.footer-link:hover { color: var(--primary-foreground); }

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.2);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.5);
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
