/* ============================================================
   Sergeant Major Stump Grinding LLC
   Stylesheet — military-themed, responsive, performance-first
   Palette: olive drab + khaki/sand + charcoal + brass accent
   ============================================================ */

:root {
  --od-deep: #20251a;      /* deep olive (darkest) */
  --od: #353d29;           /* olive drab */
  --od-2: #4b5320;         /* army green */
  --khaki: #b9a878;        /* khaki */
  --sand: #efe9da;         /* light parchment */
  --sand-2: #e3dac4;       /* deeper parchment */
  --ink: #161812;          /* near-black */
  --charcoal: #23261d;     /* charcoal section bg */
  --brass: #c9a227;        /* brass / gold accent */
  --brass-lt: #e7c766;
  --brass-dk: #9c7d1b;
  --paper: #faf7ef;        /* card on light */
  --text: #23261d;         /* body text on light */
  --text-light: #e9e6db;   /* body text on dark */
  --muted: #6b6a59;        /* muted text */
  --muted-dk: #b8b4a3;     /* muted on dark */
  --line: #d7cfba;         /* hairline on light */
  --line-dk: #444a36;      /* hairline on dark */

  --maxw: 1160px;
  --pad: clamp(1rem, 4vw, 2.5rem);
  --radius: 6px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.10);

  --display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--sand);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brass-dk); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.06; letter-spacing: 0.01em; text-transform: uppercase; margin: 0 0 0.5em; }
p { margin: 0 0 1rem; }
.nowrap { white-space: nowrap; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--brass); color: var(--ink); padding: 0.6rem 1rem; font-weight: 700; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.98rem; padding: 0.85rem 1.5rem; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--brass); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brass-lt); }
.btn-ghost { background: transparent; color: var(--text-light); border-color: rgba(233,230,219,.5); }
.btn-ghost:hover { border-color: var(--brass); color: #fff; }
.btn-big { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-call { background: var(--brass); color: var(--ink); padding: 0.6rem 1rem; font-size: 0.92rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(28, 32, 22, 0.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 3px solid var(--brass);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 0.7rem; color: #fff; }
.brand:hover { text-decoration: none; }
.brand-emblem { filter: drop-shadow(0 2px 4px rgba(0,0,0,.4)); object-fit: contain; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; font-family: var(--display); }
.brand-line-1 { font-size: 0.82rem; letter-spacing: 0.28em; color: var(--brass-lt); text-transform: uppercase; }
.brand-line-2 { font-size: 1.2rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.02em; }
.brand-line-2 .llc { color: var(--brass); font-size: 0.7em; }

.main-nav { margin-left: auto; }
.nav-menu { display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  color: var(--text-light); font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 0.95rem; padding: 0.4rem 0; position: relative;
}
.nav-menu a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--brass); transition: width .2s ease; }
.nav-menu a:hover { color: #fff; text-decoration: none; }
.nav-menu a:hover::after { width: 100%; }

.header-call { white-space: nowrap; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background-color: #1d2116;
  background-image:
    linear-gradient(100deg, rgba(20,22,16,.92) 0%, rgba(32,40,24,.80) 42%, rgba(50,60,36,.58) 100%),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}
/* topographic contour texture */
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none; opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%23c9a227' stroke-width='1.1' opacity='0.6'%3E%3Cpath d='M-50 300 Q150 180 300 300 T650 300'/%3E%3Cpath d='M-50 340 Q150 220 300 340 T650 340'/%3E%3Cpath d='M-50 380 Q150 260 300 380 T650 380'/%3E%3Cpath d='M-50 260 Q150 140 300 260 T650 260'/%3E%3Cpath d='M-50 220 Q150 100 300 220 T650 220'/%3E%3Cpath d='M-50 420 Q150 300 300 420 T650 420'/%3E%3Cpath d='M-50 460 Q150 340 300 460 T650 460'/%3E%3Cpath d='M-50 180 Q150 60 300 180 T650 180'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 760px 760px;
}
.hero-inner { position: relative; padding-block: clamp(3.5rem, 9vw, 7rem); max-width: 860px; }
.eyebrow {
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: clamp(0.72rem, 2vw, 0.86rem); color: var(--brass-lt); margin-bottom: 1rem;
}
.eyebrow-rule { display: inline-block; width: 44px; height: 2px; background: var(--brass); }
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem); margin: 0 0 1rem; color: #fff;
  text-shadow: 0 3px 18px rgba(0,0,0,.4);
}
.hero-sub { font-size: clamp(1.05rem, 2.4vw, 1.3rem); max-width: 60ch; color: #eef0e6; margin-bottom: 1.8rem; }
.hero-sub strong { color: var(--brass-lt); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; list-style: none; margin: 0; padding: 1.3rem 0 0; border-top: 1px solid rgba(255,255,255,.16);
  font-size: 0.95rem; color: #d9dccb;
}
.hero-badges strong { color: var(--brass-lt); font-family: var(--display); font-size: 1.05rem; }

/* ---------- Trust strip (marquee) ---------- */
.trust-strip { background: var(--brass); color: var(--ink); overflow: hidden; border-block: 2px solid var(--brass-dk); }
.trust-track {
  display: flex; gap: 2.5rem; white-space: nowrap; width: max-content;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; font-size: 0.95rem;
  padding: 0.6rem 1.25rem; animation: marquee 70s linear infinite;
}
.trust-track span { opacity: .92; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .trust-track { animation: none; flex-wrap: wrap; white-space: normal; width: auto; justify-content: center; } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-label {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.24em; font-weight: 600;
  font-size: 0.82rem; color: var(--brass-dk); margin-bottom: 0.6rem;
}
.section-label.light { color: var(--brass-lt); }
.section-head { margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.8rem, 4.5vw, 2.9rem); }
.section-head.center { text-align: center; max-width: 760px; margin-inline: auto; }
.section-intro { color: var(--muted); font-size: 1.08rem; }

/* ---------- About ---------- */
.about { background: var(--sand); }
.about-grid { display: grid; grid-template-columns: 260px 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.about-emblem-wrap { position: sticky; top: 96px; text-align: center; }
.about-emblem-wrap img {
  margin-inline: auto;
  width: 220px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.18));
}
.about h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); color: var(--od-deep); }
.about-copy p { max-width: 62ch; }
.mission-statement {
  border-left: 4px solid var(--brass); background: var(--paper); padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0; font-size: 1.1rem;
}
.owner-sign { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; color: var(--od-2); font-size: 0.95rem; margin-top: 1rem; }
.promise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 1.8rem; }
.promise { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; border-top: 3px solid var(--od-2); }
.promise h3 { font-size: 1.05rem; color: var(--od-2); margin-bottom: 0.35rem; }
.promise p { margin: 0; font-size: 0.96rem; color: var(--muted); }

/* ---------- Services ---------- */
.services { background: var(--charcoal); color: var(--text-light); position: relative; }
.services .section-label { color: var(--brass-lt); }
.services h2 { color: #fff; }
.services .section-intro { color: var(--muted-dk); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: linear-gradient(180deg, #2c3122, #262a1d); border: 1px solid var(--line-dk);
  border-radius: var(--radius); padding: 1.6rem 1.5rem; transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
  border-top: 3px solid var(--brass);
}
.card:hover { transform: translateY(-4px); border-color: var(--brass); box-shadow: 0 16px 36px rgba(0,0,0,.35); }
.card-icon { color: var(--brass-lt); display: inline-flex; margin-bottom: 0.8rem; }
.card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.4rem; }
.card p { color: var(--muted-dk); margin: 0; font-size: 0.97rem; }

/* ---------- Why ---------- */
.why { background: var(--od-deep); color: var(--text-light); }
.why .section-label { color: var(--brass-lt); }
.why h2 { color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-item { position: relative; padding-top: 0.5rem; }
.why-num { font-family: var(--display); font-weight: 700; font-size: 2.6rem; color: var(--brass); opacity: .85; line-height: 1; display: block; margin-bottom: 0.4rem; }
.why-item h3 { color: #fff; font-size: 1.12rem; }
.why-item p { color: var(--muted-dk); font-size: 0.96rem; margin: 0; }

/* ---------- Service area ---------- */
.area { background: var(--sand); }
.area-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: center; }
.area h2 { color: var(--od-deep); font-size: clamp(1.7rem, 4vw, 2.6rem); }
.town-list { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem 1rem; padding: 0; margin: 1.4rem 0 1.8rem; }
.town-list li {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.92rem; color: var(--od);
  padding-left: 1.1rem; position: relative;
}
.town-list li::before { content: "▸"; color: var(--brass-dk); position: absolute; left: 0; }
.area-card {
  background: linear-gradient(155deg, #2d3522, #1d2116); border-radius: var(--radius); border: 1px solid var(--line-dk);
  border-top: 3px solid var(--brass); box-shadow: var(--shadow); aspect-ratio: 4 / 3; display: grid; place-items: center; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.area-card::before {
  content: ""; position: absolute; inset: 0; opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cg fill='none' stroke='%23c9a227' stroke-width='1' opacity='0.5'%3E%3Cpath d='M0 200 Q100 120 200 200 T400 200'/%3E%3Cpath d='M0 240 Q100 160 200 240 T400 240'/%3E%3Cpath d='M0 160 Q100 80 200 160 T400 160'/%3E%3C/g%3E%3C/svg%3E");
}
.area-card-inner { position: relative; padding: 1.5rem; }
.area-card-inner img { margin: 0 auto 0.8rem; object-fit: contain; height: auto; }
.area-card-big { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.7rem; margin: 0; color: var(--brass-lt); }
.area-card-small { color: #d9dccb; font-size: 0.9rem; letter-spacing: 0.04em; margin: 0.2rem 0 0; }

/* ---------- Reviews ---------- */
.reviews { background: var(--charcoal); color: var(--text-light); }
.reviews .section-label { color: var(--brass-lt); }
.reviews h2 { color: #fff; }
.reviews .section-intro { color: var(--muted-dk); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review {
  position: relative;
  background: linear-gradient(180deg, #2c3122, #262a1d); border: 1px solid var(--line-dk); border-radius: var(--radius);
  padding: 1.5rem; margin: 0; border-left: 3px solid var(--brass);
  transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
}
.review:hover { transform: translateY(-4px); border-color: var(--brass); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35); }
.review-link {
  display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.9rem;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; color: var(--brass-lt);
}
.review-link::after { content: ""; position: absolute; inset: 0; } /* stretch link over the whole card */
.review:hover .review-link { color: #fff; text-decoration: none; }
.reviews .section-intro a { color: var(--brass-lt); text-decoration: underline; text-underline-offset: 2px; }
.stars { color: var(--brass); letter-spacing: 0.15em; margin-bottom: 0.6rem; font-size: 1.05rem; }
.review blockquote { margin: 0 0 0.9rem; font-size: 1.02rem; color: #eef0e6; }
.review figcaption { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; color: var(--muted-dk); }

/* ---------- Video / timelapse ---------- */
.video { background: linear-gradient(160deg, #23261d 0%, #161812 100%); color: var(--text-light); position: relative; overflow: hidden; }
.video::before {
  content: ""; position: absolute; inset: 0; opacity: .25; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cg fill='none' stroke='%23c9a227' stroke-width='1' opacity='0.5'%3E%3Cpath d='M0 300 Q150 200 300 300 T600 300'/%3E%3Cpath d='M0 340 Q150 240 300 340 T600 340'/%3E%3Cpath d='M0 260 Q150 160 300 260 T600 260'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 700px 700px;
}
.video .section-label { color: var(--brass-lt); }
.video h2 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
.video-grid { position: relative; display: grid; grid-template-columns: 1fr 360px; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: center; }
.video-copy p { color: var(--muted-dk); max-width: 52ch; }
.video-points { list-style: none; padding: 0; margin: 1.1rem 0 1.6rem; display: grid; gap: 0.5rem; }
.video-points li { padding-left: 1.6rem; position: relative; color: #e9e6db; }
.video-points li::before { content: "✓"; color: var(--brass-lt); position: absolute; left: 0; font-weight: 700; }
.video-frame { margin: 0; justify-self: center; }
.timelapse {
  width: 100%; max-width: 320px; height: auto; aspect-ratio: 9 / 16; max-height: 72vh;
  border-radius: 14px; background: #000; display: block;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5); border: 3px solid rgba(201, 162, 39, 0.6);
}

/* ---------- Gallery ---------- */
.gallery { background: var(--sand); }
.gallery h2 { color: var(--od-deep); }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.photo { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / 1; background: var(--sand-2); border: 1px solid var(--line); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { display: grid; place-items: center; background: linear-gradient(155deg, #2d3522, #1d2116); border-color: var(--line-dk); }
.photo-ph-inner { text-align: center; color: var(--muted-dk); }
.photo-ph-inner img { width: 56px; height: 56px; margin: 0 auto 0.5rem; opacity: .85; }
.photo-ph-inner span { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; color: var(--brass-lt); }
.gallery-cta { text-align: center; margin-top: 1.8rem; }
.gallery .btn-ghost { color: var(--od-2); border-color: var(--od-2); }
.gallery .btn-ghost:hover { background: var(--od-2); color: #fff; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(160deg, #20251a, #2d3522); color: var(--text-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: start; }
.contact h2 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.contact-lede { color: #eef0e6; font-size: 1.1rem; max-width: 46ch; }
.contact-list { list-style: none; padding: 0; margin: 1.6rem 0 1.8rem; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-ico { color: var(--brass-lt); background: rgba(201,162,39,.12); border: 1px solid rgba(201,162,39,.3); border-radius: var(--radius); padding: 0.5rem; display: inline-flex; flex: 0 0 auto; }
.contact-k { display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; color: var(--brass-lt); }
.contact-v { color: #fff; font-size: 1.05rem; }
a.contact-v:hover { color: var(--brass-lt); }

.contact-form-wrap { background: var(--paper); color: var(--text); border-radius: var(--radius); padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow); border-top: 4px solid var(--brass); }
.form-title { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.3rem; font-weight: 700; color: var(--od-deep); margin: 0 0 1.1rem; }
.field { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.field label { display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; color: var(--od); margin-bottom: 0.3rem; }
.field .opt { color: var(--muted); text-transform: none; letter-spacing: 0; }
.field .req { color: #b23b25; text-transform: none; letter-spacing: 0; font-weight: 600; }
.field input, .field textarea {
  width: 100%; font: inherit; padding: 0.7rem 0.8rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--text); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(201,162,39,.22); }
.field textarea { resize: vertical; }
.form-note { font-size: 0.9rem; color: var(--muted); margin: 0.9rem 0 0; }
.form-note.success { color: var(--od-2); font-weight: 600; }

.form-note.error { color: #9c2b1b; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-light); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-block: 2.8rem; align-items: start; }
.footer-brand { display: flex; gap: 0.9rem; align-items: center; }
.footer-brand img { object-fit: contain; height: auto; flex-shrink: 0; }
.footer-name { font-family: var(--display); text-transform: uppercase; font-weight: 700; font-size: 1.15rem; color: #fff; margin: 0; }
.footer-tag { color: var(--brass-lt); font-family: var(--display); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.82rem; margin: 0.2rem 0 0; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { color: var(--muted-dk); font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.95rem; }
.footer-nav a:hover { color: var(--brass-lt); text-decoration: none; }
.footer-contact { font-size: 0.95rem; color: var(--muted-dk); }
.footer-phone { display: inline-block; font-family: var(--display); font-size: 1.5rem; color: #fff; letter-spacing: 0.02em; }
.footer-phone:hover { color: var(--brass-lt); text-decoration: none; }
.footer-email { color: var(--muted-dk); word-break: break-word; }
.footer-email:hover { color: var(--brass-lt); }
.footer-social { display: inline-block; margin-top: 0.5rem; color: var(--brass-lt); }
.footer-socials { margin: 0.5rem 0 0; font-size: 0.92rem; }
.footer-socials a { color: var(--brass-lt); }
.footer-socials a:hover { text-decoration: underline; }
.footer-socials a + a::before { content: "·"; margin: 0 0.5rem; color: var(--muted-dk); }
.footer-bar { border-top: 1px solid var(--line-dk); }
.footer-bar-inner { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; padding-block: 1rem; font-size: 0.85rem; color: var(--muted-dk); }
.footer-bar-inner p { margin: 0; }
.footer-badge { color: var(--brass-lt); font-family: var(--display); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .card-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-emblem-wrap { position: static; max-width: 180px; margin-inline: auto; }
  .about-emblem-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }
  .area-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; text-align: center; }
  .video-copy p { margin-inline: auto; }
  .video-points { display: inline-grid; text-align: left; }
  .video-frame { order: -1; } /* lead with the video on smaller screens */
}

@media (max-width: 760px) {
  /* mobile nav */
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 40px; background: transparent; border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius); cursor: pointer; padding: 0 9px;
  }
  .nav-toggle span { display: block; height: 2px; width: 100%; background: #fff; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { margin-left: auto; }
  .nav-menu {
    position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; gap: 0; background: var(--od-deep);
    border-bottom: 3px solid var(--brass); padding: 0.5rem 0; max-height: 0; overflow: hidden; transition: max-height .25s ease; box-shadow: var(--shadow);
  }
  .nav-menu.open { max-height: 60vh; }
  .nav-menu li { border-top: 1px solid var(--line-dk); }
  .nav-menu a { display: block; padding: 0.9rem var(--pad); }
  .header-call { display: none; }

  .promise-grid { grid-template-columns: 1fr; }
  .card-grid, .review-grid, .why-grid { grid-template-columns: 1fr; }
  .town-list { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-badges { gap: 0.4rem 1.1rem; }

  /* sticky call bar */
  .mobile-call-bar {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    background: var(--brass); color: var(--ink); font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
    padding: 0.85rem; border-top: 2px solid var(--brass-dk); box-shadow: 0 -6px 18px rgba(0,0,0,.2); font-size: 0.95rem;
  }
  .mobile-call-bar:hover { text-decoration: none; }
  body { padding-bottom: 56px; } /* room for call bar */
}

@media (max-width: 380px) {
  .brand-line-2 { font-size: 1.05rem; }
  .town-list { grid-template-columns: 1fr; }
}
