/* North Bear Land & Snow Inc.
   Design system: Montserrat; navy #0C274A surfaces, forest green #304E1C accent.
   Radius system: cards 14px, inputs 10px, buttons pill. Shadows tinted navy, <=8px blur.
   Motion: 160-240ms, cubic-bezier(0.23,1,0.32,1), press scale, reduced-motion safe. */

:root {
  --navy: #0C274A;
  --navy-800: #0a1f3b;
  --navy-900: #081b34;
  --green: #304E1C;
  --green-600: #3c6224;
  --charcoal: #0E1013;
  --ink: #16191d;
  --muted: #47515c;
  --line: #dde3e8;
  --tint: #f2f5f7;
  --white: #ffffff;
  --on-dark: #d9e1eb;
  --on-dark-strong: #ffffff;
  --r-card: 14px;
  --r-input: 10px;
  --shadow-1: 0 1px 2px rgba(12, 39, 74, 0.06), 0 4px 8px rgba(12, 39, 74, 0.06);
  --shadow-2: 0 2px 4px rgba(12, 39, 74, 0.08), 0 6px 8px rgba(12, 39, 74, 0.08);
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --wrap: 1180px;
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3 { font-weight: 800; line-height: 1.12; color: var(--charcoal); margin: 0 0 0.5em; letter-spacing: -0.02em; text-wrap: balance; }
h1 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
h3 { font-size: 1.15rem; line-height: 1.3; }
p { margin: 0 0 1rem; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }

.t-green { color: var(--green); }
.t-navy { color: var(--navy); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 0.6rem 1rem; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font); font-weight: 700; font-size: 0.95rem;
  padding: 0.72rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform 160ms var(--ease), background-color 160ms var(--ease), border-color 160ms var(--ease), color 160ms var(--ease);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 3px solid rgba(12, 39, 74, 0.4); outline-offset: 2px; }
.btn-primary { background: var(--green); color: #fff; }
.btn-outline-light { background: rgba(255, 255, 255, 0.06); color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-white { background: #fff; color: var(--navy); }
.btn-phone { background: transparent; color: var(--navy); border-color: var(--line); font-variant-numeric: tabular-nums; }
.btn-lg { padding: 0.95rem 1.8rem; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--green-600); }
  .btn-outline-light:hover { background: rgba(255, 255, 255, 0.14); }
  .btn-white:hover { background: var(--tint); }
  .btn-phone:hover { border-color: var(--navy); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px); border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand:hover { text-decoration: none; }
.brand-icon { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-line1 { font-weight: 800; font-size: 1.12rem; letter-spacing: 0.02em; color: var(--charcoal); text-transform: uppercase; white-space: nowrap; }
.brand-line2 { font-weight: 700; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-top: 2px; white-space: nowrap; }
.header-right { display: flex; align-items: center; gap: 1rem; }
.header-cta { display: flex; align-items: center; gap: 0.5rem; }
.nav { display: flex; align-items: center; gap: 0.1rem; }
.nav-item { position: relative; }
.nav-link { display: inline-block; padding: 0.5rem 0.72rem; font-weight: 600; font-size: 0.93rem; color: var(--ink); border-radius: 9px; }
.nav-link:hover { text-decoration: none; background: var(--tint); color: var(--navy); }
.nav-link.is-active { color: var(--green); }
.nav-menu {
  position: absolute; top: calc(100% + 4px); left: 0; min-width: 265px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-card); padding: 0.45rem;
  opacity: 0; visibility: hidden; transform: translateY(6px) scale(0.98); transform-origin: top left;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms;
  z-index: 110;
}
.nav-item:hover .nav-menu, .nav-item:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.nav-menu a { display: block; padding: 0.55rem 0.8rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.nav-menu a:hover { background: var(--tint); color: var(--navy); text-decoration: none; }
.menu-toggle { display: none; }

/* ---------- Home hero ---------- */
.hero { position: relative; background: var(--navy-900); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8, 22, 42, 0.94) 0%, rgba(8, 22, 42, 0.82) 42%, rgba(8, 22, 42, 0.42) 75%, rgba(8, 22, 42, 0.55) 100%);
}
.hero-grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding-top: clamp(2.5rem, 5.5vw, 5rem); padding-bottom: clamp(2.5rem, 5.5vw, 5rem);
}
.hero h1 { color: #fff; }
.hero .lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--on-dark); line-height: 1.7; max-width: 34rem; margin-bottom: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-proof { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem; padding: 0; margin: 1.8rem 0 0; }
.hero-proof li { color: var(--on-dark); font-size: 0.92rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-proof li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #7fb653; flex: 0 0 auto; }

/* Hero quote form card */
.hero-form .quote-form { box-shadow: var(--shadow-2); }
.quote-form {
  background: #fff; border-radius: var(--r-card); padding: 1.6rem;
  border: 1px solid var(--line);
}
.quote-form-compact { padding: 1.5rem 1.5rem 1.4rem; border: 0; }
.form-title { font-weight: 800; font-size: 1.22rem; color: var(--charcoal); margin: 0 0 0.15rem; letter-spacing: -0.01em; }
.form-sub { color: var(--muted); font-size: 0.9rem; margin: 0 0 1.1rem; }
.hp { display: none; }
.field { margin-bottom: 0.9rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.field label { display: block; font-weight: 700; font-size: 0.82rem; margin-bottom: 0.3rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.68rem 0.85rem; border: 1.5px solid var(--line); border-radius: var(--r-input);
  font-family: var(--font); font-size: 0.98rem; font-weight: 500; background: #fff; color: var(--ink);
  transition: border-color 160ms var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #6b7681; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(12, 39, 74, 0.12); }
.form-note { font-size: 0.86rem; color: var(--muted); margin: 0.85rem 0 0; }

/* ---------- Promise strip ---------- */
.promise-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.promise { padding: 1.6rem 1.4rem; border-left: 1px solid var(--line); }
.promise:first-child { border-left: 0; padding-left: 0; }
.promise h3 { font-size: 0.98rem; color: var(--navy); margin-bottom: 0.3rem; }
.promise p { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 6.5vw, 5.25rem) 0; }
.section-tint { background: var(--tint); }
.section-dark { background: var(--navy-900); color: var(--on-dark); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: var(--on-dark); line-height: 1.72; }
.section-head { max-width: 640px; margin: 0 0 2.4rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section-head-split { display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.section-head-split h2 { margin: 0; }
.section-head-split p { color: var(--muted); max-width: 46ch; margin: 0; }

/* ---------- Bento services grid ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; }
.bento-feature {
  grid-column: span 3; min-height: 300px; border-radius: var(--r-card); padding: 1.7rem;
  background-size: cover; background-position: center; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 200ms var(--ease);
}
.bento-feature h3 { color: #fff; font-size: 1.45rem; margin-top: auto; margin-bottom: 0.3rem; }
.bento-feature p { color: #dce4ee; margin-bottom: 0.8rem; max-width: 40ch; }
.bento-feature .card-link { margin-top: 0; }
.bento-cell {
  grid-column: span 2; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.35rem;
  transition: transform 200ms var(--ease), border-color 200ms var(--ease);
}
.bento-cell h3 { color: var(--navy); margin: 0; }
.bento-cell p { color: var(--muted); font-size: 0.93rem; margin: 0 0 0.5rem; line-height: 1.55; }
.card-link { font-weight: 700; color: var(--green); font-size: 0.9rem; margin-top: auto; }
.card-link::after { content: " \2192"; }
@media (hover: hover) and (pointer: fine) {
  .bento-feature:hover, .bento-cell:hover { transform: translateY(-3px); text-decoration: none; }
  .bento-cell:hover { border-color: var(--navy); }
  .bento-feature:hover .card-link, .bento-cell:hover .card-link { text-decoration: underline; text-underline-offset: 3px; }
}
.bento-feature:hover, .bento-cell:hover { text-decoration: none; }
.bento-feature .card-link { color: #a4d075; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.split-media img { border-radius: var(--r-card); width: 100%; object-fit: cover; }
.reverse-media { grid-template-columns: 0.85fr 1.15fr; align-items: center; }
.reverse-media .split-media img { aspect-ratio: 4 / 3; }
.commercial-band .split { align-items: center; }
.commercial-band .split-media img { aspect-ratio: 4 / 3; }
.flag-band .split { align-items: center; grid-template-columns: 0.9fr 1.1fr; }
.flag-band .split-media img { aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- Feature list ---------- */
.feature-list { list-style: none; padding: 0; margin: 1.4rem 0; display: grid; gap: 0.65rem; }
.feature-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-weight: 600; }
.check {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px;
}
.section-dark .feature-list li { color: var(--on-dark-strong); }
.section-dark .check { background: #7fb653; color: var(--navy-900); }

/* ---------- Fleet ---------- */
.fleet-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.1rem; }
.fleet-item { margin: 0; border-radius: var(--r-card); overflow: hidden; background: var(--tint); }
.fleet-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.steps li { counter-increment: step; background: #fff; border-radius: var(--r-card); padding: 1.7rem; border: 1px solid var(--line); }
.steps li::before {
  content: counter(step, decimal-leading-zero); display: inline-block; font-weight: 800; font-size: 0.95rem;
  color: var(--green); margin-bottom: 0.8rem; letter-spacing: 0.04em;
}
.steps h3 { margin-bottom: 0.35rem; }
.steps p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- City cards ---------- */
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.city-card { border-radius: var(--r-card); overflow: hidden; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform 200ms var(--ease), border-color 200ms var(--ease); }
.city-card-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.city-card-body { padding: 1.3rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }
.city-card h3 { color: var(--navy); margin: 0; }
.city-card p { color: var(--muted); font-size: 0.92rem; margin: 0 0 0.6rem; line-height: 1.55; }
@media (hover: hover) and (pointer: fine) {
  .city-card:hover { transform: translateY(-3px); border-color: var(--navy); text-decoration: none; }
}
.city-card:hover { text-decoration: none; }

/* ---------- Quotes ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.quote-card { margin: 0; background: #fff; border-radius: var(--r-card); padding: 1.6rem; border: 1px solid var(--line); display: flex; flex-direction: column; }
.quote-card blockquote { margin: 0 0 1.1rem; font-weight: 600; color: var(--ink); line-height: 1.6; }
.quote-card figcaption { margin-top: auto; display: flex; flex-direction: column; font-size: 0.88rem; }
.quote-card figcaption strong { color: var(--navy); }
.quote-card figcaption span { color: var(--muted); }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.post-grid-full { grid-template-columns: repeat(3, 1fr); }
.post-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 880px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; display: flex; flex-direction: column; }
.post-thumb { display: block; }
.post-thumb img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 300ms var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .post-card:hover .post-thumb img { transform: scale(1.03); }
}
.post-card-body { padding: 1.2rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.post-card h3 { margin: 0; font-size: 1.05rem; line-height: 1.4; }
.post-card h3 a { color: var(--navy); }
.post-card p { color: var(--muted); font-size: 0.92rem; margin: 0; line-height: 1.6; }
.post-meta { font-size: 0.78rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.06em; margin: 0; }
.post-card .card-link { margin-top: 0.4rem; }
.post-title { max-width: 24ch; }
.post-section { padding-top: 2.2rem; }
.post-hero { margin: 0 0 1.8rem; }
.post-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--r-card); }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; background: var(--navy-900); overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(96deg, rgba(8, 22, 42, 0.93) 0%, rgba(8, 22, 42, 0.78) 48%, rgba(8, 22, 42, 0.38) 100%);
}
.page-hero-inner { position: relative; z-index: 1; padding: clamp(2.4rem, 5vw, 4.2rem) 1.25rem; max-width: var(--wrap); margin: 0 auto; }
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero .lead { color: var(--on-dark); font-size: clamp(1rem, 1.5vw, 1.12rem); max-width: 56ch; line-height: 1.7; margin-bottom: 0; }
.page-hero .hero-actions { margin-top: 1.5rem; }
.hero-note { color: #a4d075; font-weight: 700; font-size: 0.92rem; margin: 1.1rem 0 0; }
.page-hero-short .page-hero-inner { padding-top: 2rem; padding-bottom: 2.4rem; }

.plain-hero { background: var(--tint); border-bottom: 1px solid var(--line); padding: 2.2rem 0 2.6rem; }
.plain-hero h1 { margin-bottom: 0.2rem; max-width: 26ch; }
.lead-dark { color: var(--muted); font-size: 1.06rem; max-width: 60ch; margin: 0.4rem 0 0; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { margin-bottom: 1rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; padding: 0; margin: 0; font-size: 0.84rem; color: var(--muted); }
.breadcrumb li + li::before { content: "/"; margin-right: 0.45rem; color: #9aa5af; }
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb-light ol, .breadcrumb-light a { color: #b7c4d3; }
.breadcrumb-light li + li::before { color: #778799; }
.breadcrumb li[aria-current] { font-weight: 700; }

/* ---------- Panels / asides ---------- */
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.5rem; }
.panel h3 { color: var(--navy); }
.panel-quiet { background: var(--tint); border-color: transparent; }
.panel + .panel { margin-top: 1.1rem; }
.service-aside { position: sticky; top: 96px; display: flex; flex-direction: column; }
.quiet-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.quiet-list a { font-weight: 600; font-size: 0.93rem; }
.quiet-text { color: var(--muted); font-size: 0.93rem; margin: 0; }
.about-aside { position: sticky; top: 96px; }

.commercial-note { background: var(--tint); border-radius: var(--r-card); padding: 1.4rem 1.5rem; margin-top: 1.8rem; }
.commercial-note h3 { color: var(--navy); margin-bottom: 0.3rem; font-size: 1rem; }
.commercial-note p { margin: 0; color: var(--ink); }

/* ---------- Prose ---------- */
.prose { max-width: 720px; }
.prose p { max-width: 68ch; text-wrap: pretty; }
.prose h2 { margin-top: 2.2rem; }
.prose p a, .faq-body a, .prose-wide a {
  color: var(--green-600); font-weight: 600; text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 1.5px;
}
@media (hover: hover) and (pointer: fine) {
  .prose p a:hover, .faq-body a:hover, .prose-wide a:hover { color: var(--navy); }
}
.prose-wide { max-width: 820px; }
.prose-wide p { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq { display: grid; gap: 0.7rem; margin-top: 1.6rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.3rem; font-weight: 700; color: var(--navy); font-size: 0.99rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 14px; height: 14px; flex: 0 0 auto; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--green); border-radius: 2px; transition: transform 200ms var(--ease); }
.faq-icon::before { inset: 6px 0; }
.faq-icon::after { inset: 0 6px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-body { padding: 0 1.3rem 1.15rem; }
.faq-body p { margin: 0; color: var(--muted); max-width: 70ch; }

/* ---------- Areas served (service pages) ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.area-tile { background: #fff; border-radius: var(--r-card); padding: 1.5rem; border: 1px solid var(--line); display: flex; flex-direction: column; }
.area-tile-primary { border-color: var(--green); border-width: 2px; }
.area-tile h3 { margin-bottom: 0.35rem; font-size: 1.05rem; }
.area-tile h3 a { color: var(--navy); }
.area-tile p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }
.area-tile-links { margin-top: auto; display: flex; flex-direction: column; gap: 0.3rem; }
.quiet-link { font-size: 0.86rem; font-weight: 600; color: var(--muted); }

/* ---------- Service link grid (city pages) ---------- */
.service-link-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.service-link-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.35rem; display: flex; flex-direction: column; gap: 0.3rem; transition: transform 200ms var(--ease), border-color 200ms var(--ease); }
.service-link-card h3 { font-size: 0.99rem; color: var(--navy); margin: 0; }
.service-link-card p { font-size: 0.85rem; color: var(--muted); margin: 0 0 0.5rem; line-height: 1.5; }
.service-link-card .card-link { font-size: 0.84rem; }
@media (hover: hover) and (pointer: fine) {
  .service-link-card:hover { transform: translateY(-3px); border-color: var(--navy); text-decoration: none; }
}
.service-link-card:hover { text-decoration: none; }

/* ---------- Values / about ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.value { border-top: 3px solid var(--green); padding-top: 1rem; }
.value h3 { margin-bottom: 0.3rem; }
.value p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* ---------- Info tiles (contact) ---------- */
.info-tiles { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.info-tile { background: var(--tint); border-radius: var(--r-card); padding: 1.2rem 1.35rem; display: grid; grid-template-columns: 110px 1fr; align-items: baseline; gap: 0.4rem 1.1rem; min-width: 0; }
.info-tile h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green); margin: 0; }
.info-tile p { margin: 0; color: var(--ink); font-weight: 600; font-size: 0.96rem; overflow-wrap: anywhere; min-width: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--green) 0%, #24380f 100%); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-top: 2.8rem; padding-bottom: 2.8rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 0.3rem; }
.cta-band p { color: #dce8d0; margin: 0; }
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #c3cad2; padding: 3.4rem 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1.1fr 1fr 1.1fr; gap: 2.4rem; }
.footer-brand img { height: 96px; width: auto; margin-bottom: 0.9rem; }
.footer-tag { color: #9fd66a; font-weight: 700; margin-bottom: 0.5rem; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: #c3cad2;
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.footer-social a:hover { background: var(--green); color: #fff; text-decoration: none; }
.footer-brand p { font-size: 0.9rem; color: #99a3ae; line-height: 1.7; }
.footer-col h3 { color: #fff; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.9rem; }
.footer-gap { margin-top: 1.6rem; }
.footer-grid > * { min-width: 0; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer-col a { color: #c3cad2; font-size: 0.92rem; overflow-wrap: anywhere; }
.footer-col a:hover { color: #fff; }
.footer-contact li { font-size: 0.92rem; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(255, 255, 255, 0.09); margin-top: 2.6rem; padding-top: 1.4rem; font-size: 0.82rem; color: #8b939d; }
.footer-bottom p { margin: 0; }

/* ---------- Sitemap page ---------- */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.sitemap-col h2 { font-size: 1.15rem; margin: 0 0 0.7rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--green); }
.sitemap-col h2:not(:first-child) { margin-top: 2rem; }
.sitemap-col h3 { font-size: 0.9rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin: 1.2rem 0 0.5rem; }
.sitemap-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.sitemap-col a { font-weight: 600; font-size: 0.94rem; }

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
.rv { opacity: 1; transform: none; }
.js-reveal .rv { opacity: 0; transform: translateY(14px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
.js-reveal .rv.rv-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .rv { opacity: 1; transform: none; transition: none; }
  .btn, .bento-feature, .bento-cell, .city-card, .service-link-card { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .header-cta .btn-phone { display: none; }
}

@media (max-width: 1080px) {
  .bento-feature { grid-column: span 6; min-height: 260px; }
  .bento-cell { grid-column: span 3; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .promise { border-left: 0; padding-left: 0; }
  .values-grid, .service-link-grid { grid-template-columns: 1fr 1fr; }
  .post-grid, .post-grid-full { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .header-inner { min-height: 64px; }
  .brand-icon { height: 38px; }
  .menu-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    background: transparent; border: 0; padding: 0.6rem; cursor: pointer; border-radius: 8px;
  }
  .menu-toggle span { display: block; width: 24px; height: 2.5px; border-radius: 2px; background: var(--charcoal); transition: transform 200ms var(--ease), opacity 200ms var(--ease); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .header-right {
    position: fixed; top: 64px; left: 0; right: 0; z-index: 90;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0.4rem;
    padding: 1rem 1.25rem 1.4rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-2);
    transform: translateY(-130%); visibility: hidden; transition: transform 240ms var(--ease), visibility 240ms;
    max-height: calc(100dvh - 64px); overflow-y: auto;
  }
  .header-right.open { transform: translateY(0); visibility: visible; }
  .nav { flex-direction: column; align-items: stretch; gap: 0.1rem; }
  .nav-link { padding: 0.7rem 0.6rem; font-size: 1rem; }
  .nav-menu { position: static; opacity: 1; visibility: visible; transform: none; border: 0; box-shadow: none; padding: 0 0 0.4rem 0.9rem; min-width: 0; }
  .nav-menu a { font-size: 0.93rem; padding: 0.45rem 0.6rem; }
  .header-cta { flex-direction: column; align-items: stretch; margin-top: 0.5rem; }
  .header-cta .btn-phone { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form { max-width: 560px; }
  .split, .flag-band .split, .reverse-media { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
  .post-grid-2 { grid-template-columns: 1fr; }
  .service-aside, .about-aside { position: static; }
  .steps { grid-template-columns: 1fr; }
  .fleet-grid, .city-grid, .quote-grid, .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .field-row { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
  .promise:last-child { border-bottom: 0; }
  .fleet-grid, .city-grid, .quote-grid, .areas-grid, .values-grid, .service-link-grid, .post-grid, .post-grid-full, .sitemap-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .info-tiles { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .btn-row .btn { width: 100%; }
}
