/* ============================================================
   UnemploymentOfficesNKY — styles.css
   Clean, trustworthy government-directory aesthetic
   Font: Libre Franklin (headings) + Source Serif 4 (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;500;600;700;800&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ky-blue:   #003494;
  --ky-light:  #dbe8ff;
  --ky-mid:    #4a7fd4;
  --oh-red:    #bb1133;
  --oh-light:  #ffe0e4;
  --oh-mid:    #d44a5a;
  --gold:      #c8920a;
  --navy:      #0d1b40;
  --slate:     #2d3a52;
  --muted:     #5a6478;
  --border:    #dde2ec;
  --bg-light:  #f7f9fc;
  --bg-white:  #ffffff;
  --text:      #1a2235;
  --radius:    8px;
  --radius-lg: 14px;
  --shadow:    0 2px 12px rgba(13,27,64,0.09);
  --shadow-lg: 0 6px 32px rgba(13,27,64,0.14);
  --max-w:     1180px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.7;
}

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

a { color: var(--ky-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

.section-label {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 720px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--ky-blue);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img { border-radius: 6px; }

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.7rem;
  color: #8fa8cc;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.site-nav a {
  color: #c8d8f0;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.site-nav a:hover { background: rgba(255,255,255,0.12); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1.3rem;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  cursor: pointer;
  margin-left: auto;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.45) saturate(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,52,148,0.75) 0%, rgba(13,27,64,0.85) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 1.25rem;
  max-width: 760px;
}

.state-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.badge-ky { background: var(--ky-blue); color: #fff; }
.badge-oh { background: var(--oh-red); color: #fff; }

.hero h1 { color: #fff; margin-bottom: 0.25rem; }
.hero-sub { color: #8ab4f8; font-weight: 400; font-size: 0.75em; display: block; }

.hero-desc {
  color: #c8d8f0;
  font-size: 1.1rem;
  margin: 1rem 0 1.5rem;
  max-width: 600px;
}

.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }

.hero-note {
  font-size: 0.85rem;
  color: #ffd580;
  background: rgba(200,146,10,0.18);
  border-left: 3px solid var(--gold);
  padding: 0.6rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 560px;
}

/* ---- BUTTONS ---- */
.btn {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.18); text-decoration: none; }

.btn-ky { background: var(--ky-blue); color: #fff; }
.btn-ky:hover { background: #0042c0; color: #fff; }

.btn-oh { background: var(--oh-red); color: #fff; }
.btn-oh:hover { background: #960f27; color: #fff; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--slate);
}
.btn-outline:hover { border-color: var(--ky-blue); color: var(--ky-blue); }

.btn-small {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 5px;
  background: var(--ky-blue);
  color: #fff;
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-small:hover { opacity: 0.88; text-decoration: none; color: #fff; }
.btn-small.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--slate); }
.btn-small.btn-outline:hover { border-color: var(--ky-blue); color: var(--ky-blue); }

.btn-sm { font-size: 0.88rem; padding: 0.5rem 1.1rem; }
.calc-btn { display: block; width: 100%; margin-top: 1rem; font-size: 1rem; padding: 0.8rem; }

/* ---- COMPARE BAR ---- */
.compare-bar {
  background: var(--navy);
  padding: 1.25rem 0;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.5rem 1.5rem;
}

.compare-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
}

.compare-label {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fa8cc;
}

.compare-val {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.ky-color { color: #6aa3ff; }
.oh-color { color: #ff8899; }

/* ---- SECTIONS ---- */
.section { padding: 4rem 0; }

.ky-section { background: linear-gradient(180deg, #f4f7ff 0%, #fff 100%); }
.oh-section { background: linear-gradient(180deg, #fff5f6 0%, #fff 100%); }
.compare-section { background: var(--bg-light); }
.faq-section { background: #fff; }
.offices-section { background: #fff; }
.calc-section { background: var(--navy); color: #fff; }
.calc-section h2, .calc-section .section-label { color: #fff; }
.calc-section .section-intro { color: #c8d8f0; }

.county-nav-section { background: var(--bg-light); }

/* ---- TABS ---- */
.tab-bar {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.5rem;
}

.tab-btn {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.15s, border-color 0.15s;
  border-radius: var(--radius) var(--radius) 0 0;
}

.tab-btn:hover { color: var(--navy); }

.tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--ky-blue);
  background: var(--bg-light);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-note {
  background: var(--bg-light);
  border-left: 4px solid var(--ky-mid);
  padding: 0.9rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--slate);
}

/* ---- OFFICE CARDS ---- */
.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.office-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.office-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.office-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.office-state-badge {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
}

.office-state-badge.ky { background: var(--ky-blue); }
.office-state-badge.oh { background: var(--oh-red); }

.office-name {
  font-size: 1rem;
  margin: 0;
  color: var(--navy);
}

.office-county {
  font-size: 0.78rem;
  font-family: 'Libre Franklin', sans-serif;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.15rem;
}

.office-details { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1rem; }

.detail-row {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.5;
}

.detail-icon { flex-shrink: 0; font-size: 0.95rem; margin-top: 0.05rem; }

.office-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* ---- CALCULATOR ---- */
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.calc-box {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.calc-state-toggle {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.calc-state-btn {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 1.25rem;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #c8d8f0;
  cursor: pointer;
  transition: all 0.2s;
}

.calc-state-btn.active.active:first-child { background: var(--ky-blue); border-color: var(--ky-blue); color: #fff; }
.calc-state-btn.active:last-child { background: var(--oh-red); border-color: var(--oh-red); color: #fff; }
.calc-state-btn:hover { border-color: rgba(255,255,255,0.5); }

.calc-form { display: none; }
.calc-form.active { display: block; }

.calc-note {
  font-size: 0.88rem;
  color: #afc3e4;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid rgba(255,255,255,0.2);
  padding: 0.7rem 1rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 1.1rem;
  line-height: 1.55;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c8d8f0;
  margin-bottom: 0.35rem;
}

.form-group input {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  font-family: 'Libre Franklin', sans-serif;
}

.form-group input::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus { outline: 2px solid var(--ky-mid); border-color: transparent; }

.calc-disclaimer {
  font-size: 0.75rem;
  color: #8fa8cc;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.calc-result {
  margin-top: 1.1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.6;
}

.calc-result.hidden { display: none; }

.calc-success {
  background: rgba(46,200,120,0.15);
  border: 1.5px solid rgba(46,200,120,0.4);
  color: #d0fbe8;
}

.calc-error {
  background: rgba(200,46,60,0.15);
  border: 1.5px solid rgba(200,46,60,0.4);
  color: #ffd0d4;
}

.result-main { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.3rem; }
.result-sub { font-size: 0.82rem; opacity: 0.85; }
.result-note { font-size: 0.78rem; opacity: 0.7; margin-top: 0.5rem; }

.calc-info-box {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.calc-info-box h3 { color: #fff; margin-bottom: 1rem; }

.info-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.info-list li {
  font-size: 0.9rem;
  color: #c8d8f0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}

.info-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--ky-mid);
  font-weight: 700;
}

.info-list li strong { color: #fff; }

/* ---- TWO COL LAYOUT ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ---- STATE SECTION HEADER ---- */
.state-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.state-badge-large {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.ky-bg { background: var(--ky-blue); }
.oh-bg { background: var(--oh-red); }

/* ---- STEPS LIST ---- */
.steps-list { list-style: none; counter-reset: steps; }

.steps-list li {
  counter-increment: steps;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  padding-left: 2.5rem;
  position: relative;
}

.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--ky-blue);
  color: #fff;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oh-section .steps-list li::before { background: var(--oh-red); }

.steps-list li strong {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 1rem;
  color: var(--navy);
}

.steps-list li p {
  font-size: 0.93rem;
  color: var(--slate);
  margin: 0;
}

/* ---- INFO CARDS ---- */
.info-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.info-card.ky-card { border-top: 3px solid var(--ky-blue); }
.info-card.oh-card { border-top: 3px solid var(--oh-red); }
.mt-1 { margin-top: 1.25rem; }

.info-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }

.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }

.info-table td {
  padding: 0.55rem 0.5rem;
  vertical-align: top;
  color: var(--slate);
}

.info-table td:first-child {
  font-weight: 600;
  font-family: 'Libre Franklin', sans-serif;
  color: var(--navy);
  width: 45%;
  padding-right: 1rem;
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; color: var(--slate); }

.check-list li { padding-left: 1.5rem; position: relative; line-height: 1.55; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--ky-blue); font-weight: 700; }
.oh-card .check-list li::before { color: var(--oh-red); }

/* ---- DOWNLOAD SECTION ---- */
.download-section { margin-top: 2rem; }

.download-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.ky-download { border-left: 4px solid var(--ky-blue); }
.oh-download { border-left: 4px solid var(--oh-red); }

.download-icon { font-size: 2rem; flex-shrink: 0; }

.download-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.download-text strong {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 1rem;
  color: var(--navy);
}

.download-text span { font-size: 0.85rem; color: var(--muted); }

/* ---- CHECKLISTS ---- */
.checklist-block {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 1rem;
}

.checklist-block.hidden { display: none; }

.checklist-block h3 {
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
}

.checklist-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.25rem;
}

.checklist-cols h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.printable-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.printable-list li {
  font-size: 0.9rem;
  color: var(--slate);
  padding: 0.3rem 0;
  border-bottom: 1px dashed var(--border);
}

/* ---- COMPARE TABLE ---- */
.compare-table-wrapper { overflow-x: auto; margin-bottom: 1.5rem; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table th, .compare-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.compare-table th {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--navy);
  color: #fff;
}

.compare-table th:first-child { background: var(--navy); }
.compare-table th.ky-col { background: var(--ky-blue); }
.compare-table th.oh-col { background: var(--oh-red); }

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--bg-light); }
.compare-table td:first-child { font-weight: 600; font-family: 'Libre Franklin', sans-serif; color: var(--navy); }

.highlight-ky { color: var(--ky-blue); font-weight: 600; }
.highlight-oh { color: var(--oh-red); font-weight: 600; }

.compare-callout {
  background: #fff8e6;
  border: 1.5px solid #f0d060;
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.93rem;
  color: var(--navy);
}

/* ---- FAQ ---- */
.faq-grid { display: flex; flex-direction: column; gap: 0; border-top: 1.5px solid var(--border); }

.faq-item { border-bottom: 1.5px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 2.5rem 1.1rem 0;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  transition: color 0.15s;
}

.faq-q:hover { color: var(--ky-blue); }

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--ky-mid);
  transition: transform 0.2s;
}

.faq-q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ---- COUNTY NAV ---- */
.county-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.county-group {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.county-group-header {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 0.75rem 1.25rem;
}

.county-link {
  display: flex;
  flex-direction: column;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.county-link:last-child { border-bottom: none; }
.county-link:hover { background: var(--bg-light); color: var(--ky-blue); }

.county-link span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.1rem;
}

.county-coming { opacity: 0.55; pointer-events: none; }
.county-coming::after { content: ' — Coming soon'; font-size: 0.75rem; color: var(--muted); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  color: #8fa8cc;
  padding: 2.5rem 0;
  border-top: 3px solid var(--ky-blue);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.footer-links a {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.85rem;
  color: #8fa8cc;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: #fff; }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-legal p { font-size: 0.78rem; color: #5a7090; line-height: 1.6; }

/* ---- UTILITIES ---- */
.hidden { display: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .calc-wrapper { grid-template-columns: 1fr; }
  .county-grid { grid-template-columns: 1fr; }
  .checklist-cols { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 700px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 200;
    gap: 0.25rem;
  }
  .nav-toggle { display: block; }
  .header-inner { position: relative; }
  .office-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .download-box { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
}

@media (max-width: 480px) {
  .compare-grid { grid-template-columns: 1fr 1fr; }
  .state-section-header { flex-direction: column; align-items: flex-start; }
  h2 { font-size: 1.5rem; }
  .calc-state-toggle { flex-direction: column; }
  .calc-state-btn { text-align: center; }
}

@media print {
  .site-header, .hero, .compare-bar, .calc-section,
  .offices-section, .compare-section, .county-nav-section,
  .site-footer, .download-section, nav, .faq-section { display: none !important; }
  .checklist-block { display: block !important; border: none; padding: 0; }
  .checklist-cols { grid-template-columns: 1fr 1fr; }
  .printable-list li { border-color: #ccc; }
  body { font-size: 12pt; }
  h3 { font-size: 14pt; }
}

/* ---- LOCATION PAGE EXTRAS ---- */
.breadcrumb-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: 'Libre Franklin', sans-serif;
}
.breadcrumb-bar a { color: var(--ky-blue); text-decoration: none; }
.breadcrumb-bar a:hover { text-decoration: underline; }

.location-hero {
  padding: 3rem 0 2.5rem;
}
.ky-location-hero { background: linear-gradient(135deg, #0d1b40 0%, #003494 100%); }
.oh-location-hero { background: linear-gradient(135deg, #1a0a0d 0%, #bb1133 100%); }
.location-hero h1 { color: #fff; }
.location-hero .hero-desc { color: #c8d8f0; font-size: 1rem; margin-top: 0.75rem; max-width: 680px; }

.location-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.location-office-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.office-detail-block { display: flex; gap: 0.85rem; }
.odb-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.odb-label {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.odb-val { font-weight: 600; color: var(--navy); font-size: 0.97rem; line-height: 1.5; }
.odb-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; line-height: 1.45; }

.hours-table { border-collapse: collapse; font-size: 0.88rem; margin-top: 0.35rem; width: 100%; }
.hours-table td { padding: 0.25rem 0.5rem 0.25rem 0; color: var(--slate); }
.hours-table td:first-child { font-weight: 600; color: var(--navy); width: 100px; }
.hours-table td.closed { color: #bb1133; font-weight: 500; }

.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.city-tag {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: var(--ky-light);
  color: var(--ky-blue);
  border: 1px solid rgba(0,52,148,0.15);
}

.oh-tag {
  background: var(--oh-light);
  color: var(--oh-red);
  border-color: rgba(187,17,51,0.15);
}

@media (max-width: 900px) {
  .location-main-grid { grid-template-columns: 1fr; }
}
