/* =============================================
   PlateRenew — styles.css
   Aesthetic: Clean utility + state-coded color
   Fonts: Sora (headings) + Source Serif 4 (body)
   ============================================= */

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

/* --- VARIABLES --- */
:root {
  --ky-blue: #003087;
  --ky-gold: #C8A84B;
  --oh-red: #BA0C2F;
  --oh-dark: #1a1a2e;
  --neutral-900: #111827;
  --neutral-700: #374151;
  --neutral-500: #6B7280;
  --neutral-200: #E5E7EB;
  --neutral-100: #F3F4F6;
  --neutral-50: #F9FAFB;
  --white: #FFFFFF;
  --accent-green: #16A34A;
  --accent-red: #DC2626;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--neutral-700);
  background: var(--white);
}
a { color: var(--ky-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
address { font-style: normal; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- HEADER --- */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--ky-blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.logo img { height: 38px; width: auto; }
.main-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-700);
  padding: 6px 13px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover {
  background: var(--neutral-100);
  color: var(--ky-blue);
  text-decoration: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--neutral-700);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,48,135,0.88) 0%, rgba(26,26,46,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 20px;
  color: var(--white);
}
.state-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.state-badge {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.state-badge.ky { background: var(--ky-gold); color: var(--neutral-900); }
.state-badge.oh { background: var(--oh-red); color: var(--white); }
.divider { font-size: 20px; color: rgba(255,255,255,0.5); }
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}
.hero-content h1 .accent { color: var(--ky-gold); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); text-decoration: none; }
.btn-ky { background: var(--ky-gold); color: var(--neutral-900); }
.btn-oh { background: var(--oh-red); color: var(--white); }
.btn-calc { background: var(--ky-blue); color: var(--white); width: 100%; margin-top: 8px; font-size: 16px; padding: 15px; }

/* --- COMPARE BANNER --- */
.compare-banner {
  background: var(--neutral-50);
  border-top: 4px solid var(--neutral-200);
  border-bottom: 4px solid var(--neutral-200);
  padding: 56px 0;
}
.compare-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 28px;
  text-align: center;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.compare-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.compare-state {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
}
.ky-card .compare-state { background: var(--ky-blue); color: var(--white); }
.oh-card .compare-state { background: var(--oh-red); color: var(--white); }
.compare-card ul { list-style: none; padding: 0; }
.compare-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--neutral-100);
  font-size: 15px;
  line-height: 1.5;
}
.compare-card li:last-child { border-bottom: none; }
.compare-note {
  background: #FEF3C7;
  border-left: 4px solid #D97706;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.6;
}

/* --- STATE SECTIONS --- */
.state-section { padding: 64px 0; }
.ohio-section { background: var(--neutral-50); }

.section-header { margin-bottom: 40px; }
.section-state-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.ky-header .section-state-label { background: var(--ky-blue); color: var(--white); }
.oh-header .section-state-label { background: var(--oh-red); color: var(--white); }
.section-state-label.oh { background: var(--oh-red); color: var(--white); }

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 10px;
}
.section-header p { color: var(--neutral-500); font-size: 16px; max-width: 680px; }

/* --- OFFICE CARDS --- */
.office-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.office-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--neutral-900);
  gap: 16px;
  flex-wrap: wrap;
}
.office-header h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.office-detail-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--ky-gold);
  white-space: nowrap;
}
.office-detail-link:hover { color: var(--white); text-decoration: none; }
.office-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.office-locations {
  padding: 24px;
  border-right: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.location-entry {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--neutral-100);
}
.location-entry:last-child { border-bottom: none; padding-bottom: 0; }
.location-entry strong { font-family: var(--font-head); font-size: 15px; color: var(--neutral-900); display: block; margin-bottom: 4px; }
.location-entry address { font-size: 14px; color: var(--neutral-500); margin-bottom: 6px; }
.hours { font-size: 14px; color: var(--neutral-700); margin: 4px 0; }
.location-entry p { font-size: 14px; margin: 3px 0; }
.office-details {
  padding: 24px;
  background: var(--neutral-50);
}
.office-details h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--neutral-500);
  margin-bottom: 14px;
}
.office-details ul { list-style: none; padding: 0; }
.office-details li {
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px solid var(--neutral-200);
  line-height: 1.5;
}
.office-details li:last-child { border-bottom: none; }

.expand-cta {
  text-align: center;
  padding: 20px;
  background: var(--neutral-100);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--neutral-500);
}

/* --- CALCULATOR --- */
.calculator-section {
  padding: 64px 0;
  background: var(--ky-blue);
}
.calculator-section h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.calc-intro { color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 600px; font-size: 16px; }
.calculator-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.calc-form { padding: 32px; }
.calc-field { margin-bottom: 18px; }
.calc-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--neutral-500);
  margin-bottom: 7px;
}
.calc-field select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--neutral-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--neutral-900);
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.calc-field select:focus { outline: none; border-color: var(--ky-blue); }
.calc-result {
  background: var(--neutral-50);
  border-left: 1px solid var(--neutral-200);
}
.result-inner { padding: 32px; }
.result-inner h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 20px;
}
.fee-line {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--neutral-200);
  font-size: 15px;
}
.fee-line.total {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--neutral-900);
  border-bottom: none;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 2px solid var(--neutral-900);
}
.fee-note { font-size: 13px; color: var(--neutral-500); margin-top: 12px; line-height: 1.5; }
.result-disclaimer { font-size: 12px; color: var(--neutral-500); margin-top: 16px; font-style: italic; line-height: 1.5; }

/* --- CHECKLIST --- */
.checklist-section { padding: 64px 0; }
.checklist-section h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 32px;
}
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.checklist-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.checklist-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid;
}
.ky-card h3 { color: var(--ky-blue); border-color: var(--ky-blue); }
.oh-card h3 { color: var(--oh-red); border-color: var(--oh-red); }
.checklist { list-style: none; padding: 0; margin-bottom: 20px; }
.checklist li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--neutral-100);
  font-size: 15px;
  line-height: 1.5;
}
.checklist li:last-child { border-bottom: none; }
.check { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.checklist li:has(.check:not(:contains('✗'))) .check { color: var(--accent-green); }
.checklist-note {
  background: var(--neutral-50);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--neutral-700);
}

/* --- FAQ --- */
.faq-section {
  padding: 64px 0;
  background: var(--neutral-50);
}
.faq-section h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 32px;
}
.faq-list { max-width: 800px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--ky-blue);
  transition: transform 0.2s;
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--neutral-700);
}
.faq-a.open { display: block; }
.faq-a a { color: var(--ky-blue); }

/* --- LOCATION HUB --- */
.location-hub {
  padding: 64px 0;
}
.location-hub h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 10px;
}
.location-hub > .container > p { color: var(--neutral-500); margin-bottom: 32px; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.location-group {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.loc-state-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.loc-state-label.ky { background: var(--ky-blue); color: var(--white); }
.loc-state-label.oh { background: var(--oh-red); color: var(--white); }
.location-list { list-style: none; padding: 0; }
.location-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-100);
  font-size: 15px;
}
.location-list li:last-child { border-bottom: none; }
.location-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ky-blue);
}
.location-list a:hover { text-decoration: none; color: var(--neutral-900); }
.location-list .coming-soon { color: var(--neutral-400); font-family: var(--font-head); }
.loc-note {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--neutral-500);
}

/* --- FOOTER --- */
.site-footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,0.75);
  padding-top: 48px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.6; }
.footer-links h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.65); }

/* --- RESPONSIVE --- */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px;
    border-bottom: 2px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 14px; }

  .compare-grid,
  .checklist-grid,
  .location-grid,
  .calculator-card { grid-template-columns: 1fr; }

  .calc-result { border-left: none; border-top: 1px solid var(--neutral-200); }

  .office-body { grid-template-columns: 1fr; }
  .office-locations { border-right: none; border-bottom: 1px solid var(--neutral-200); }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 560px) {
  .hero-content { padding: 48px 20px; }
  .hero-cta-row { flex-direction: column; }
  .btn { text-align: center; }
  .office-header { flex-direction: column; align-items: flex-start; }
}
