/* =============================================================
   Fairfield County Engineer's Office
   Clean hand-coded stylesheet — replaces WYSIWYG output
   ============================================================= */

:root {
  /* Brand */
  --charcoal:    #252525;
  --charcoal-2:  #1b1b1b;
  --navy:        #032949;
  --navy-2:      #063a66;
  --navy-line:   #0c4a82;
  --gold:        #e6a91d;
  --gold-bright: #f7c331;

  /* Neutrals */
  --ink:      #1d1d1f;
  --body:     #3a3f45;
  --muted:    #6b7178;
  --line:     #e3e6ea;
  --surface:  #ffffff;
  --canvas:   #ffffff;

  /* Type */
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(18,28,45,.06), 0 2px 8px rgba(18,28,45,.05);
  --shadow-md: 0 6px 24px rgba(3,41,73,.12);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p, ul { margin: 0; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* shared chrome custom elements — keep them transparent to layout
   so the inner sticky header positions against the page, not the wrapper */
fc-header, fc-footer { display: contents; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--charcoal); font-weight: 700;
  padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* =============================================================
   HEADER + NAV
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 92px;
}
/* the Commissioners nav carries five top-level items with wide labels.
   It stays on one row at ≥1200px; below that it switches to the hamburger
   menu so the labels never collide with the brand. */
.site-header .wrap { max-width: 1360px; }
@media (min-width: 1240px) {
  .header-inner { gap: 16px; }
  .brand img { width: 48px; }
  .brand-text .b-name { font-size: 18px; }
  .brand-text .b-sub { display: none; }
  .nav-list { gap: 2px; }
  .primary-nav .nav-link { padding: 9px 9px; font-size: 12px; letter-spacing: .02em; gap: 5px; }
  .caret { width: 7px; height: 7px; }
}
@media (min-width: 1400px) {
  .header-inner { gap: 20px; }
  .brand img { width: 56px; }
  .brand-text .b-name { font-size: 21px; }
  .brand-text .b-sub { display: block; }
  .nav-list { gap: 4px; }
  .primary-nav .nav-link { padding: 10px 13px; font-size: 12.5px; letter-spacing: .03em; }
}
.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; color: var(--navy); flex-shrink: 0; }
.brand img { width: 56px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .b-kicker { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #34557a; font-weight: 700; white-space: nowrap; }
.brand-text .b-name { font-size: 21px; font-weight: 800; color: var(--navy); letter-spacing: -.01em; white-space: nowrap; }
.brand-text .b-sub { font-size: 13px; color: #525860; font-weight: 500; white-space: nowrap; }

/* primary nav */
.primary-nav { display: flex; align-items: stretch; }
.nav-list { display: flex; align-items: stretch; gap: 4px; }
.nav-item { position: relative; display: flex; flex-shrink: 0; }
.nav-link {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; flex-shrink: 0;
  padding: 10px 14px; border-radius: 8px;
  font-size: 13.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  background: transparent; border: 0;
  transition: background .15s, color .15s;
}
.nav-link:hover, .nav-item:hover > .nav-link, .nav-item.open > .nav-link { background: var(--navy); color: #fff; }
.nav-link[aria-current="page"] { color: var(--gold); }
.nav-link.is-active { color: var(--navy); position: relative; }
.nav-link.is-active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2.5px; background: var(--gold); border-radius: 2px; }
.nav-link--home { gap: 10px; }
.caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s; opacity: .8; }
.nav-item.open .caret { transform: rotate(-135deg) translateY(-1px); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 290px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 8px; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 50;
}
.nav-item:hover > .dropdown, .nav-item.open > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item.align-right .dropdown { left: auto; right: 0; }
.dropdown a {
  display: block; padding: 9px 14px; border-radius: 7px;
  font-size: 14.5px; font-weight: 600; color: var(--ink); text-decoration: none;
  text-transform: none; letter-spacing: 0;
}
.dropdown a:hover { background: rgba(3,41,73,.09); color: var(--navy); }
.dropdown .divider { height: 1px; margin: 6px 12px; background: var(--line); }
@media (max-width: 1239px) { .dropdown .divider { display: none; } }

/* two-column variant for the long Engineer's Office menu */
.dropdown--cols { width: auto; min-width: 0; max-width: calc(100vw - 24px); display: grid; grid-template-columns: auto auto; grid-template-rows: repeat(8, auto); grid-auto-flow: column; column-gap: 10px; }
.dropdown--cols li { display: block; }
.dropdown--cols li:nth-child(2) { grid-column: 2; grid-row: 1; }
.dropdown--cols a { font-size: 14.5px; font-weight: 600; padding: 9px 13px; line-height: 1.35; white-space: nowrap; }
@media (max-width: 1180px) {
  .dropdown--cols { display: block; width: auto; max-width: none; }
  .dropdown--cols a { font-size: 14.5px; white-space: normal; }
}
.dropdown .group-label {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; padding: 12px 14px 4px;
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: var(--navy); border: 0; border-radius: 8px; padding: 11px 13px;
}
.nav-toggle span { width: 22px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================================
   HERO — NEWS + PORTRAIT  (dark band, faithful)
   ============================================================= */
.hero {
  background-color: var(--charcoal);
  background-image:
    url("https://www.co.fairfield.oh.us/Engineer/images/ENG-wide-new-img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border-bottom: 4px solid var(--gold);
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 332px; gap: clamp(28px, 5vw, 56px);
  align-items: start;
  padding-block: clamp(40px, 6vw, 68px);
}
.hero-news {
  display: flex; flex-direction: column;
  background-color: #252525;
  background-image: linear-gradient(155deg, rgba(6,58,102,.55) 0%, rgba(6,58,102,.16) 46%, rgba(6,58,102,0) 78%);
  padding: clamp(26px, 3.2vw, 38px);
  border-radius: 14px;
  box-shadow: 0 14px 44px rgba(0,0,0,.4);
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }
.hero-news h1 { font-size: clamp(28px, 4vw, 40px); line-height: 1.08; font-weight: 800; letter-spacing: -.015em; color: #fff; }

.closure-list { margin-top: 26px; display: flex; flex-direction: column; gap: 2px; }
.closure {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.12);
  text-decoration: none; color: #fff;
}
.closure:hover .closure-road { color: var(--gold-bright); }
.closure-tag {
  flex-shrink: 0; margin-top: 2px;
  font-size: 12px; font-weight: 800; letter-spacing: .06em;
  background: rgba(230,169,29,.16); color: var(--gold-bright);
  border: 1px solid rgba(230,169,29,.4);
  padding: 3px 8px; border-radius: 5px; text-transform: uppercase;
}
.closure-road { font-size: 16.5px; font-weight: 600; transition: color .15s; }
.closure-road .meta { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.55); }

.hero-actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px; border-radius: 9px;
  font-size: 14px; font-weight: 700; letter-spacing: .03em; text-decoration: none;
  transition: transform .12s, background .15s, box-shadow .15s;
}
.btn-gold { background: var(--gold); color: var(--charcoal-2); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.22); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn .arrow { font-size: 17px; line-height: 1; }

.hero-sublinks { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; }
.hero-sublinks a { color: rgba(255,255,255,.82); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; width: fit-content; }
.hero-sublinks a:hover { color: var(--gold-bright); }
.hero-sublinks a::before { content: "→"; color: var(--gold); }

/* portrait card */
.hero-officer { display: flex; flex-direction: column; }
.officer-card {
  background: rgba(27,27,27,.66);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
}
.officer-photo { width: 100%; aspect-ratio: 1 / 1.04; background: #11233a; padding: 12px; box-sizing: border-box; }
.officer-photo image-slot { width: 100%; height: 100%; border-radius: 12px; overflow: hidden; }
.officer-body { padding: 6px 16px 16px; }
.officer-name { font-size: 16.5px; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -.01em; white-space: nowrap; }
.officer-role { font-size: 14px; color: var(--gold-bright); font-weight: 600; margin-top: 2px; }
.officer-links { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12); }
.officer-links a { color: rgba(255,255,255,.9); text-decoration: none; font-size: 13.5px; display: flex; align-items: center; gap: 9px; white-space: nowrap; }
.officer-links a:hover { color: var(--gold-bright); }
.officer-links svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); }

/* =============================================================
   INTRO / DUTIES  (navy band)
   ============================================================= */
.intro { background: var(--navy); color: #fff; }
.intro-inner { padding-block: clamp(40px, 5.5vw, 60px); display: grid; grid-template-columns: minmax(0, 280px) 1fr; gap: clamp(24px, 5vw, 56px); align-items: start; }
.intro h2 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; line-height: 1.18; letter-spacing: -.01em; }
.intro h2 .accent { color: var(--gold-bright); }
.intro-stats { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.stat { display: flex; align-items: baseline; gap: 12px; }
.stat .num { font-size: 26px; font-weight: 800; color: var(--gold-bright); min-width: 78px; }
.stat .lbl { font-size: 13.5px; color: rgba(255,255,255,.75); }
.intro-body { font-size: 16.5px; line-height: 1.72; color: rgba(255,255,255,.88); }
.intro-body a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 2px; }
.intro-body p + p { margin-top: 14px; }

/* =============================================================
   QUICK LINKS  (light band, 3 columns)
   ============================================================= */
.quick { background: var(--canvas); }
.quick-inner { padding-block: clamp(44px, 6vw, 68px); }
.section-head { margin-bottom: 30px; }
.section-head .eyebrow { color: var(--navy-2); }
.section-head .eyebrow::before { background: var(--gold); }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--ink); letter-spacing: -.015em; }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr 1.05fr; gap: 24px; }
.quick-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 26px 26px 22px;
}
.quick-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; padding-bottom: 14px; margin-bottom: 8px; border-bottom: 2px solid var(--gold); display: inline-block; }
.link-list { display: flex; flex-direction: column; }
.link-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 0; font-size: 15.5px; font-weight: 600; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--line);
  transition: color .14s, padding .14s;
}
.link-list a:last-child { border-bottom: 0; }
.link-list a::after { content: "→"; color: var(--gold); opacity: 0; transform: translateX(-4px); transition: opacity .15s, transform .15s; }
.link-list a:hover { color: var(--navy-2); padding-left: 4px; }
.link-list a:hover::after { opacity: 1; transform: translateX(0); }
.sublabel { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: 18px; margin-bottom: 4px; }

/* info card */
.info-card { background: var(--navy); border: 0; color: #fff; }
.info-card h3 { color: #fff; border-color: var(--gold); }
.info-block + .info-block { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.info-block .label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-bright); font-weight: 700; margin-bottom: 6px; }
.info-block p, .info-block address { font-style: normal; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.9); }
.info-block a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(247,195,49,.5); }
.info-block a:hover { color: var(--gold-bright); }
.info-block .strong { font-weight: 700; color: #fff; }
a.info-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; background: var(--gold); color: var(--charcoal-2); font-weight: 700; font-size: 14px; padding: 10px 16px; border-radius: 8px; text-decoration: none; border: 0; }
a.info-cta:hover { background: var(--gold-bright); color: var(--charcoal-2); }

/* =============================================================
   FOOTER  (charcoal)
   ============================================================= */
.site-footer { background: var(--navy); color: #fff; }
.footer-top { padding-block: clamp(40px, 5vw, 58px); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { width: 168px; height: auto; background: #fff; border-radius: 8px; padding: 10px 12px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.78); line-height: 1.6; max-width: 260px; }
.footer-col h2 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 800; margin-bottom: 14px; }
.footer-col a { display: block; padding: 6px 0; font-size: 14.5px; color: rgba(255,255,255,.92); text-decoration: none; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: flex-start; justify-content: space-between; }
.footer-legal { display: flex; flex-direction: column; gap: 6px; }
.footer-credit { font-size: 13.5px; color: rgba(255,255,255,.82); margin: 0; }
.footer-bottom .copyright { font-size: 13.5px; color: rgba(255,255,255,.82); }
.footer-bottom .disclaimer { font-size: 12px; color: rgba(255,255,255,.72); max-width: 640px; line-height: 1.55; }
.footer-bottom a { color: rgba(255,255,255,.88); text-decoration: none; border-bottom: 1px solid rgba(247,195,49,.45); }
.footer-bottom a:hover { color: var(--gold-bright); }

/* =============================================================
   INNER PAGES  (reusable for every non-home page)
   ============================================================= */
.page-hero { background: var(--navy); color: #fff; }
.page-hero--image { background-size: cover; background-position: center; border-bottom: 4px solid var(--gold); }
.page-hero--image .page-hero-inner { padding-block: clamp(40px, 6vw, 72px); }
.page-hero-inner { padding-block: clamp(28px, 4vw, 46px); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.breadcrumb a { color: #fff; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb .sep { color: rgba(255,255,255,.62); }
.page-hero h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.1; letter-spacing: -.015em; }
.page-hero .lede { margin-top: 12px; max-width: 720px; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.85); }

.page-body { padding-block: clamp(36px, 5vw, 60px); }
.prose { max-width: none; font-size: 17px; line-height: 1.72; color: var(--body); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: 24px; font-weight: 800; color: var(--ink); margin-top: 1.8em; letter-spacing: -.01em; }
.prose h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-top: 1.6em; }
.prose a { color: var(--navy-2); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--gold-bright); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-top: .5em; }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* =============================================================
   PROJECTS / BID OPPORTUNITIES PAGE
   ============================================================= */
.refresh-note { font-size: 14px; font-style: italic; color: var(--muted); margin-bottom: 10px; }
.refresh-note strong { color: var(--navy-2); font-style: normal; }
.projects-intro { max-width: 760px; font-size: 15.5px; line-height: 1.7; color: var(--body); }

.projects-top { display: grid; grid-template-columns: minmax(0,1fr) 384px; gap: clamp(28px, 4vw, 48px); align-items: start; margin-top: 30px; }

.section-label { display: flex; align-items: center; gap: 12px; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--navy-2); font-weight: 800; margin: 0 0 16px; }
.section-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.bid-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.bid-card + .bid-card { margin-top: 18px; }
.bid-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1.25; letter-spacing: -.01em; }
.bid-facts { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 14px; }
.bid-fact { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: var(--body); }
.bid-fact .k { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; font-weight: 800; color: var(--muted); }
.bid-fact.est { font-weight: 800; color: var(--navy-2); }
.bid-fact.est .amt { font-size: 16px; }
.bid-links { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 9px; }
.doc-link { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 8px; background: var(--canvas); border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; color: var(--navy); text-decoration: none; transition: border-color .14s, background .14s, transform .1s; }
.doc-link:hover { border-color: var(--gold); background: #fff; transform: translateY(-1px); }
.doc-link svg { width: 14px; height: 16px; flex-shrink: 0; color: var(--gold); }

/* ---- request form card ---- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md); padding: 26px 26px 28px; position: sticky; top: 110px; }
.form-card .form-eyebrow { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-bright); font-weight: 800; }
.form-card h2 { font-size: 21px; font-weight: 800; color: var(--ink); margin-top: 4px; letter-spacing: -.01em; }
.form-card .form-sub { font-size: 14px; color: var(--muted); line-height: 1.55; margin-top: 8px; }
.bid-form { margin-top: 20px; }
.bid-form .field { margin-bottom: 14px; }
.bid-form .field-row { display: grid; grid-template-columns: 1fr 76px 96px; gap: 10px; }
.bid-form label { display: block; font-size: 12px; letter-spacing: .03em; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.bid-form .req { color: #c0392b; }
.bid-form input[type="text"], .bid-form input[type="email"], .bid-form textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 8px; font: inherit; font-size: 15px; color: var(--ink); background: #fff; transition: border-color .14s, box-shadow .14s; }
.bid-form textarea { resize: vertical; min-height: 96px; }
.bid-form input::placeholder, .bid-form textarea::placeholder { color: #aab0b7; }
.bid-form input:focus, .bid-form textarea:focus { outline: none; border-color: var(--navy-2); box-shadow: 0 0 0 3px rgba(6,58,102,.12); }
.bid-pick { border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; background: var(--canvas); margin-bottom: 18px; }
.bid-pick legend { font-size: 12px; letter-spacing: .03em; font-weight: 700; color: var(--ink); padding: 0; margin-bottom: 10px; }
.bid-pick .check { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; cursor: pointer; font-size: 14px; line-height: 1.4; color: var(--body); }
.bid-pick input[type="checkbox"] { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--navy); flex-shrink: 0; cursor: pointer; }
.btn-submit { width: 100%; padding: 13px 18px; border: 0; border-radius: 9px; background: var(--navy); color: #fff; font-size: 15px; font-weight: 700; letter-spacing: .02em; cursor: pointer; transition: background .15s, transform .1s; }
.btn-submit:hover { background: var(--navy-2); transform: translateY(-1px); }
.form-error { display: none; margin-bottom: 12px; padding: 10px 13px; border-radius: 8px; background: #fbe9e7; border: 1px solid #f3b9b2; color: #a5281b; font-size: 13.5px; }
.form-error.show { display: block; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.5; }

/* ---- previous projects grid ---- */
.previous-section { background: var(--canvas); }
.previous-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 20px 18px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.project-title { font-size: 15px; font-weight: 800; color: var(--navy); line-height: 1.28; letter-spacing: -.005em; }
.project-meta { margin-top: 9px; font-size: 13.5px; color: var(--muted); line-height: 1.5; flex: 1 0 auto; }
.project-meta .award { color: var(--body); font-weight: 600; }
.project-links { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 6px 0; font-size: 13px; }
.project-links a { color: var(--navy-2); text-decoration: none; font-weight: 600; padding: 0 9px; border-right: 1px solid var(--line); }
.project-links a:first-child { padding-left: 0; }
.project-links a:last-child { border-right: 0; }
.project-links a:hover { color: var(--gold-bright); }

@media (max-width: 1040px) {
  .projects-top { grid-template-columns: 1fr; }
  .form-card { position: static; max-width: 520px; }
  .previous-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .previous-grid { grid-template-columns: 1fr; }
  .bid-form .field-row { grid-template-columns: 1fr 1fr; }
  .bid-form .field-row .field:first-child { grid-column: 1 / -1; }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-officer { max-width: 380px; }
  .intro-inner { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-card.info-card { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1239px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute; top: 100%; left: auto; right: 0;
    width: min(340px, 92vw);
    background: #fff; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 0 12px;
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height .28s ease;
  }
  .primary-nav.open { max-height: 80vh; overflow-y: auto; }
  .nav-list { flex-direction: column; gap: 0; padding: 10px 14px 16px; align-items: stretch; }
  .nav-item { flex-direction: column; }
  .nav-link { width: 100%; justify-content: space-between; border-radius: 8px; }
  .nav-link--home { justify-content: flex-start; gap: 8px; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--line);
    border-radius: 0; margin: 2px 0 6px 12px; min-width: 0;
    max-height: 0; overflow: hidden; padding: 0 8px;
    transition: max-height .25s ease, padding .25s ease;
  }
  .nav-item.open > .dropdown { max-height: 600px; padding: 4px 8px 8px; }
  .nav-item.open > .nav-link { background: rgba(3,41,73,.09); color: var(--navy); }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand-text .b-sub { display: none; }
  .quick-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .closure-tag { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* =============================================================
   UNIVERSAL DOCUMENT VIEWER MODAL
   Accessible PDF popup: text version (for screen readers) +
   original signed PDF. Injected on every page by site-chrome.js.
   ============================================================= */
.doc-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.doc-modal.doc-modal--open { display: block; }
.doc-modal__backdrop { position: absolute; inset: 0; background: rgba(11,22,40,.62); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.doc-modal__dialog {
  position: relative; z-index: 1; margin: clamp(12px, 4vh, 48px) auto;
  width: min(880px, calc(100% - 28px)); max-height: calc(100vh - clamp(24px, 8vh, 96px));
  background: #fff; border-radius: 14px; box-shadow: 0 24px 70px rgba(3,18,40,.45);
  display: flex; flex-direction: column; overflow: hidden;
}
.doc-modal__header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.doc-modal__title { font-size: 17px; font-weight: 800; color: var(--navy); margin: 0; }
.doc-modal__close { border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 14px; font-weight: 700; padding: 8px 16px; border-radius: 8px; }
.doc-modal__close:hover { background: var(--canvas); border-color: var(--muted); }
.doc-modal__tabs { display: flex; gap: 6px; padding: 12px 20px 0; }
.doc-tab { border: 0; background: var(--canvas); color: var(--body); font-size: 13.5px; font-weight: 700; padding: 10px 16px; border-radius: 8px 8px 0 0; border-bottom: 2px solid transparent; }
.doc-tab[aria-selected="true"] { background: #fff; color: var(--navy); border-bottom-color: var(--gold); }
.doc-tab:hover { color: var(--navy); }
.doc-modal__panels { flex: 1; min-height: 0; overflow: hidden; display: flex; }
.doc-panel { display: none; flex: 1; min-height: 0; overflow: auto; padding: 22px 24px; }
.doc-panel.is-active { display: block; }
#doc-text { font-size: 15.5px; line-height: 1.7; color: var(--body); overflow-wrap: anywhere; word-break: break-word; }
#doc-text * { max-width: 100% !important; box-sizing: border-box; }
#doc-text img { height: auto; }
#doc-text table { display: block; width: 100% !important; overflow-x: auto; border-collapse: collapse; }
#doc-text pre { white-space: pre-wrap; overflow-wrap: anywhere; }
#doc-panel-text { overflow-x: hidden; }
#doc-text h1, #doc-text h2 { color: var(--navy); font-weight: 800; line-height: 1.2; margin: 1.2em 0 .5em; }
#doc-text a { color: var(--navy-2); }
.doc-panel#doc-panel-pdf { padding: 0; flex-direction: column; }
.doc-pdf-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 16px; padding: 14px 20px; border-bottom: 1px solid var(--line); background: var(--canvas); }
.doc-pdf-actions__msg { font-size: 13px; color: var(--muted); max-width: 420px; }
.doc-pdf-actions__buttons { display: flex; gap: 8px; }
.doc-pdf-actions__buttons a, .doc-modal__print { border: 1px solid var(--line); background: #fff; color: var(--navy); font-size: 13.5px; font-weight: 700; padding: 8px 14px; border-radius: 8px; text-decoration: none; cursor: pointer; }
.doc-pdf-actions__buttons a:hover, .doc-modal__print:hover { border-color: var(--gold); }
#doc-pdf-frame { flex: 1; width: 100%; min-height: 60vh; border: 0; }
.doc-modal__note { padding: 12px 20px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); background: var(--canvas); }

/* =============================================================
   INNER-PAGE CONTENT PATTERNS (shared by all sub-pages)
   ============================================================= */
.doc-list { list-style: disc; padding-left: 1.4em; }
.doc-list li { margin-top: .55em; font-size: 16.5px; color: var(--body); }
.doc-list a { color: var(--navy-2); text-decoration: underline; text-underline-offset: 2px; }
.doc-list a:hover { color: var(--gold-bright); }
.fine-note { margin-top: 20px; font-size: 13.5px; color: var(--muted); font-style: italic; line-height: 1.6; }

/* two-column: copy + embedded form */
.embed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 52px); align-items: start; }
.emf-embed { width: 100%; min-height: 820px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); }
.emf-jsform { width: 100%; }
.emf-jsform iframe, .emf-jsform form, .emf-jsform table { max-width: 100% !important; }
.embed-aside .form-eyebrow { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--navy-2); font-weight: 800; margin-bottom: 6px; }

/* category block: label box + list (bridge/road construction) */
.cat-block { display: grid; grid-template-columns: 230px 1fr; gap: 26px; margin-top: 24px; align-items: start; }
.cat-block__head { background: var(--navy); color: #fff; border-radius: 10px; padding: 18px 20px; font-weight: 800; font-size: 18px; line-height: 1.3; letter-spacing: .02em; }
.cat-block__head .tot { display: block; margin-top: 6px; font-size: 14px; font-weight: 600; color: var(--gold-bright); }
.cat-block__body .doc-list { margin: 0; }
.subhead { font-size: 16px; font-weight: 800; color: var(--navy-2); margin: 16px 0 4px; }
.subhead:first-child { margin-top: 0; }

/* spec blocks (survey monuments) */
.spec-block { margin-top: 22px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-block__head { background: var(--navy); color: #fff; padding: 13px 20px; font-weight: 800; font-size: 16px; }
.spec-block__body { padding: 16px 20px; }
.spec-dl { display: grid; grid-template-columns: max-content 1fr; gap: 7px 18px; font-size: 15.5px; margin: 0; }
.spec-dl dt { font-weight: 800; color: var(--navy-2); text-transform: uppercase; font-size: 12px; letter-spacing: .05em; align-self: baseline; }
.spec-dl dd { margin: 0; color: var(--body); }

/* bridge load grid */
.bridge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bridge-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 10px; padding: 16px 18px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.bridge-card .bid { font-weight: 800; color: var(--navy); font-size: 15px; letter-spacing: .05em; }
.bridge-card .loc { font-size: 14.5px; margin-top: 6px; color: var(--body); flex: 1; }
.bridge-card .legal { margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line); font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.bridge-card .legal b { display: inline-block; margin-left: 6px; font-size: 18px; color: var(--navy-2); }

/* staff columns */
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.staff-col h2 { font-size: 17px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; border-bottom: 2px solid var(--gold); padding-bottom: 10px; margin-bottom: 16px; }
.staff-person { margin-bottom: 15px; font-size: 14.5px; line-height: 1.4; }
.staff-person .nm { font-weight: 700; color: var(--ink); }
.staff-person .role { color: var(--muted); }
.staff-person a { color: var(--navy-2); text-decoration: none; word-break: break-word; }
.staff-person a:hover { color: var(--gold-bright); }

/* image row (drop-in slots) */
.image-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.image-row image-slot { width: 100%; aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden; }
.image-row img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-sm); }

/* document download button */
.doc-download, .prose a.doc-download { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; background: var(--navy); color: #fff; font-weight: 700; font-size: 15px; padding: 12px 20px; border-radius: 9px; text-decoration: none; }
.doc-download:hover, .prose a.doc-download:hover { background: var(--navy-2); color: #fff; }
.doc-download svg { width: 18px; height: 18px; }

/* keep CTA buttons legible when they sit inside .prose (e.g. 404 page) */
.prose a.portal-cta__btn { color: var(--charcoal-2); text-decoration: none; }
.prose a.portal-cta__btn:hover { color: var(--charcoal-2); }
.prose a.btn-secondary { color: var(--navy); text-decoration: none; }
.prose a.btn-secondary:hover { color: #fff; }

/* external portal call-to-action (RTVision, etc.) */
.portal-cta { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 28px; background: var(--navy); color: #fff; border-radius: 14px; padding: 26px 30px; }
.portal-cta__text { max-width: 560px; }
.portal-cta__text h3 { font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.portal-cta__text p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.85); margin: 0; }
.portal-cta__btn { flex-shrink: 0; background: var(--gold); color: var(--charcoal-2); font-weight: 700; font-size: 15px; padding: 13px 22px; border-radius: 9px; text-decoration: none; }
.portal-cta__btn:hover { background: var(--gold-bright); color: var(--charcoal-2); }
@media (max-width: 560px) { .portal-cta__btn { width: 100%; text-align: center; } }

/* lot split program block */
.lotsplit { display: grid; grid-template-columns: 287px 1fr; gap: 32px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); padding: 30px; max-width: 900px; }
.lotsplit__icon { width: 287px; height: auto; border-radius: 8px; }
.lotsplit__body h2 { font-size: 22px; font-weight: 800; color: var(--ink); line-height: 1.2; margin-bottom: 12px; letter-spacing: -.01em; }
.lotsplit__body p { font-size: 16.5px; line-height: 1.7; color: var(--body); }
.lotsplit__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.btn-secondary { display: inline-flex; align-items: center; background: #fff; color: var(--navy); border: 1.5px solid var(--navy); font-weight: 700; font-size: 15px; padding: 11px 20px; border-radius: 9px; text-decoration: none; }
.btn-secondary:hover { background: var(--navy); color: #fff; }
@media (max-width: 680px) { .lotsplit { grid-template-columns: 1fr; gap: 20px; } .lotsplit__icon { width: 240px; } }

/* native report form panel (matches bid-page form styling) */
.form-panel { max-width: 760px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); padding: clamp(20px, 4vw, 30px); }
.form-panel .field-row3 { display: grid; grid-template-columns: 1fr 90px 120px; gap: 12px; }
.dt-group { display: flex; flex-wrap: wrap; gap: 14px; }
.dt-group .dt { display: flex; flex-direction: column; }
.dt-group .dt input, .dt-group .dt select { width: 88px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px; font: inherit; font-size: 15px; color: var(--ink); background: #fff; }
.dt-group .dt.yr input { width: 112px; }
.dt-group .dt select { width: 100px; }
.dt-group .dt input:focus, .dt-group .dt select:focus { outline: none; border-color: var(--navy-2); box-shadow: 0 0 0 3px rgba(6,58,102,.12); }
.dt-group .dt small { font-size: 12px; color: var(--muted); margin-top: 5px; font-weight: 600; }
@media (max-width: 560px) { .form-panel .field-row3 { grid-template-columns: 1fr 1fr; } }

/* TID meeting list + members */
.tid-grid { display: grid; grid-template-columns: 360px 1fr; gap: clamp(24px,4vw,48px); align-items: start; }
.tid-panel { background: var(--canvas); border: 1px solid var(--line); border-radius: 12px; padding: 22px 24px; }
.tid-panel h2 { font-size: 16px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; }
.tid-dates { columns: 2; column-gap: 24px; font-size: 14.5px; line-height: 1.9; }
.tid-dates .cxl { color: var(--muted); }
.tid-dates .special { color: #a5281b; font-weight: 700; }
.acc { border: 1px solid var(--line); border-radius: 10px; margin-top: 12px; overflow: hidden; background: #fff; }
.acc > summary { cursor: pointer; padding: 14px 18px; font-weight: 700; color: var(--navy); font-size: 15px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.acc > summary::-webkit-details-marker { display: none; }
.acc > summary::after { content: "+"; font-size: 20px; color: var(--gold); font-weight: 700; }
.acc[open] > summary::after { content: "\2013"; }
.acc__body { padding: 0 18px 16px; font-size: 14.5px; line-height: 1.7; }
.acc__body a { color: var(--navy-2); }
.acc__links a { display: block; padding: 7px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 600; color: var(--navy-2); }
.acc__links a:last-child { border-bottom: 0; }
.acc__links a:hover { font-weight: 800; color: var(--navy-2); }
.acc__links .note { padding: 10px 0; color: var(--muted); font-style: italic; font-size: 13.5px; line-height: 1.55; border-bottom: 1px dashed var(--line); }

@media (max-width: 900px) {
  .embed-grid, .tid-grid { grid-template-columns: 1fr; }
  .cat-block { grid-template-columns: 1fr; }
  .bridge-grid, .staff-grid { grid-template-columns: 1fr 1fr; }
  .tid-dates { columns: 1; }
}
@media (max-width: 600px) {
  .bridge-grid, .staff-grid, .image-row { grid-template-columns: 1fr; }
}

/* =============================================================
   COMMISSIONER / STAFF BIO ROWS
   ============================================================= */
.bio { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 4vw, 44px); align-items: start; }
.bio + .bio { margin-top: clamp(34px, 5vw, 52px); padding-top: clamp(34px, 5vw, 52px); border-top: 1px solid var(--line); }
.bio__photo { width: 100%; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); background: #11233a; aspect-ratio: 2 / 3; }
.bio__photo image-slot, .bio__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio__body .bio__name { font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; color: var(--navy); letter-spacing: -.01em; line-height: 1.15; }
.bio__body .bio__role { font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-bright); background: var(--navy); display: inline-block; padding: 5px 12px; border-radius: 6px; margin-top: 10px; }
.bio__body .prose { margin-top: 18px; }
.staff-banner { background: var(--navy-2); color: #fff; font-weight: 800; font-size: clamp(18px, 2.2vw, 22px); letter-spacing: .03em; padding: 14px 22px; border-radius: 10px; margin-top: clamp(34px, 5vw, 52px); }
.staff-banner span { display: block; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.8); letter-spacing: .02em; margin-top: 2px; }
.staff-banner + .bio { margin-top: 28px; }
.section-banner { background: var(--gold); color: var(--charcoal-2); font-weight: 800; font-size: clamp(18px, 2.4vw, 22px); letter-spacing: .03em; padding: 14px 22px; border-radius: 10px; }
@media (max-width: 680px) { .bio { grid-template-columns: 1fr; } .bio__photo { max-width: 280px; } }

/* =============================================================
   LOCATION / CONTACT CARD
   ============================================================= */
.loc-grid { display: grid; grid-template-columns: 360px 1fr; gap: clamp(26px, 4vw, 48px); align-items: start; }
.loc-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.loc-card__img { width: 100%; aspect-ratio: 1 / 1; background: var(--canvas); }
.loc-card__img image-slot, .loc-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.loc-card__body { padding: 22px 24px 24px; }
.loc-card__title { font-size: 17px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .04em; line-height: 1.3; }
.loc-row { display: flex; gap: 12px; align-items: flex-start; padding: 13px 0; border-top: 1px solid var(--line); font-size: 15.5px; color: var(--body); }
.loc-row:first-of-type { margin-top: 14px; }
.loc-row svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.loc-row a { color: var(--navy-2); text-decoration: none; }
.loc-row a:hover { color: var(--gold-bright); }
@media (max-width: 760px) { .loc-grid { grid-template-columns: 1fr; } .loc-card { max-width: 380px; } }

/* =============================================================
   COMMISSIONER HISTORY TABLE
   ============================================================= */
.history-table { width: 100%; border-collapse: collapse; font-size: 15.5px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.history-table thead th { background: var(--navy); color: #fff; text-align: left; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; padding: 13px 18px; font-weight: 800; }
.history-table td { padding: 11px 18px; border-top: 1px solid var(--line); color: var(--body); }
.history-table td:first-child { font-weight: 600; color: var(--ink); }
.history-table tbody tr:nth-child(even) { background: var(--canvas); }
.history-table tbody tr:hover { background: rgba(6,58,102,.05); }
@media (max-width: 560px) { .history-table thead th, .history-table td { padding: 10px 12px; font-size: 14px; } }

/* embedded application form */
.emf-jsform { max-width: 860px; }
.emf-jsform iframe { width: 100% !important; min-height: 1100px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }

/* video list (Previous News) */
.vid-list { display: grid; gap: clamp(28px, 4vw, 44px); }
.vid-row { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(22px, 3vw, 40px); align-items: center; }
.vid-row:nth-child(even) .video-frame { order: 2; }
.vid-row h3 { font-size: clamp(18px, 2.1vw, 22px); font-weight: 800; color: var(--ink); line-height: 1.25; letter-spacing: -.01em; }
.vid-row p { margin-top: 10px; font-size: 14.5px; line-height: 1.65; color: var(--body); }
.vid-row p a { color: var(--navy-2); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 820px) { .vid-row { grid-template-columns: 1fr; } .vid-row:nth-child(even) .video-frame { order: 0; } }

/* news cards (Previous News) */
.news-year { margin-top: 34px; }
.news-year-heading { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; padding-bottom: 10px; border-bottom: 2px solid var(--gold); margin-bottom: 20px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 10px; padding: 18px 20px; box-shadow: var(--shadow-sm); }
.news-card .tag { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--navy-2); background: rgba(6,58,102,.08); border-radius: 5px; padding: 3px 8px; margin-bottom: 10px; }
.news-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 8px; }
.news-card p { font-size: 14px; line-height: 1.6; color: var(--body); margin: 0; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }

/* =============================================================
   COMMISSIONERS HOME — action card, press list, board, video
   ============================================================= */
/* hero action card (replaces single-officer card) */
.action-card { background: rgba(27,27,27,.66); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; }
.action-card .ac-eyebrow { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-bright); font-weight: 800; margin-bottom: 4px; }
.action-card .ac-title { font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -.01em; margin-bottom: 16px; }
.officer-actions { display: flex; flex-direction: column; gap: 8px; }
.officer-actions a { display: flex; align-items: center; gap: 11px; padding: 12px 14px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; line-height: 1.25; transition: background .15s, border-color .15s, transform .1s; }
.officer-actions a:hover { background: rgba(230,169,29,.14); border-color: rgba(230,169,29,.4); color: var(--gold-bright); transform: translateY(-1px); }
.officer-actions a.primary { background: var(--gold); color: var(--charcoal-2); border-color: var(--gold); }
.officer-actions a.primary:hover { background: var(--gold-bright); color: var(--charcoal-2); }
.officer-actions svg { width: 19px; height: 19px; flex-shrink: 0; }

/* social row */
.officer-social { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); display: flex; gap: 10px; align-items: center; }
.officer-social .lbl { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 700; margin-right: auto; }
.officer-social a { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 9px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; transition: background .15s, color .15s, transform .12s; }
.officer-social a:hover { background: var(--gold); color: var(--charcoal-2); transform: translateY(-1px); }
.officer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* press-release rows reuse .closure layout with a date tag */
.closure-tag.date { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.28); font-weight: 700; letter-spacing: .02em; }

/* board of commissioners band */
.board { background: var(--canvas); }
.board-inner { padding-block: clamp(44px, 6vw, 68px); }
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }
.board-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; transition: transform .14s, box-shadow .14s, border-color .14s; }
.board-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.board-photo { width: 100%; aspect-ratio: 1 / 1.14; background: #11233a; overflow: hidden; }
.board-photo image-slot { width: 100%; height: 100%; }
.board-body { padding: 18px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.board-name { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }
.board-role { font-size: 14px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.board-link { margin-top: 14px; font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--navy-2); display: inline-flex; align-items: center; gap: 7px; }
.board-card:hover .board-link { color: var(--gold-bright); }
.board-link::after { content: "→"; }

/* video + copy split */
.media-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: center; margin-top: 44px; padding-top: 40px; border-top: 1px solid var(--line); }
.video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md); background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media-copy .eyebrow { color: var(--navy-2); }
.media-copy .eyebrow::before { background: var(--gold); }
.media-copy h3 { font-size: clamp(21px, 2.4vw, 26px); font-weight: 800; color: var(--ink); letter-spacing: -.01em; line-height: 1.22; margin-top: 8px; }
.media-copy p { margin-top: 12px; font-size: 15.5px; line-height: 1.7; color: var(--body); }

/* mission band list */
.mission-list { margin-top: 20px; display: grid; gap: 11px; }
.mission-list .mi { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.9); }
.mission-list .mi::before { content: ""; flex-shrink: 0; width: 8px; height: 8px; margin-top: 7px; border-radius: 2px; background: var(--gold-bright); transform: rotate(45deg); }

@media (max-width: 900px) {
  .board-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .media-grid { grid-template-columns: 1fr; }
}
