@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c:          #51000d;
  --c-dk:       #360008;
  --c-mid:      #6b0011;
  --c-lt:       #8c001a;
  --c-wash:     #fdf5f6;
  --c-tint:     #f8eced;
  --gold:       #b8832a;
  --gold-lt:    #fdf7ee;
  --gold-mid:   #d4a044;
  --white:      #ffffff;
  --surface:    #f9f8f7;
  --surface-2:  #f2f0ee;
  --text:       #18181b;
  --text-2:     #52525b;
  --text-3:     #a1a1aa;
  --border:     #e4e2de;
  --border-2:   #d0cdc8;
  --success:    #166534;
  --success-bg: #f0fdf4;
  --warn:       #92400e;
  --warn-bg:    #fffbeb;

  --r:    6px;
  --r-lg: 14px;
  --r-xl: 20px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.07), 0 4px 6px -4px rgba(0,0,0,.05);

  --max: 1160px;
  --font: 'DM Sans', system-ui, sans-serif;
  --serif: 'DM Serif Display', Georgia, serif;

  --transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

html { font-size: 15px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── UTILITY ── */
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap; }
.inner   { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ─────────────────────────────────────────
   TOP UTILITY BAR
───────────────────────────────────────── */
.top-bar {
  background: var(--c-dk);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  letter-spacing: 0.01em;
}
.top-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-left { color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 16px; }
.top-bar-left span { display: flex; align-items: center; gap: 5px; }
.top-bar-right { display: flex; gap: 4px; }
.top-bar a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 3px 10px;
  border-radius: 4px;
  transition: all var(--transition);
  font-weight: 500;
}
.top-bar a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.top-bar-sep { color: rgba(255,255,255,0.2); }

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.site-header {
  background: var(--c);
  border-bottom: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 70% 50%, rgba(184,131,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
.header-seal {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}
.header-seal svg { width: 40px; height: 40px; }
.header-wordmark { flex: 1; }
.header-wordmark h1 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.header-wordmark p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.header-ctas { display: flex; gap: 10px; align-items: center; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--c-dk);
  border-color: var(--gold);
}
.btn-gold:hover { background: #a57225; border-color: #a57225; }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }
.btn-crimson { background: var(--c); color: var(--white); border-color: var(--c); }
.btn-crimson:hover { background: var(--c-dk); }
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-outline-dark:hover { border-color: var(--c); color: var(--c); background: var(--c-wash); }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 12px 28px; font-size: 15px; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-inner a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-inner a:hover {
  color: var(--c);
  background: var(--c-wash);
}
.nav-inner a.active {
  color: var(--c);
  border-bottom-color: var(--c);
  font-weight: 600;
}
.nav-inner a svg { width: 15px; height: 15px; opacity: 0.6; }
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 8px 0;
  gap: 8px;
  flex-shrink: 0;
}
.nav-search {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 13px;
  color: var(--text-3);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-search:hover { border-color: var(--border-2); background: var(--surface-2); color: var(--text-2); }
.nav-search svg { width: 14px; height: 14px; }

/* ─────────────────────────────────────────
   PAGE HERO
───────────────────────────────────────── */
.page-hero {
  background: var(--c);
  padding: 52px 28px 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.03);
  pointer-events: none;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: 100px;
  top: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.03);
  pointer-events: none;
}
.page-hero .inner { position: relative; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-mid);
  margin-bottom: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--gold-mid);
  border-radius: 2px;
}
.page-hero h2 {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 640px;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   MAIN CONTENT AREA
───────────────────────────────────────── */
main {
  flex: 1;
  padding: 40px 0 60px;
}
main .inner { display: flex; flex-direction: column; gap: 0; }

/* ─────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────── */
.section-header { margin-bottom: 20px; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c);
  margin-bottom: 4px;
  display: block;
}
.section-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 14px;
  color: var(--text-2);
  margin-top: 5px;
  line-height: 1.5;
}

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 44px 0;
}

/* ─────────────────────────────────────────
   ACTION CARDS (top strip)
───────────────────────────────────────── */
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 44px;
}
.action-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 16px 20px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.action-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.action-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.action-card:hover::before { transform: scaleX(1); }
.action-card:hover .action-icon { background: var(--c-tint); }
.action-icon {
  width: 40px; height: 40px;
  background: var(--surface-2);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  transition: background var(--transition);
}
.action-card strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  display: block;
  line-height: 1.3;
}
.action-card span {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.45;
  display: block;
}
.action-card .action-arrow {
  margin-top: auto;
  font-size: 12px;
  color: var(--c);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─────────────────────────────────────────
   FEATURE CARDS (departments)
───────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(81,0,13,0.15);
}
.feature-card .fc-icon {
  width: 44px; height: 44px;
  background: var(--c-wash);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 21px;
}
.feature-card strong { font-size: 14px; font-weight: 600; color: var(--text); }
.feature-card span { font-size: 12.5px; color: var(--text-2); line-height: 1.5; flex: 1; }
.feature-card .fc-link {
  font-size: 12px;
  color: var(--c);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ─────────────────────────────────────────
   NEWS ITEMS
───────────────────────────────────────── */
.news-feed { display: flex; flex-direction: column; gap: 1px; }
.news-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}
.news-item:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
.news-item:last-child  { border-radius: 0 0 var(--r-lg) var(--r-lg); }
.news-item:only-child  { border-radius: var(--r-lg); }
.news-item + .news-item { border-top: none; }
.news-item:hover { background: var(--surface); }
.news-cal {
  background: var(--c);
  color: var(--white);
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  flex-shrink: 0;
  min-width: 48px;
  box-shadow: var(--shadow-sm);
}
.news-cal .mo { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.65); }
.news-cal .dy { font-size: 20px; font-weight: 700; line-height: 1.1; }
.news-body { flex: 1; }
.news-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tag-news    { background: #eff6ff; color: #1d4ed8; }
.tag-alert   { background: var(--c-wash); color: var(--c); }
.tag-event   { background: #f0fdf4; color: #15803d; }
.tag-notice  { background: var(--warn-bg); color: var(--warn); }
.news-body h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; line-height: 1.35; }
.news-body p  { font-size: 12.5px; color: var(--text-2); line-height: 1.5; }
.news-body a.read-more { font-size: 12px; color: var(--c); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 3px; margin-top: 6px; }
.news-body a.read-more:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
   CALENDAR LINKS / EVENT PILLS
───────────────────────────────────────── */
.cal-links { display: flex; flex-direction: column; gap: 8px; }
.cal-link {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  transition: all var(--transition);
}
.cal-link:hover { border-color: var(--c); background: var(--c-wash); }
.cal-link:hover .cal-pill { background: var(--c); color: var(--white); }
.cal-link-label { font-size: 13px; font-weight: 500; color: var(--text); }
.cal-link-sub   { font-size: 11.5px; color: var(--text-3); margin-top: 1px; }
.cal-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--c);
  background: var(--c-wash);
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition);
  border: 1px solid rgba(81,0,13,0.12);
}

/* ─────────────────────────────────────────
   STAT STRIP
───────────────────────────────────────── */
.stat-strip {
  background: var(--c);
  border-radius: var(--r-xl);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(184,131,42,0.1) 0%, transparent 60%);
}
.stat-num  { font-family: var(--serif); font-size: 28px; color: var(--gold-mid); line-height: 1; position: relative; }
.stat-lbl  { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 6px; font-weight: 500; letter-spacing: 0.02em; position: relative; }

/* ─────────────────────────────────────────
   DEPT SECTIONS (services / gov pages)
───────────────────────────────────────── */
.dept-section { margin-bottom: 36px; }
.dept-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.dept-heading-icon {
  width: 32px; height: 32px;
  background: var(--c-wash);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.dept-heading h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.dept-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px;
}
.dept-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.dept-link:hover {
  border-color: rgba(81,0,13,0.25);
  background: var(--c-wash);
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}
.dept-link:hover .dl-title { color: var(--c); }
.dl-icon { font-size: 17px; flex-shrink: 0; margin-top: 0; line-height: 1.5; }
.dl-body { flex: 1; }
.dl-title { font-weight: 600; font-size: 13px; color: var(--text); display: block; line-height: 1.35; }
.dl-sub   { font-size: 11.5px; color: var(--text-3); line-height: 1.4; display: block; margin-top: 2px; }
.dl-ext   { font-size: 11px; color: var(--c); font-weight: 600; margin-top: 3px; display: block; }

/* ─────────────────────────────────────────
   HOW DO I — ACCORDION CARDS
───────────────────────────────────────── */
.hdi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.hdi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.hdi-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.hdi-head-icon {
  width: 36px; height: 36px;
  background: var(--c);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.hdi-head h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.hdi-card ul { list-style: none; padding: 6px 0; }
.hdi-card ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--surface);
  transition: all var(--transition);
}
.hdi-card ul li:last-child a { border-bottom: none; }
.hdi-card ul li a:hover {
  background: var(--c-wash);
  color: var(--c);
  padding-left: 24px;
}
.hdi-card ul li a::before {
  content: '›';
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   CONTACT CARDS
───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-xs);
}
.contact-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-card h3 span { font-size: 16px; }
.contact-row {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--surface-2);
  font-size: 13px;
  align-items: baseline;
}
.contact-row:last-child { border-bottom: none; }
.cl { color: var(--text-3); min-width: 80px; font-size: 11.5px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; flex-shrink: 0; }
.cv { color: var(--text); font-weight: 500; line-height: 1.4; }
.cv a { color: var(--c); text-decoration: none; }
.cv a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
   ALERT BANNER
───────────────────────────────────────── */
.alert-banner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  border-radius: var(--r);
  font-size: 13.5px;
  margin-bottom: 28px;
  border: 1px solid;
  line-height: 1.5;
}
.alert-warn { background: var(--warn-bg); border-color: #fcd34d; color: var(--warn); }
.alert-info { background: #eff6ff; border-color: #93c5fd; color: #1e40af; }
.alert-banner .alert-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.alert-banner a { color: inherit; font-weight: 600; }

/* ─────────────────────────────────────────
   LIVING PAGE
───────────────────────────────────────── */
.living-intro {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-xs);
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}
.living-intro::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--c);
  border-radius: 4px 0 0 4px;
}
.living-intro p { font-size: 15px; line-height: 1.8; color: var(--text-2); }
.living-intro p + p { margin-top: 12px; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.5);
  padding: 52px 0 28px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-brand h4 {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 9px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ─────────────────────────────────────────
   TWO-COL LAYOUT
───────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 36px;
  align-items: start;
}

/* ─────────────────────────────────────────
   PANEL / CARD
───────────────────────────────────────── */
.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
}
.panel-dark {
  background: var(--c);
  border-color: var(--c);
}
.panel-dark h3,
.panel-dark p { color: rgba(255,255,255,0.8); }
.panel-dark h2 { color: var(--white); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; }
  .header-ctas { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero h2 { font-size: 26px; }
  .inner { padding: 0 16px; }
}

/* ─────────────────────────────────────────
   ORDINANCE MINI-LINKS
───────────────────────────────────────── */
.ord-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.ord-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-decoration: none;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.ord-link:hover { border-color: var(--c); color: var(--c); background: var(--c-wash); }
.ord-icon { font-size: 15px; flex-shrink: 0; }
