/* ============================================
   VILLAGE RESTORATION — DESIGN SYSTEM
   Navy + brass gold, drawn from the brand mark.
   Ember-red reserved solely for emergency actions.
   ============================================ */

:root {
  --navy-deep:    #12203A;
  --navy:         #1E3355;
  --navy-mid:     #2C4568;
  --navy-soft:    #3E5C86;
  --brass:        #B5904A;
  --brass-light:  #D8C79A;
  --ember:        #C1432A;
  --ember-dark:   #A2371F;
  --cream:        #F7F4EE;
  --cream-dim:    #EFEADF;
  --white:        #FFFFFF;
  --ink:          #1B2230;
  --ink-soft:     #5B6472;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-label:   'Barlow Semi Condensed', var(--font-body);

  --radius: 4px;
  --shadow-soft: 0 4px 24px rgba(18, 32, 58, 0.10);
  --shadow-lift: 0 12px 32px rgba(18, 32, 58, 0.16);
  --max-width: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy-deep);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.86rem;
  color: var(--brass);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-emergency {
  background: var(--ember);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-emergency:hover { background: var(--ember-dark); box-shadow: var(--shadow-lift); }

.btn-gold {
  background: var(--brass);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--brass-light); }
.nav-cta .btn-gold-desktop {
  padding: 16px 32px;
  font-size: 1.05rem;
  display: none;
}
@media (min-width: 721px) {
  .nav-cta .btn-gold-desktop { display: inline-flex; }
}

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

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-block { width: 100%; }

/* ---------- Emergency status strip ---------- */
.status-strip {
  background: var(--navy-deep);
  color: var(--brass-light);
  font-family: var(--font-label);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}
.status-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF6D;
  margin-right: 8px;
  box-shadow: 0 0 0 rgba(76,175,109,0.6);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(76,175,109,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(76,175,109,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,175,109,0); }
}
.status-strip a { color: var(--white); font-weight: 600; }
.status-strip a:hover { color: var(--brass-light); }

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dim);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 46px; width: auto; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy-deep);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.brand-text span {
  display: block;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 2px;
  white-space: nowrap;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav.main-nav a {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color .15s ease;
}
nav.main-nav a:hover,
nav.main-nav a.active { border-color: var(--brass); color: var(--navy-deep); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-deep);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -12%;
  width: 640px;
  height: 640px;
  background: url('assets/shield-icon.png') center/contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}
.hero .container {
  position: relative;
  padding: 88px 24px 96px;
  max-width: 760px;
}
.hero h1 { color: var(--white); }
.hero .lede {
  font-size: 1.15rem;
  color: #D9E0EC;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-bar {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}
.trust-item {
  font-family: var(--font-label);
  font-size: 0.94rem;
  color: #C9D3E2;
  letter-spacing: 0.01em;
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brass-light);
  font-weight: 700;
}

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-head { max-width: 620px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: var(--brass);
  margin-top: 16px;
}
.section-head.center h2::after { margin-left: auto; margin-right: auto; }

.bg-cream-dim { background: var(--cream-dim); }
.bg-navy { background: var(--navy-deep); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: #C9D3E2; }

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--cream-dim);
  border-top: 3px solid var(--brass);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.service-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--brass-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
}
.service-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.service-card p { font-size: 1rem; margin-bottom: 14px; }
.service-card .link { font-family: var(--font-label); font-weight: 600; color: var(--navy); font-size: 0.88rem; }
.service-card .link:hover { color: var(--ember); }

/* ---------- Two column ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 20px 0; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 9px 0;
  font-size: 0.98rem;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--brass);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/60% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/60% no-repeat;
}

.callout-card {
  background: var(--white);
  border-left: 4px solid var(--brass);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-soft);
}

/* ---------- Service area chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip {
  font-family: var(--font-label);
  font-size: 0.94rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--cream-dim);
  color: var(--navy);
  transition: background .15s ease, border-color .15s ease;
}
.chip:hover { background: var(--brass-light); border-color: var(--brass); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 8px;
}
.step .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brass);
  opacity: 0.5;
  display: block;
  margin-bottom: 6px;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-deep);
  color: #B9C3D4;
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid a, .footer-grid p { color: #B9C3D4; font-size: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--brass-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: #8390A5;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 40px; }
.footer-brand strong { color: var(--white); font-family: var(--font-display); font-size: 1.1rem; }

/* ---------- Mobile sticky action bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--white);
  border-top: 1px solid var(--cream-dim);
  box-shadow: 0 -6px 20px rgba(18,32,58,0.14);
}
.mobile-bar .row { display: grid; grid-template-columns: 1fr 1fr; }
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 8px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.95rem;
}
.mobile-bar .call { background: var(--ember); color: var(--white); }
.mobile-bar .email { background: var(--navy); color: var(--white); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lift);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #DDD7C8;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
  background: var(--white);
}
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.9rem; color: var(--ink-soft); margin-top: 6px; }
#form-status { margin-top: 16px; font-family: var(--font-label); font-weight: 600; }
#form-status.success { color: #2E7D4F; }
#form-status.error { color: var(--ember); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
  padding: 56px 0 60px;
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -6%;
  top: -30%;
  width: 420px;
  height: 420px;
  background: url('assets/shield-icon.png') center/contain no-repeat;
  opacity: 0.14;
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: var(--brass-light); }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: #C9D3E2; max-width: 620px; }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-dim);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-soft);
}
.faq-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.faq-item p { font-size: 1.02rem; margin-bottom: 0; }
@media (max-width: 720px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ---------- Nav Dropdown ---------- */
.has-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 5px; cursor: pointer; background: none; border: none; font: inherit; }
.dropdown-toggle::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--white);
  border: 1px solid var(--cream-dim);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  min-width: 240px;
  padding: 10px;
  z-index: 80;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 500;
  border-bottom: none !important;
  color: var(--navy);
}
.dropdown-menu a:hover { background: var(--cream-dim); color: var(--navy-deep); }
.dropdown-menu hr { border: none; border-top: 1px solid var(--cream-dim); margin: 6px 4px; }

/* ---------- Trust Badge Strip ---------- */
.badge-strip {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dim);
  border-top: 1px solid var(--cream-dim);
  padding: 22px 0;
}
.badge-strip .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 34px;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.badge-item .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--navy-deep);
  padding: 44px 0;
}
.stats-strip .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-strip .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--brass-light);
  display: block;
}
.stats-strip .label {
  font-family: var(--font-label);
  font-size: 0.84rem;
  color: #C9D3E2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---------- Who We Serve ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.who-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dim);
  padding: 30px 26px;
  text-align: left;
}
.who-card .service-icon { margin-bottom: 16px; }
.who-card h3 { margin-bottom: 8px; }
.who-card p { font-size: 1rem; margin-bottom: 0; }

/* ---------- Photo Placeholder ---------- */
.photo-placeholder {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 14px),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 20px;
}
.photo-placeholder .icon { font-size: 2.2rem; opacity: 0.9; }
.photo-placeholder .label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass-light);
}
.photo-placeholder.light {
  background:
    repeating-linear-gradient(135deg, rgba(18,32,58,0.04) 0px, rgba(18,32,58,0.04) 2px, transparent 2px, transparent 14px),
    var(--cream-dim);
  color: var(--navy-soft);
}
.photo-placeholder.light .label { color: var(--navy); }
.photo-placeholder.short { min-height: 180px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-family: var(--font-label);
  font-size: 0.9rem;
  color: #C9D3E2;
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--brass-light); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Related services sidebar ---------- */
.related-services {
  background: var(--white);
  border: 1px solid var(--cream-dim);
  border-radius: var(--radius);
  padding: 24px;
}
.related-services h4 {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 14px;
}
.related-services ul { list-style: none; padding: 0; margin: 0; }
.related-services li { border-bottom: 1px solid var(--cream-dim); }
.related-services li:last-child { border-bottom: none; }
.related-services a {
  display: block;
  padding: 12px 4px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.related-services a:hover { color: var(--ember); }
.related-services a.active { color: var(--ember); }

.trust-bar.cols-5 { grid-template-columns: repeat(5, 1fr); }

/* ---------- Partners Strip ---------- */
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.partner-item {
  background: var(--white);
  border: 1px solid var(--cream-dim);
  border-radius: var(--radius);
  padding: 14px 22px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.eco-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--cream-dim);
  border-left: 4px solid #4C8B5E;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 24px;
  font-size: 0.94rem;
  color: var(--ink);
}
.eco-note .leaf { font-size: 1.3rem; }

/* ---------- Embedded Map ---------- */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-dim);
  min-height: 320px;
  box-shadow: var(--shadow-soft);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip .row { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  body { padding-bottom: 64px; }
  .mobile-bar { display: block; }
  .card-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-two { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .status-strip .container {
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .status-strip > .container > span:first-child { font-size: 0.8rem; }
  .status-strip a {
    font-size: 1.15rem;
    font-weight: 700;
  }
  .hero .container { padding: 56px 20px 64px; }
  .who-grid { grid-template-columns: 1fr; }
  .stats-strip .row { grid-template-columns: 1fr 1fr; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 14px; display: none; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .dropdown-toggle { width: 100%; justify-content: space-between; }
  .badge-strip .row { gap: 12px 22px; justify-content: flex-start; }
}

/* Mobile nav drawer */
nav.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  padding: 18px 24px 24px;
  border-bottom: 1px solid var(--cream-dim);
  box-shadow: var(--shadow-soft);
  gap: 14px;
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}
