/* Hometown Stone — design system
   Brand: Manrope · ink #313131 · blue #2563EB · yellow #FFEE58 */
:root {
  --ink: #313131;
  --ink-deep: #1B1B1B;
  --blue: #2563EB;
  --blue-dark: #1D4FC4;
  --yellow: #FFEE58;
  --muted: #6B7280;
  --line: #E5E7EB;
  --bg-alt: #F6F7F9;
  --dark: #16181D;
  --white: #FFFFFF;
  --radius: 10px;
  --shadow: 0 2px 10px rgba(17, 24, 39, .07);
  --shadow-lg: 0 10px 30px rgba(17, 24, 39, .12);
  --wrap: 1160px;
  --measure: 760px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 800; color: var(--ink-deep); }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -.015em; }
h3 { font-size: 1.18rem; font-weight: 700; }
p { margin: 0 0 1.15em; }
ul { padding-left: 1.25em; }
li { margin-bottom: .45em; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.measure { max-width: var(--measure); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-phone {
  background: transparent;
  color: var(--ink-deep);
  border: 2px solid var(--ink-deep);
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}
.btn-phone:hover { background: var(--ink-deep); color: #fff; }

/* ---------- header (dark, dealership) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #15171B;
  border-bottom: 3px solid var(--yellow);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.logo { flex-shrink: 0; }
.logo img { width: 168px; max-width: none; height: auto; }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 8px 11px;
  border-radius: 4px;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--yellow); background: rgba(255, 255, 255, .06); }
.btn-phone {
  background: var(--yellow);
  color: var(--ink-deep) !important;
  border: 0;
  padding: 11px 18px;
  border-radius: 4px;
  font-weight: 800;
  white-space: nowrap;
  font-size: .9rem;
}
.btn-phone:hover { background: #fff; color: var(--ink-deep); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13, 17, 28, .82) 5%, rgba(13, 17, 28, .55) 55%, rgba(37, 99, 235, .28) 100%);
}
.hero-inner { position: relative; z-index: 1; padding-top: 76px; padding-bottom: 76px; max-width: 820px; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-deep);
  background: var(--yellow);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.hero-sub { font-size: 1.18rem; max-width: 600px; color: rgba(255, 255, 255, .94); }
.hero-ctas { display: flex; align-items: center; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.hero-phone { color: #fff; font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--yellow); padding-bottom: 2px; }
.hero-phone:hover { color: var(--yellow); }

/* ---------- crumbs ---------- */
.crumbs { font-size: .85rem; color: var(--muted); padding-top: 18px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--blue); }
.crumbs span { color: var(--ink); font-weight: 600; }

/* ---------- sections ---------- */
.section { padding: 56px 0 8px; }
.section-alt { background: var(--bg-alt); padding: 64px 0; margin-top: 48px; }
.section-sub { color: var(--muted); max-width: 640px; margin-bottom: 36px; }
.intro h2 { margin-top: .2em; }
.updated { font-size: .82rem; color: var(--muted); font-style: italic; }
.section-img { margin: 34px auto 0; max-width: 920px; padding: 0 22px; }
.section-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; max-height: 540px; }
.section-img figcaption { font-size: .82rem; color: var(--muted); margin-top: 8px; }

/* ---------- trust band ---------- */
.trust-band { background: var(--dark); color: #fff; margin-top: 56px; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-top: 40px; padding-bottom: 40px; }
.trust-cell h3 { color: var(--yellow); font-size: 1.02rem; margin-bottom: .25em; }
.trust-cell p { font-size: .88rem; color: rgba(255, 255, 255, .82); margin: 0; }

/* ---------- cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 36px; }
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card-body h3 { margin: 0; }
.card-body p { font-size: .92rem; color: var(--muted); margin: 0; flex: 1; }
.card-link { color: var(--blue); font-weight: 700; font-size: .9rem; margin-top: 10px; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.gallery-item { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform .25s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--blue); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary h3 { margin: 0; font-size: 1.05rem; }
.faq-a { padding: 0 0 18px; color: var(--ink); }
.faq-a p { margin-bottom: .8em; }

/* ---------- links list ---------- */
.links-list { columns: 2; column-gap: 40px; }
.links-list a { font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(115deg, #1A1C21 0%, #25282F 100%);
  border-top: 6px solid var(--yellow);
  color: #fff;
  margin-top: 64px;
  padding: 68px 0;
}
.cta-band h2 { color: #fff; font-family: "Anton", sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: .01em; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-band p { color: rgba(255, 255, 255, .85); }
.cta-band .btn-primary { background: var(--yellow); color: var(--ink-deep); font-weight: 800; }
.cta-band .btn-primary:hover { background: #fff; }
.cta-tel { font-size: .95rem; margin-top: 18px; }
.cta-tel a { color: var(--yellow); font-weight: 800; text-decoration: none; font-size: 1.15rem; }

/* ---------- footer (compact strip) ---------- */
.site-footer { background: #15171B; color: rgba(255, 255, 255, .8); border-top: 4px solid var(--yellow); }
.footer-main {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; padding-top: 30px; padding-bottom: 24px;
}
.footer-id { display: flex; align-items: center; gap: 18px; }
.footer-id img { width: 132px; }
.footer-id .lic { color: var(--yellow); font-weight: 800; font-size: .8rem; letter-spacing: .06em; white-space: nowrap; }
.footer-call { text-align: right; }
.footer-call a.tel {
  font-family: "Anton", sans-serif; font-size: 1.6rem; color: var(--yellow);
  text-decoration: none; letter-spacing: .03em; display: block; line-height: 1.1;
}
.footer-call .addr { font-size: .78rem; color: rgba(255, 255, 255, .55); margin: 4px 0 0; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 4px 18px; max-width: 560px;
}
.footer-links a { color: rgba(255, 255, 255, .78); text-decoration: none; font-size: .82rem; font-weight: 600; white-space: nowrap; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 13px; padding-bottom: 15px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .75rem; color: rgba(255, 255, 255, .45);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255, 255, 255, .6); }
@media (max-width: 760px) {
  .footer-main { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-call { text-align: left; }
}

/* ---------- residential | commercial split band ---------- */
.split-band { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.split-half { position: relative; overflow: hidden; display: flex; align-items: flex-end; text-decoration: none; }
.split-half img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.split-half:hover img.bg { transform: scale(1.05); }
.split-half::after { content: ""; position: absolute; inset: 0; }
.split-res::after { background: linear-gradient(185deg, rgba(13,15,19,.05) 35%, rgba(13,15,19,.82) 95%); }
.split-com::after { background: linear-gradient(185deg, rgba(13,15,19,.35) 25%, rgba(13,15,19,.92) 95%); }
.split-copy { position: relative; z-index: 2; padding: 30px 30px 34px; width: 100%; }
.split-copy .dept { font-weight: 800; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 3px; display: inline-block; margin-bottom: 12px; }
.split-res .dept { background: #fff; color: var(--ink-deep); }
.split-com .dept { background: var(--yellow); color: var(--ink-deep); }
.split-copy h2 { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase;
  color: #fff; font-size: clamp(1.9rem, 4vw, 3.2rem); margin: 0 0 8px; line-height: .95; }
.split-com .split-copy h2 { color: var(--yellow); }
.split-copy p { color: rgba(255,255,255,.85); font-size: .95rem; margin: 0; max-width: 420px; font-weight: 500; }
.split-copy .go { display: inline-block; margin-top: 14px; color: #fff; font-weight: 800;
  font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; border-bottom: 3px solid var(--yellow); padding-bottom: 3px; }
@media (max-width: 760px) { .split-band { grid-template-columns: 1fr; } .split-half { min-height: 300px; } }

/* ---------- dark theme (commercial pages) ---------- */
.theme-dark { background: #1A1C21; color: rgba(255, 255, 255, .86); }
.theme-dark h1, .theme-dark h2, .theme-dark h3, .theme-dark h4 { color: #fff; }
.theme-dark .section-alt { background: #15171B; }
.theme-dark .crumbs, .theme-dark .crumbs a { color: rgba(255, 255, 255, .5); }
.theme-dark .crumbs span { color: #fff; }
.theme-dark .updated { color: rgba(255, 255, 255, .45); }
.theme-dark a { color: #8FB3FF; }
.theme-dark .faq-item { border-bottom-color: rgba(255, 255, 255, .14); }
.theme-dark .faq-a { color: rgba(255, 255, 255, .82); }
.theme-dark .section-img img { box-shadow: none; }
.theme-dark .gallery-item { box-shadow: none; }
.theme-dark .card { background: #22252B; color: rgba(255, 255, 255, .86); }
.theme-dark .card-body p { color: rgba(255, 255, 255, .6); }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 36px; }
.contact-form { background: var(--bg-alt); border-radius: var(--radius); padding: 30px; }
.contact-form label { display: block; font-weight: 700; font-size: .88rem; margin: 16px 0 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 2px solid var(--blue); border-color: transparent; }
.contact-form button { margin-top: 22px; width: 100%; border: 0; cursor: pointer; font: inherit; }
.contact-info h3 { margin-top: 26px; }
.contact-info a { font-weight: 700; }

/* ---------- blog ---------- */
.post-meta { color: var(--muted); font-size: .88rem; }
.post-body img { border-radius: var(--radius); margin: 26px 0; }
.post-body h2 { margin-top: 1.4em; }
.post-body h3 { margin-top: 1.2em; }

/* ============================================================
   V2 VIBE LAYER — "Milwaukee Tool meets truck dealership"
   Poster type (Anton), safety-yellow on charcoal, photo-first
   ============================================================ */
.display, .hero-poster h1, .stat-num, .tile-label, .band-title {
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .95;
}

/* poster hero — bottom-left aligned, huge type */
.hero-poster { min-height: min(86vh, 860px); align-items: flex-end; }
.hero-poster .hero-overlay {
  background: linear-gradient(180deg, rgba(13, 15, 19, .35) 0%, rgba(13, 15, 19, .25) 40%, rgba(13, 15, 19, .88) 100%);
}
.hero-poster .hero-inner { padding-bottom: 64px; max-width: 980px; margin-left: 0; }
.hero-poster h1 { font-size: clamp(3.2rem, 9vw, 6.8rem); margin: 0 0 14px; }
.hero-poster h1 em { font-style: normal; color: var(--yellow); }
.hero-poster .kicker { border-left: 10px solid var(--yellow); background: transparent; color: #fff;
  border-radius: 0; padding: 2px 0 2px 14px; letter-spacing: .3em; font-size: .82rem; }
.hero-poster .hero-sub { font-size: 1.15rem; max-width: 560px; font-weight: 500; }
.hero-poster .hero-phone { font-family: "Anton", sans-serif; font-size: 1.5rem; letter-spacing: .03em;
  border-bottom: 4px solid var(--yellow); }
.hero-poster .btn-primary { background: var(--yellow); color: var(--ink-deep); font-weight: 800;
  font-size: 1.02rem; padding: 17px 38px; border-radius: 4px; }
.hero-poster .btn-primary:hover { background: #fff; }

/* compact poster — interior pages */
.hero-compact { min-height: min(54vh, 540px); }
.hero-compact h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.hero-compact .hero-inner { padding-bottom: 48px; }
.hero-compact .hero-phone { font-size: 1.2rem; }
@media (max-width: 640px) { .hero-compact { min-height: min(58vh, 480px); } }

/* city marquee ticker */
.marquee { background: var(--ink-deep); overflow: hidden; padding: 13px 0; border-top: 4px solid var(--yellow); }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: ticker 36s linear infinite; width: max-content; }
.marquee span { font-family: "Anton", sans-serif; color: var(--yellow); font-size: 1rem;
  letter-spacing: .18em; padding-right: 28px; text-transform: uppercase; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* badge wall — brands strip */
.badge-wall { background: var(--dark); padding: 54px 0 58px; }
.badge-wall .band-title { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.6rem); text-align: center; margin-bottom: 6px; }
.badge-wall .band-sub { color: rgba(255,255,255,.6); text-align: center; font-size: .95rem; margin-bottom: 34px; }
.badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.badge {
  font-family: "Anton", sans-serif; text-transform: uppercase; letter-spacing: .06em;
  color: #fff; border: 2px solid rgba(255,255,255,.25); padding: 12px 26px; font-size: 1.15rem;
  border-radius: 4px; background: rgba(255,255,255,.04);
}
.badge:nth-child(odd) { border-color: rgba(255,238,88,.5); }

/* the lot — big image tiles */
.lot { padding: 72px 0 26px; }
.lot-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.lot .band-title { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--ink-deep); margin: 0; }
.lot-head p { color: var(--muted); margin: 0; max-width: 420px; }
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tile {
  position: relative; border-radius: 8px; overflow: hidden; display: block; text-decoration: none;
  aspect-ratio: 3 / 3.6; box-shadow: var(--shadow);
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.tile:hover img { transform: scale(1.05); }
.tile::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(185deg, rgba(13,15,19,0) 40%, rgba(13,15,19,.88) 92%); }
.tile-label {
  position: absolute; left: 18px; bottom: 16px; right: 18px; z-index: 2; color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}
.tile-label small { display: block; font-family: "Manrope", sans-serif; text-transform: none;
  font-weight: 600; font-size: .85rem; color: var(--yellow); letter-spacing: .02em; margin-top: 6px; }
.tile-tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--yellow);
  color: var(--ink-deep); font-weight: 800; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 3px; }
.tile-row-compact { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 16px; }
.tile-row-compact .tile { aspect-ratio: 4 / 2.6; }
.tile-row-compact .tile-label { font-size: 1.1rem; }

/* numbers wall */
.stat-band { background: var(--ink-deep); color: #fff; padding: 64px 0; border-top: 6px solid var(--yellow); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-num { color: var(--yellow); font-size: clamp(2.6rem, 6vw, 4.4rem); display: block; }
.stat-label { font-weight: 700; font-size: .92rem; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.85); }
.stat-sub { font-size: .8rem; color: rgba(255,255,255,.5); display: block; margin-top: 3px; }

/* crew band — split photo / charcoal */
.crew-band { display: grid; grid-template-columns: 1fr 1fr; background: var(--dark); margin-top: 64px; }
.crew-photo { min-height: 480px; background-size: cover; background-position: center; }
.crew-copy { padding: 64px 56px; color: rgba(255,255,255,.88); display: flex; flex-direction: column; justify-content: center; }
.crew-copy .band-title { color: #fff; font-size: clamp(2.4rem, 4.5vw, 3.8rem); margin-bottom: 18px; }
.crew-copy .band-title em { font-style: normal; color: var(--yellow); }
.crew-copy ul { list-style: none; padding: 0; margin: 18px 0 26px; }
.crew-copy li { padding-left: 26px; position: relative; margin-bottom: 12px; font-weight: 600; }
.crew-copy li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 14px;
  background: var(--yellow); border-radius: 2px; }
.crew-copy .btn-primary { background: var(--yellow); color: var(--ink-deep); align-self: flex-start; }
.crew-copy .btn-primary:hover { background: #fff; }

/* featured project full-bleed */
.feature-band { position: relative; min-height: min(64vh, 620px); background-size: cover; background-position: center;
  display: flex; align-items: flex-end; }
.feature-band::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,15,19,0) 45%, rgba(13,15,19,.78) 100%); }
.feature-chip { position: relative; z-index: 2; margin: 0 auto 38px; text-align: center; width: 100%; }
.feature-chip .tag { background: var(--yellow); color: var(--ink-deep); font-weight: 800; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; padding: 6px 12px; border-radius: 3px; }
.feature-chip h2 { color: #fff; font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 3rem); margin: 14px 0 0; }

@media (max-width: 980px) {
  .tile-grid { grid-template-columns: 1fr 1fr; }
  .tile-row-compact { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .crew-band { grid-template-columns: 1fr; }
  .crew-photo { min-height: 340px; }
}
@media (max-width: 640px) {
  .tile-grid { grid-template-columns: 1fr; }
  .hero-poster { min-height: min(72vh, 640px); }
  .crew-copy { padding: 44px 26px; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .card-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1060px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #15171B;
    border-bottom: 3px solid var(--yellow);
    padding: 10px 22px 18px;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 4px; }
  .site-nav a { display: block; padding: 12px 6px; font-size: 1rem; }
  .nav-toggle { display: block; margin-left: auto; }
  .header-inner { gap: 12px; }
  .header-inner .btn-phone { margin-left: 0; padding: 9px 14px; font-size: .85rem; }
}
@media (max-width: 760px) {
  .hero { min-height: 480px; }
  .card-grid, .gallery-grid { grid-template-columns: 1fr; }
  .links-list { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  /* logo 168 + phone pill + toggle don't fit a 390 row — squeeze all three */
  .header-inner { gap: 8px; }
  .logo img { width: 136px; }
  .header-inner .btn-phone { padding: 8px 10px; font-size: .8rem; }
  .nav-toggle { padding: 8px 4px; }
}
@media (max-width: 340px) {
  .logo img { width: 118px; }
  .header-inner .btn-phone { padding: 7px 8px; font-size: .72rem; }
}
