/* ============================================================
   ARCH — Alabama Rural Coalition for the Homeless
   Stylesheet
   ============================================================ */

:root {
  --navy: #1f4a24;
  --teal: #2f7d32;
  --teal-dark: #1b5e20;
  --gold: #e8721e;
  --gold-dark: #c15d14;
  --cream: #faf8f3;
  --cream-2: #f1ece0;
  --ink: #20281f;
  --ink-soft: #4c5449;
  --white: #ffffff;
  --border: #e2ddc9;
  --shadow: 0 10px 30px rgba(20, 40, 20, 0.08);
  --shadow-sm: 0 4px 14px rgba(20, 40, 20, 0.06);
  --radius: 14px;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Lora", Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--gold-dark); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--tight { padding: 48px 0; }

.section--alt {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover { background: var(--gold-dark); color: var(--white); }

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--dark {
  background: var(--teal);
  color: var(--white);
}
.btn--dark:hover { background: var(--teal-dark); }

.btn--sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__wordmark-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__divider {
  width: 2px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

.brand__arch {
  font-family: "Anton", "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--teal-dark);
  letter-spacing: -0.01em;
  text-shadow: 1.5px 1.5px 0 rgba(0,0,0,0.12);
}

.brand__alabama {
  font-family: "Anton", "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.12);
}

.brand__sub {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--teal-dark);
  border-bottom-color: var(--gold);
}

.nav__dropdown { position: relative; }

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav__dropdown-toggle:hover { color: var(--teal-dark); border-bottom-color: var(--gold); }

.nav__dropdown-toggle svg { width: 10px; height: 7px; flex-shrink: 0; transition: transform 0.18s ease; }

.nav__dropdown.dropdown-open .nav__dropdown-toggle svg,
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  min-width: 270px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.14);
  z-index: 50;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.dropdown-open .nav__dropdown-menu {
  display: block;
}

.nav__dropdown-menu li { margin: 0; }

.nav__dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  border-bottom: none !important;
  font-size: 0.9rem;
  line-height: 1.3;
  white-space: normal;
}

.nav__dropdown-menu a:hover,
.nav__dropdown-menu a[aria-current="page"] {
  background: var(--cream);
  color: var(--teal-dark);
}

.nav__cta { display: flex; align-items: center; gap: 14px; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.25s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 55%, var(--teal) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero__bridge {
  position: absolute;
  inset: auto 0 0 0;
  opacity: 0.14;
  pointer-events: none;
}

.hero__eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
  display: block;
}

.hero h1 { color: var(--white); margin-bottom: 20px; }

.hero p.lead {
  color: rgba(255,255,255,0.86);
  font-size: 1.12rem;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(6px);
}

.hero__panel h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 14px; }

.hero__stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hero__stat:last-child { border-bottom: none; }
.hero__stat b { color: var(--gold); font-family: "Lora", serif; font-size: 1.3rem; display: block; }
.hero__stat span { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* ---------- Values / Cards ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal);
}
.card__icon svg { width: 24px; height: 24px; }

.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 0.96rem; }

.value-card {
  text-align: center;
  padding: 34px 24px;
}
.value-card .num {
  font-family: "Lora", serif;
  font-size: 0.85rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

/* ---------- Mission split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split blockquote {
  margin: 0;
  padding: 24px 26px;
  background: var(--cream-2);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  font-family: "Lora", serif;
  font-style: italic;
  color: var(--navy);
  font-size: 1.08rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--teal-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.82); margin: 0; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy), var(--teal-dark));
  color: var(--white);
  padding: 64px 0 56px;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; font-size: 1.05rem; margin-bottom: 0; }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }

/* ---------- Table ---------- */
.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
th, td {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
th {
  background: var(--cream-2);
  color: var(--navy);
  font-family: "Lora", serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}
tr:last-child td { border-bottom: none; }
td.status {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Timeline ---------- */
.timeline {
  border-left: 3px solid var(--border);
  margin-left: 8px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.timeline__item { position: relative; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline__date {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

/* ---------- Resource list ---------- */
.resource-group h3 {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream-2);
}
.resource-list { list-style: none; margin: 0 0 34px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.resource-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.94rem;
  transition: 0.15s;
}
.resource-list li a:hover {
  border-color: var(--gold);
  background: var(--cream-2);
  color: var(--teal-dark);
}
.resource-list li a .tag {
  margin-left: auto;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--teal);
  padding: 3px 9px;
  border-radius: 999px;
  flex-shrink: 0;
}

/* ---------- Contact / info panel ---------- */
.info-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.info-panel h3 { margin-bottom: 16px; }
.info-row {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
}
.info-row:last-child { border-bottom: none; }
.info-row strong { min-width: 76px; color: var(--navy); }

.callout {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.callout--gold { border-left: 4px solid var(--gold); }
.callout--teal { border-left: 4px solid var(--teal); background: #eef4f2; }

/* ---------- Quote banner ---------- */
.quote-banner {
  background: var(--teal-dark);
  border-radius: var(--radius);
  padding: 50px 46px;
  text-align: center;
}
.quote-banner blockquote {
  margin: 0 auto 16px;
  max-width: 780px;
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.4;
}
.quote-banner cite {
  display: block;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.testimonial-card blockquote {
  margin: 0 0 16px;
  font-family: "Lora", serif;
  font-style: italic;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
}
.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--teal-dark);
  font-size: 0.92rem;
}
.testimonial-card cite span {
  display: block;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.86rem;
  margin-top: 2px;
}

/* ---------- Members ---------- */
.member-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.member-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--ink);
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.org-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  padding: 11px 15px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-grid p, .footer-grid a { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-divider { width: 2px; height: 18px; background: rgba(255,255,255,0.3); flex-shrink: 0; }
.footer-arch { font-family: "Anton", "Inter", sans-serif; font-weight: 400; font-size: 1.5rem; color: var(--white); letter-spacing: -0.01em; }
.footer-alabama { font-family: "Anton", "Inter", sans-serif; font-weight: 400; font-size: 1.05rem; color: var(--gold); letter-spacing: 0; text-transform: uppercase; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 48px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .member-pill-grid, .org-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .quote-banner blockquote { font-size: 1.25rem; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta .btn--dark { display: none; }
  .nav__toggle { display: block; }
  body.nav-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--border);
  }
  body.nav-open .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; }
  body.nav-open .nav__links { align-items: stretch; }
  .nav__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav__dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin: 0 0 0 14px;
    padding: 0;
    min-width: 0;
  }
  .nav__dropdown:hover .nav__dropdown-menu { display: none; }
  .nav__dropdown.dropdown-open .nav__dropdown-menu { display: block; }
  .nav__dropdown-menu a { padding: 10px 0; border-bottom: 1px dashed var(--border) !important; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .member-pill-grid, .org-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
}

/* ---------- Service area / CoC page additions ---------- */
.coc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 10px;
}
.stat-big {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-big .num {
  font-family: "Lora", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal-dark);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-big .label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.region-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.region-card .count {
  display: block;
  font-size: 0.76rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.county-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.county-chip {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--ink);
}

.state-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(160deg, var(--teal-dark), var(--navy));
  border-radius: var(--radius);
  padding: 40px 20px;
  color: var(--white);
  height: 100%;
  text-align: center;
}
.state-badge svg { width: 92px; height: auto; margin-bottom: 6px; }
.state-badge .big { font-family: "Lora", serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.state-badge .small { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-top: 4px; }

.resp-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.source-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 10px;
}
.source-note a { color: var(--teal-dark); }

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.94rem;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

@media (max-width: 900px) {
  .coc-stats { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; }
}

/* ---------- Sign-up / request forms (Netlify Forms) ---------- */
.site-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47, 125, 50, 0.15);
}

.form-field textarea { resize: vertical; min-height: 100px; }

.form-hidden { position: absolute; left: -9999px; top: -9999px; }

.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .site-form { padding: 22px; }
}
