/* ============================================================
   MK Custom Metal — styles.css
   Dark industrial theme · brushed-metal accents · molten CTA
   ============================================================ */

:root {
  --bg:      #131519;
  --bg-2:    #191c22;
  --bg-3:    #21252d;
  --panel:   #1d2129;
  --text:    #e9ecf1;
  --muted:   #a0a7b4;
  --faint:   #6f7684;
  --line:    rgba(255,255,255,.09);
  --line-2:  rgba(255,255,255,.14);
  --accent:  #e2632c;   /* molten orange */
  --accent-2:#f0803f;
  --steel-1: #f3f6fa;
  --steel-2: #b9c2ce;
  --steel-3: #7d8794;
  --radius:  14px;
  --maxw:    1200px;
  --ease:    cubic-bezier(.22,.61,.36,1);
  --shadow:  0 18px 50px rgba(0,0,0,.45);
  --steel-grad: linear-gradient(160deg, var(--steel-1) 0%, var(--steel-2) 45%, var(--steel-3) 100%);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth; scroll-padding-top: 84px;
  /* Stop iOS Safari from auto-inflating text on rotate/zoom */
  -webkit-text-size-adjust: 100%; text-size-adjust: 100%;
  /* Belt-and-suspenders horizontal-overflow guard (clip keeps position:sticky working) */
  overflow-x: clip;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, .eyebrow, .btn, .nav a, .filter, .step-num, .brand {
  font-family: 'Oswald', 'Inter', sans-serif;
}
h1, h2, h3 { line-height: 1.06; margin: 0; font-weight: 600; letter-spacing: .5px; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); text-transform: uppercase; }
h3 { font-size: 1.35rem; text-transform: uppercase; letter-spacing: 1px; }

/* Container: width in % + padding (NOT vw width) so it never overflows or
   jitters horizontally under iOS Safari pinch-zoom. Padding in vw is safe. */
.wrap {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
/* Grid/flex children default to min-width:auto, so a wide child (form input,
   long word) forces its column past the viewport and clips on narrow phones.
   Letting them shrink is the canonical fix for that horizontal overflow. */
.contact-wrap > *, .cap-wrap > *, .about-wrap > *, .footer-inner > *,
.service-grid > *, .process-grid > *, .gallery > *, .contact-details li { min-width: 0; }
/* Break long unbreakable tokens (emails, URLs) instead of overflowing */
body { overflow-wrap: break-word; }

.eyebrow {
  font-size: .82rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--accent-2); margin: 0 0 .8rem; font-weight: 600;
}

.steel-text {
  background: var(--steel-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --pad: .8em 1.4em;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: var(--pad);
  border-radius: 9px; border: 1px solid transparent;
  font-size: .95rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  cursor: pointer; transition: transform .15s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { --pad: 1em 1.9em; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-solid { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(226,99,44,.32); }
.btn-solid:hover { background: var(--accent-2); }
.btn-outline { border-color: var(--line-2); color: var(--text); background: rgba(255,255,255,.03); }
.btn-outline:hover { border-color: var(--steel-2); background: rgba(255,255,255,.07); }
.btn-ghost { background: transparent; color: var(--text); border-color: transparent; }
.btn-ghost:hover { color: var(--accent-2); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(19,21,25,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(15,17,20,.95); box-shadow: 0 6px 24px rgba(0,0,0,.35); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 72px; }
.brand-logo { height: 42px; width: auto; }
.nav { display: flex; gap: 1.6rem; margin-left: auto; }
.nav a {
  font-size: .95rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted);
  font-weight: 500; position: relative; padding: .3em 0; transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width .25s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: .6rem; }
.btn-call .ico { color: var(--accent-2); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.menu-toggle span { width: 26px; height: 2px; background: var(--text); transition: .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; padding: 0 4vw;
  max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
  border-top: 1px solid transparent;
}
.mobile-nav.open { max-height: 460px; border-top-color: var(--line); padding-bottom: 1rem; }
.mobile-nav a {
  padding: .95rem 0; border-bottom: 1px solid var(--line); text-transform: uppercase;
  letter-spacing: 1.5px; font-family: 'Oswald', sans-serif; color: var(--muted);
}
.mobile-nav .mobile-quote { margin-top: 1rem; color: #fff; border-bottom: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(88vh, 760px); min-height: min(88svh, 760px); display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.02); }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15,16,20,.94) 0%, rgba(15,16,20,.78) 42%, rgba(15,16,20,.30) 100%),
    linear-gradient(0deg, rgba(15,16,20,.85) 0%, rgba(15,16,20,0) 45%);
}
.hero-content { position: relative; z-index: 2; padding: 5rem 0; }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem); font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 1.3rem;
}
.hero .lede { max-width: 40ch; color: var(--muted); font-size: 1.16rem; margin: 0 0 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-points {
  list-style: none; padding: 0; margin: 2.6rem 0 0; display: flex; flex-wrap: wrap;
  gap: .6rem 1.4rem; color: var(--faint); font-size: .9rem;
}
.hero-points li { position: relative; padding-left: 1.1rem; }
.hero-points li::before { content: "◆"; position: absolute; left: 0; color: var(--accent); font-size: .7rem; top: .25em; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--bg-3); border-block: 1px solid var(--line); }
.trustbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.4rem 1rem; text-align: center; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-item strong {
  display: block; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px;
  font-size: 1.05rem; color: var(--text);
}
.trust-item span { font-size: .82rem; color: var(--faint); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 620px; margin: 0 auto clamp(2.2rem, 5vw, 3.4rem); text-align: center; }
.section-sub { color: var(--muted); margin: 1rem 0 0; font-size: 1.05rem; }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.service-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; transition: transform .2s var(--ease), border-color .2s, background .2s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px;
  background: var(--steel-grad); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.service-card:hover { transform: translateY(-5px); border-color: var(--line-2); background: #20242c; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .hex {
  width: 54px; height: 54px; display: grid; place-items: center; font-size: 1.5rem;
  color: var(--accent-2); background: rgba(226,99,44,.10);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  margin-bottom: 1.2rem;
}
.service-card h3 { margin-bottom: .6rem; }
.service-card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-bottom: 2rem; }
.filter {
  background: transparent; border: 1px solid var(--line-2); color: var(--muted);
  padding: .5em 1.1em; border-radius: 40px; cursor: pointer; font-size: .82rem;
  letter-spacing: 1.5px; text-transform: uppercase; transition: .2s;
}
.filter:hover { color: var(--text); border-color: var(--steel-3); }
.filter.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.gcard {
  position: relative; border-radius: 12px; overflow: hidden; cursor: pointer;
  aspect-ratio: 4 / 3; background: var(--bg-3); border: 1px solid var(--line);
}
.gcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), filter .3s; }
.gcard::after {
  content: attr(data-cap); position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem .9rem .8rem; font-size: .86rem; color: #fff; font-weight: 500;
  background: linear-gradient(0deg, rgba(10,11,13,.92), rgba(10,11,13,0));
  transform: translateY(8px); opacity: 0; transition: .3s var(--ease);
}
.gcard:hover img { transform: scale(1.06); }
.gcard:hover::after { transform: translateY(0); opacity: 1; }
.gcard .tag {
  position: absolute; top: .7rem; left: .7rem; z-index: 2; font-size: .66rem; letter-spacing: 1.5px;
  text-transform: uppercase; background: rgba(19,21,25,.8); color: var(--steel-2);
  padding: .3em .7em; border-radius: 5px; border: 1px solid var(--line-2); backdrop-filter: blur(4px);
}
.gcard.hide { display: none; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.process-step {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
}
.process-step img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.process-body { padding: 1.6rem; position: relative; }
.step-num {
  position: absolute; top: -1.4rem; right: 1.2rem; font-size: 3rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1.5px var(--line-2); font-family: 'Oswald', sans-serif;
}
.process-body h3 { margin-bottom: .5rem; }
.process-body p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Capabilities ---------- */
.cap-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.cap-intro .section-sub { margin-bottom: 1.6rem; }
.materials { display: flex; flex-wrap: wrap; gap: .5rem; }
.materials span {
  font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; padding: .45em .9em;
  border: 1px solid var(--line-2); border-radius: 6px; color: var(--steel-2);
  background: rgba(255,255,255,.03);
}
.cap-lists { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.6rem; }
.cap-col h4 {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1.5px;
  font-size: 1rem; color: var(--accent-2); margin: 0 0 .9rem; padding-bottom: .6rem;
  border-bottom: 1px solid var(--line);
}
.cap-col ul { list-style: none; padding: 0; margin: 0; }
.cap-col li { padding: .4rem 0 .4rem 1.4rem; position: relative; color: var(--muted); font-size: .96rem; }
.cap-col li::before {
  content: ""; position: absolute; left: 0; top: .95em; width: 8px; height: 8px;
  background: var(--steel-grad);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}

/* ---------- About ---------- */
.about-wrap { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.about-media img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.about-body p { color: var(--muted); margin: 1rem 0; }
.about-stats { display: flex; gap: 2rem; flex-wrap: wrap; margin: 1.8rem 0 2rem; }
.about-stats strong {
  display: block; font-family: 'Oswald', sans-serif; font-size: 2rem; line-height: 1;
  background: var(--steel-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about-stats span { font-size: .82rem; color: var(--faint); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Contact ---------- */
.section-contact { background: var(--bg-2); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-details { list-style: none; padding: 0; margin: 2rem 0 0; }
.contact-details li {
  display: grid; grid-template-columns: 68px 1fr; gap: 1rem; align-items: baseline;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.cd-label {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 2px;
  font-size: .78rem; color: var(--accent-2);
}
.contact-details a:hover { color: var(--accent-2); }

/* Unit B emphasis — customers keep going to Unit A by mistake */
.unit-flag {
  color: var(--accent); font-weight: 700;
  white-space: nowrap;
}
.unit-note {
  display: block; margin-top: .5rem;
  font-size: .82rem; line-height: 1.45; color: var(--muted, #9aa0a6);
}
.cd-sub { display: block; margin-top: .3rem; font-size: .8rem; line-height: 1.4; color: var(--muted); }

/* Map */
.contact-map { margin-top: clamp(2.5rem, 5vw, 4rem); }
.map-head {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.map-head h3 { margin: .15rem 0 .35rem; }
.map-head .eyebrow { margin: 0; }
.map-note { margin: 0; font-size: .9rem; color: var(--muted, #9aa0a6); max-width: 46ch; }
.map-frame {
  display: block; position: relative; width: 100%;
  aspect-ratio: 16 / 8;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--panel);
}
/* Satellite still: instant placeholder under the loading map */
.map-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* Interactive Google map fades in over the still once loaded */
.map-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; opacity: 0; transition: opacity .5s ease;
}
.map-frame.is-loaded iframe { opacity: 1; }
/* "Loading…" pill with a pulsing dot, hidden once the map is in */
.map-loading {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(15,17,21,.82); color: #fff;
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px;
  font-size: .74rem; padding: .45rem .8rem; border-radius: 999px;
  backdrop-filter: blur(4px); transition: opacity .35s ease;
}
.map-loading-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: mapPulse 1s ease-in-out infinite;
}
@keyframes mapPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }
.map-frame.is-loaded .map-loading { opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .map-loading-dot { animation: none; } }
@media (max-width: 640px) {
  .map-frame { aspect-ratio: 3 / 4; }
  .map-head .btn { width: 100%; }
}

.contact-form-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow);
}
.quote-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field label {
  font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted);
  margin-bottom: .45rem; font-weight: 600;
}
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 8px;
  padding: .8em .9em; color: var(--text); font: inherit; font-size: .98rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(226,99,44,.16);
}
.form-note { font-size: .82rem; color: var(--faint); text-align: center; margin: 1rem 0 0; }
.form-note.error { color: #ff8a6a; }
.form-note.success { color: #7fd39a; }
.opt { color: var(--faint); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: .76rem; }
.field input[type="file"] { padding: .55em .7em; font-size: .9rem; color: var(--muted); cursor: pointer; }
.field input[type="file"]::file-selector-button {
  background: var(--bg-3); color: var(--text); border: 1px solid var(--line-2); border-radius: 6px;
  padding: .5em .9em; margin-right: .8em; cursor: pointer; font: inherit; font-size: .82rem; transition: border-color .2s;
}
.field input[type="file"]::file-selector-button:hover { border-color: var(--steel-3); }

/* ---- Sticky mobile call/quote bar ---- */
.mobile-cta { display: none; }
@media (max-width: 900px) {
  .mobile-cta {
    display: flex; gap: .6rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
    padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom, 0px));
    background: rgba(15,17,20,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
    transform: translateY(0); transition: transform .3s var(--ease);
  }
  .mobile-cta.hide-bar { transform: translateY(120%); }
  .mobile-cta .btn { flex: 1; }
  body { padding-bottom: 74px; }
}

/* ---------- Footer ---------- */
.site-footer { background: #0f1114; border-top: 1px solid var(--line); padding-top: 3rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p { color: var(--faint); max-width: 32ch; margin: 0; font-size: .95rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: .7rem; }
.footer-links a, .footer-contact a, .footer-contact span { color: var(--muted); font-size: .95rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent-2); }
.footer-bottom {
  display: flex; justify-content: space-between; padding: 1.4rem 0; border-top: 1px solid var(--line);
  color: var(--faint); font-size: .82rem; letter-spacing: 1px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(8,9,11,.94);
  display: none; align-items: center; justify-content: center; padding: 4vw;
  opacity: 0; transition: opacity .25s;
}
.lightbox.open { display: flex; opacity: 1; }
.lb-figure { margin: 0; max-width: 1100px; text-align: center; }
.lb-figure img { max-height: 82vh; width: auto; margin: 0 auto; border-radius: 8px; box-shadow: var(--shadow); }
.lb-figure figcaption { color: var(--muted); margin-top: 1rem; font-size: .95rem; letter-spacing: .5px; }
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,.06); border: 1px solid var(--line-2);
  color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center;
  transition: background .2s, transform .2s;
}
.lb-close { top: 3vh; right: 3vw; width: 46px; height: 46px; font-size: 1.1rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; }
.lb-prev { left: 2vw; } .lb-next { right: 2vw; }
.lb-close:hover, .lb-nav:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .cap-wrap, .about-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; }
  .trustbar-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(odd) { border-left: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  /* 2-up gallery so 19 photos aren't a single endless column */
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gcard .tag { font-size: .6rem; padding: .25em .55em; }
  .quote-form .row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .trustbar-inner { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; border-bottom: 1px solid var(--line); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
