/* ─────────────────────────────────────────────────────────────────────────────
   Headlands Surveying — site stylesheet
   A contained, card-based system in the Headlands brand:
   Expose (display) · Karma (body) · Erode (numerals)
   Palette: pine · gold · poppy · pacific on warm paper.
   Soft layered shadows, rounded surfaces, translucent nav.
   ──────────────────────────────────────────────────────────────────────────── */

@import url("../fonts/fonts.css");

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --paper:        #F3F0E8;
  --surface:      #FCFBF7;
  --surface-soft: #ECE6D8;

  --pine:    #1D3B36;
  --pine-2:  #16302B;
  --pine-soft:#DCE6E0;

  --poppy:   #D8552C;
  --poppy-2: #A8401F;

  --gold:    #C49A45;
  --pacific: #2A6076;

  --text:    #1D3B36;
  --muted:   #5A6B65;
  --divider: #DCD6C7;

  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-sm: 0 8px 24px rgba(29,59,54,0.06);
  --shadow:    0 22px 54px rgba(29,59,54,0.10);
  --shadow-lg: 0 34px 80px rgba(29,59,54,0.14);

  --font-display: "Expose", Georgia, "Times New Roman", serif;
  --font-body:    "Karma", Georgia, serif;
  --font-num:     "Erode", Georgia, serif;

  --maxw: 1180px;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.1; }
.num { font-family: var(--font-num); font-feature-settings: "tnum" 1; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 76px 0; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--poppy);
}
.lead { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 13px 26px; border-radius: var(--radius-md);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--poppy); color: #fff; box-shadow: 0 14px 26px rgba(216,85,44,0.22); }
.btn-primary:hover { background: var(--poppy-2); transform: translateY(-2px); box-shadow: 0 20px 34px rgba(216,85,44,0.28); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--divider); }
.btn-ghost:hover { border-color: var(--pine); transform: translateY(-2px); }
.btn-light { background: var(--surface); color: var(--pine); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:focus-visible { outline: 2px solid var(--pacific); outline-offset: 2px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--poppy);
}
.link-arrow span { transition: transform .18s ease; }
.link-arrow:hover span { transform: translateX(4px); }

/* ── Nav (translucent, sticky, pill links) ──────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,249,246,0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-brand { display: flex; align-items: center; gap: 11px; }
.nav-logo { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.brand-word { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--pine); }
.brand-sub { font-family: var(--font-body); font-weight: 400; font-size: 0.95rem; color: var(--muted); margin-left: 0.35em; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-link {
  display: inline-block; padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: var(--muted);
  transition: color .16s ease, background .16s ease;
}
.nav-link:hover { color: var(--text); background: var(--surface-soft); }
.nav-link.active { color: var(--pine); background: var(--pine-soft); }
.nav-cta { margin-left: 6px; padding: 9px 20px; border-radius: var(--radius-pill); background: var(--poppy); color: #fff; font-size: 0.82rem; font-weight: 600; transition: background .18s ease, transform .18s ease; }
.nav-cta:hover { background: var(--poppy-2); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--pine); }

/* ── Hero (home) ─────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; text-align: center; padding: 92px 0 84px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 50% 0%, rgba(196,154,69,0.16), transparent 70%),
    radial-gradient(70% 60% at 85% 20%, rgba(42,96,118,0.10), transparent 65%),
    radial-gradient(80% 70% at 10% 90%, rgba(216,85,44,0.08), transparent 60%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 24px; }
.hero-seal { width: clamp(78px, 12vw, 104px); height: clamp(78px, 12vw, 104px); margin: 0 auto 26px; object-fit: contain; }
.hero h1 { font-size: clamp(2.6rem, 5.2vw, 4.2rem); font-weight: 700; color: var(--pine); }
.hero h1 em { font-style: normal; color: var(--poppy); }
.hero-sub { margin: 22px auto 36px; max-width: 600px; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-meta { margin-top: 30px; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ── Section heads ───────────────────────────────────────────────────────── */
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--pine); margin-top: 12px; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }

/* ── Service card grid ───────────────────────────────────────────────────── */
.svc-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.svc-card {
  background: var(--surface); border: 1px solid var(--divider); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--pine-soft); }
.svc-card h3 { font-size: 1.12rem; color: var(--pine); }
.svc-card .svc-rule { width: 34px; height: 3px; border-radius: 3px; background: var(--gold); margin: 14px 0 14px; }
.svc-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.6; }
.svc-foot { margin-top: 36px; }

/* ── Project gallery ─────────────────────────────────────────────────────── */
.gallery { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); }
.project { position: relative; overflow: hidden; border-radius: var(--radius-lg); min-height: 230px; box-shadow: var(--shadow-sm); }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project:hover img { transform: scale(1.05); }

/* ── About strip (home) — split panel ───────────────────────────────────── */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px; align-items: center; }
.panel {
  background: var(--surface); border: 1px solid var(--divider);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow);
}
.panel h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--pine); }
.panel p { color: var(--muted); margin-top: 18px; line-height: 1.8; }
.panel .link-arrow { margin-top: 22px; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split-brand { background: var(--pine-soft); display: flex; align-items: center; justify-content: center; }
.split-brand img { position: static; width: 46%; height: auto; }

/* ── Service-area band (soft, chips) ────────────────────────────────────── */
.areas { background: var(--surface-soft); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.areas-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.areas-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.chip-list { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  font-family: var(--font-body); font-size: 0.82rem; color: var(--pine);
  background: var(--surface); border: 1px solid var(--divider); border-radius: var(--radius-pill);
  padding: 6px 15px;
}

/* ── Feature CTA card ────────────────────────────────────────────────────── */
.feature {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--pine); color: var(--surface);
  padding: 60px 56px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.feature::before { content: ""; position: absolute; inset: 0; opacity: 0.14; background-size: cover; background-position: center; filter: grayscale(0.4); }
.feature[data-bg]::before { background-image: var(--feat-img); }
.feature > * { position: relative; z-index: 1; }
.feature h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--surface); max-width: 560px; line-height: 1.15; }
.feature p { color: rgba(252,251,247,0.72); margin-top: 12px; max-width: 520px; }

/* ── Page hero (inner pages) ─────────────────────────────────────────────── */
.page-hero { position: relative; overflow: hidden; padding: 64px 0 52px; border-bottom: 1px solid var(--divider); }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 80% at 12% 0%, rgba(196,154,69,0.14), transparent 70%),
              radial-gradient(50% 70% at 95% 100%, rgba(42,96,118,0.10), transparent 65%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; color: var(--pine); margin-top: 16px; max-width: 760px; }
.page-hero h1 .subtitle { display: block; color: var(--muted); font-weight: 500; }
.page-hero p.lead { margin-top: 18px; max-width: 640px; }

/* ── Services page — detail rows ────────────────────────────────────────── */
.svc-jump { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 44px; }
.svc-jump a {
  font-size: 0.8rem; font-weight: 600; color: var(--pine);
  background: var(--surface); border: 1px solid var(--divider); border-radius: var(--radius-pill);
  padding: 7px 15px; transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.svc-jump a:hover { background: var(--pine); color: var(--surface); border-color: var(--pine); }

.svc-detail {
  display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start;
  background: var(--surface); border: 1px solid var(--divider); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm); scroll-margin-top: 90px;
}
.svc-detail + .svc-detail { margin-top: 18px; }
.svc-detail h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--pine); }
.svc-detail .svc-rule { width: 36px; height: 3px; border-radius: 3px; background: var(--gold); margin-top: 16px; }
.svc-detail p { color: var(--muted); line-height: 1.8; font-size: 0.97rem; }
.svc-detail p + p { margin-top: 14px; }

/* ── About page ──────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--pine); margin-bottom: 22px; }
.prose h3 { font-size: 1.3rem; color: var(--poppy); margin: 36px 0 16px; }
.prose p { color: var(--muted); line-height: 1.9; margin-bottom: 18px; max-width: 600px; }

.bio-card {
  display: grid; grid-template-columns: 150px 1fr; gap: 26px; align-items: start;
  background: var(--surface); border: 1px solid var(--divider); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow); margin-top: 8px;
}
.bio-avatar { width: 150px; height: 150px; border-radius: var(--radius-md); object-fit: cover; background: var(--surface-soft); }
.bio-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--pine); }
.bio-title { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--poppy); margin: 6px 0 14px; }
.bio-body { color: var(--muted); line-height: 1.8; font-size: 0.96rem; margin-bottom: 12px; }
.bio-body:last-child { margin-bottom: 0; }

.aside-card { background: var(--surface); border: 1px solid var(--divider); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.aside-card + .aside-card { margin-top: 18px; }
.aside-card h3 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--poppy); margin-bottom: 16px; font-family: var(--font-display); }
.aside-card ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.aside-card li { color: var(--text); font-size: 0.93rem; padding-bottom: 11px; border-bottom: 1px solid var(--divider); }
.aside-card li:last-child { border-bottom: none; padding-bottom: 0; }
.aside-portrait { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); margin-bottom: 18px; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq { max-width: 840px; }
.faq-group + .faq-group { margin-top: 40px; }
.faq-group-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-family: var(--font-display); margin-bottom: 12px; padding-left: 4px; }
.faq-item { background: var(--surface); border: 1px solid var(--divider); border-radius: var(--radius-md); margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 24px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: var(--pine); line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; color: var(--poppy); flex-shrink: 0; line-height: 1; transition: transform .2s ease; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-a { padding: 0 24px 22px; }
.faq-a p { color: var(--muted); line-height: 1.85; font-size: 0.95rem; }
.faq-a p + p { margin-top: 12px; }
.faq-a ul { margin: 12px 0 4px; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.faq-a li { color: var(--muted); font-size: 0.94rem; line-height: 1.6; padding-left: 18px; position: relative; }
.faq-a li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 8px; height: 2px; border-radius: 2px; background: var(--gold); }

/* ── County resources ───────────────────────────────────────────────────── */
.county-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.county-card { background: var(--surface); border: 1px solid var(--divider); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.county-card h3 { font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--pine); margin-bottom: 14px; }
.county-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.county-card a { font-size: 0.9rem; color: var(--pacific); border-bottom: 1px solid transparent; transition: border-color .15s ease, color .15s ease; }
.county-card a:hover { color: var(--poppy); border-bottom-color: var(--poppy); }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: start; }
.info-card { background: var(--surface); border: 1px solid var(--divider); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.info-card h2 { font-size: 1.5rem; color: var(--pine); }
.info-card > p { color: var(--muted); margin-top: 14px; line-height: 1.75; font-size: 0.96rem; }
.info-rows { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.info-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.info-value { font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: var(--pine); }
.info-value.num { font-family: var(--font-num); }
.info-value a:hover { color: var(--poppy); }
.checklist { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--divider); }
.checklist ul { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 9px; }
.checklist li { font-size: 0.9rem; color: var(--muted); line-height: 1.5; padding-left: 18px; position: relative; }
.checklist li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 8px; height: 2px; border-radius: 2px; background: var(--gold); }

.form-card { background: var(--surface); border: 1px solid var(--divider); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.4rem; color: var(--pine); margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.form-group label .optional { font-weight: 400; color: var(--muted); font-size: 0.74rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-md);
  border: 1px solid var(--divider); background: var(--paper); color: var(--text);
  outline: none; transition: border-color .18s ease, box-shadow .18s ease; -webkit-appearance: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A6B65' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--poppy); box-shadow: 0 0 0 3px rgba(216,85,44,0.12); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; margin-top: 4px; }

.hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
#turnstile-container { margin-bottom: 16px; }
#turnstile-container:empty { margin: 0; }
.form-status { margin-bottom: 16px; padding: 14px 16px; border-radius: var(--radius-md); font-size: 0.92rem; display: none; }
.form-status.is-success { display: block; background: #E4EEE8; color: #1D3B36; border: 1px solid #BCD6CC; }
.form-status.is-error { display: block; background: #FBE6DF; color: #8A3115; border: 1px solid #EFC3B2; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--pine); color: rgba(252,251,247,0.72); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 56px 24px 36px; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 38px; height: 38px; object-fit: contain; }
.footer-brand .brand-word { color: var(--surface); }
.footer-brand .brand-sub { color: rgba(252,251,247,0.6); }
.footer-tagline { font-size: 0.86rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.88rem; color: rgba(252,251,247,0.72); transition: color .16s ease; }
.footer-col a:hover { color: var(--surface); }
.footer-col address { font-style: normal; font-size: 0.88rem; line-height: 1.9; }
.footer-bottom { border-top: 1px solid rgba(252,251,247,0.16); }
.footer-bottom-inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 24px 30px; display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; font-size: 0.76rem; color: rgba(252,251,247,0.5); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 920px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 260px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .county-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-detail { grid-template-columns: 1fr; gap: 14px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(250,249,246,0.96); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--divider); padding: 10px 16px 14px;
  }
  .nav-links.open .nav-link, .nav-links.open .nav-cta { width: 100%; text-align: left; border-radius: var(--radius-md); }
  .nav-cta { margin-left: 0; margin-top: 4px; }
  .nav-toggle { display: flex; }
  .section { padding: 56px 0; }
  .svc-grid, .gallery, .county-grid, .form-row { grid-template-columns: 1fr; }
  .panel, .feature, .form-card, .info-card, .svc-detail { padding: 28px 24px; }
  .feature { flex-direction: column; align-items: flex-start; text-align: left; }
  .bio-card { grid-template-columns: 1fr; }
  .bio-avatar { width: 120px; height: 120px; }
}
