/* Shared CSS for regional + state SEO pages — minimal version of the home page */
:root {
  --flag-red: #B22234;
  --flag-red-d: #8a1a28;
  --flag-navy: #0a1e57;
  --flag-navy-d: #061238;
  --paper: #FFFFFF;
  --cream: #fbf7ee;
  --ink: #0d2c66;
  --sky-bg: #f6f9ff;
  --sky-card: #eaf3fd;
  --blue: #2f6fdb;
  --blue-deep: #0e3a8a;
  --line: #dce8f7;
  --muted: #5a6b87;
  --gold: #c9a44b;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--sky-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 880px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: 'Fraunces', serif; line-height: 1.15; color: var(--ink); }
h1 { font-weight: 800; font-size: clamp(34px, 5vw, 52px); margin-bottom: 16px; }
h2 { font-weight: 800; font-size: clamp(24px, 3.4vw, 36px); margin: 36px 0 12px; }
h3 { font-weight: 700; font-size: clamp(19px, 2.2vw, 24px); margin: 24px 0 8px; }
p { margin-bottom: 16px; color: #1a2540; font-size: 17px; }
ul { margin: 0 0 18px 22px; }
ul li { margin-bottom: 6px; }
em.script { font-style: normal; font-family: 'Caveat', cursive; color: var(--blue); font-size: 1.15em; }
a { color: var(--blue-deep); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--blue); }

.nav {
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-family: 'Fraunces', serif; font-weight: 800; font-size: 17px; }
.nav-logo .badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--flag-navy) 50%, var(--flag-red) 50%);
  color: #fff; font-size: 10px; font-weight: 800;
  font-family: 'Nunito', sans-serif;
}
.nav .btn {
  display: inline-flex; align-items: center;
  background: var(--flag-red); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 800; font-size: 14px; text-decoration: none;
}
.nav .btn:hover { background: var(--flag-red-d); }

.hero {
  background: linear-gradient(180deg, var(--flag-navy-d) 0%, var(--flag-navy) 100%);
  color: #fff;
  padding: 56px 0 50px;
  position: relative;
}
.hero::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 12px;
  background: repeating-linear-gradient(180deg, var(--flag-red) 0 4px, #fff 4px 8px, var(--flag-red) 8px 12px);
}
.hero h1 { color: #fff; }
.hero h1 em.script { color: #ffd884; }
.hero p { color: rgba(255,255,255,.85); font-size: 18px; max-width: 620px; margin-top: 14px; }
.hero .crumbs { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 16px; letter-spacing: .04em; }
.hero .crumbs a { color: rgba(255,255,255,.75); text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,.4); }

article.body { padding: 60px 0 40px; background: #fff; }
article.body strong { color: var(--flag-navy); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--flag-red); color: #fff;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 800; text-decoration: none;
  box-shadow: 0 8px 22px rgba(178,34,52,.30);
  margin: 14px 0 8px;
}
.btn-primary:hover { background: var(--flag-red-d); }

.state-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px; margin: 14px 0 30px;
}
.state-list .state {
  background: var(--sky-card); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 14px; font-weight: 700; font-size: 14px; color: var(--ink);
}
.state-list .state.live { background: var(--gold); color: #2c1f00; }
.state-list .state.live::after { content: " ✓"; }

.callout {
  background: var(--cream); border-left: 4px solid var(--flag-red);
  padding: 20px 22px; border-radius: 10px; margin: 28px 0;
}
.callout strong { font-family: 'Fraunces', serif; }

footer {
  background: var(--flag-navy-d); color: rgba(255,255,255,.7);
  padding: 40px 0 24px; margin-top: 60px;
}
footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; }
footer a { color: rgba(255,255,255,.75); margin-right: 14px; text-decoration: none; }
footer a:hover { color: #fff; }
