/* ============================================================
   Marlow Automotive Co. — concept landing page
   Palette: near-black base, single saturated yellow accent
   Type: Archivo Black (headings) + Inter (body)
   ============================================================ */

:root{
  --ink:        #0D0D0F;
  --ink-2:      #16161A;
  --ink-3:      #1F1F25;
  --line:       #2A2A31;

  --paper:      #FFFFFF;
  --paper-2:    #F6F6F4;
  --paper-3:    #ECECE8;

  --yellow:     #FFC80A;
  --yellow-dk:  #E5B200;
  --yellow-soft:#FFF3C4;

  --text:       #17171B;
  --text-2:     #55555F;
  --text-inv:   #FFFFFF;
  --text-inv-2: #B4B4BE;

  --radius:     14px;
  --radius-lg:  22px;

  --wrap:       1200px;
  --ease:       cubic-bezier(.22,.61,.36,1);

  --shadow-sm:  0 1px 2px rgba(10,10,15,.06), 0 4px 12px rgba(10,10,15,.05);
  --shadow-md:  0 8px 24px rgba(10,10,15,.10), 0 2px 6px rgba(10,10,15,.06);
  --shadow-lg:  0 24px 60px rgba(10,10,15,.18);
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--paper);
  color:var(--text);
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img,video{ display:block; max-width:100%; }

h1,h2,h3{
  font-family:"Archivo Black","Inter",sans-serif;
  font-weight:400;
  line-height:1.04;
  letter-spacing:-.02em;
  margin:0;
}

p{ margin:0 0 1.1em; }
p:last-child{ margin-bottom:0; }

a{ color:inherit; }

.wrap{
  width:100%;
  max-width:var(--wrap);
  margin-inline:auto;
  padding-inline:24px;
}

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--yellow); color:var(--ink);
  padding:12px 20px; font-weight:600; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }

/* ---------- buttons ---------- */
.btn{
  --btn-bg:var(--yellow);
  --btn-fg:var(--ink);
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 24px;
  border:1px solid transparent;
  border-radius:999px;
  background:var(--btn-bg);
  color:var(--btn-fg);
  font-family:"Inter",sans-serif;
  font-weight:600;
  font-size:15px;
  letter-spacing:.01em;
  text-decoration:none;
  cursor:pointer;
  white-space:nowrap;
  transition:transform .18s var(--ease), background-color .18s var(--ease),
             box-shadow .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.btn svg{ width:18px; height:18px; flex:none; }
.btn-primary svg{ fill:currentColor; stroke:none; }
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }

.btn-primary{ background:var(--yellow); color:var(--ink); box-shadow:0 6px 20px rgba(255,200,10,.32); }
.btn-primary:hover{ background:var(--yellow-dk); box-shadow:0 10px 28px rgba(255,200,10,.42); }

.btn-ghost{
  background:rgba(255,255,255,.08);
  color:var(--text-inv);
  border-color:rgba(255,255,255,.34);
  backdrop-filter:blur(6px);
}
.btn-ghost:hover{ background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.6); }

.btn-outline{
  background:transparent; color:var(--ink);
  border-color:var(--ink);
}
.btn-outline svg{ width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }
.btn-outline:hover{ background:var(--ink); color:var(--text-inv); }

.btn-sm{ padding:10px 18px; font-size:14px; }
.btn-lg{ padding:17px 30px; font-size:16px; }
.btn-block{ width:100%; }

/* ---------- header ---------- */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:100;
  transition:background-color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom:1px solid transparent;
}
.header-inner{
  display:flex; align-items:center; gap:28px;
  height:82px;
  transition:height .3s var(--ease);
}

.site-header.is-stuck{
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(14px) saturate(140%);
  border-bottom-color:var(--paper-3);
  box-shadow:var(--shadow-sm);
}
.site-header.is-stuck .header-inner{ height:70px; }

.brand{
  display:flex; align-items:center; gap:11px;
  text-decoration:none; margin-right:auto;
}
.brand-mark{ width:30px; height:30px; fill:var(--yellow); flex:none; transition:transform .4s var(--ease); }
.brand:hover .brand-mark{ transform:rotate(-18deg); }
.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-name{
  font-family:"Archivo Black",sans-serif;
  font-size:19px; letter-spacing:-.015em; color:var(--text-inv);
  transition:color .3s var(--ease);
}
.brand-sub{
  font-size:10.5px; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  color:var(--text-inv-2); transition:color .3s var(--ease);
}
.site-header.is-stuck .brand-name{ color:var(--text); }
.site-header.is-stuck .brand-sub{ color:var(--text-2); }

.nav{ display:flex; gap:30px; }
.nav a{
  position:relative;
  font-size:15px; font-weight:500; text-decoration:none;
  color:rgba(255,255,255,.82);
  transition:color .2s var(--ease);
}
.nav a::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px;
  background:var(--yellow); transform:scaleX(0); transform-origin:left;
  transition:transform .25s var(--ease);
}
.nav a:hover{ color:#fff; }
.nav a:hover::after{ transform:scaleX(1); }
.site-header.is-stuck .nav a{ color:var(--text-2); }
.site-header.is-stuck .nav a:hover{ color:var(--text); }

.header-cta{ display:flex; align-items:center; gap:18px; }
.phone-link{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:15px; text-decoration:none;
  color:#fff; transition:color .2s var(--ease);
}
.phone-link svg{ width:17px; height:17px; fill:var(--yellow); }
.phone-link:hover{ color:var(--yellow); }
.site-header.is-stuck .phone-link{ color:var(--text); }
.site-header.is-stuck .phone-link:hover{ color:var(--yellow-dk); }

/* mobile nav */
.nav-toggle{
  display:none; width:44px; height:44px; padding:11px;
  background:none; border:0; cursor:pointer;
  flex-direction:column; justify-content:space-between;
}
.nav-toggle span{
  display:block; height:2px; width:100%; background:#fff; border-radius:2px;
  transition:transform .3s var(--ease), opacity .2s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck .nav-toggle span,
.site-header.is-open .nav-toggle span{ background:var(--text); }
.site-header.is-open .nav-toggle span:nth-child(1){ transform:translateY(9px) rotate(45deg); }
.site-header.is-open .nav-toggle span:nth-child(2){ opacity:0; }
.site-header.is-open .nav-toggle span:nth-child(3){ transform:translateY(-9px) rotate(-45deg); }

.mobile-nav{
  display:none;
  flex-direction:column; gap:4px;
  padding:8px 24px 26px;
  background:#fff;
  border-bottom:1px solid var(--paper-3);
}
.mobile-nav a{
  padding:14px 2px; text-decoration:none; font-weight:600;
  border-bottom:1px solid var(--paper-3); color:var(--text);
}
.mobile-nav .btn{ margin-top:16px; border-bottom:0; justify-content:center; }

/* ---------- hero ---------- */
.hero{
  position:relative;
  min-height:100svh;
  display:flex; align-items:center;
  padding:140px 0 90px;
  isolation:isolate;
  background:var(--ink);
}
.hero-media{ position:absolute; inset:0; z-index:-1; overflow:hidden; }
.hero-video{
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.04);
}
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(to right, rgba(9,9,12,.94) 0%, rgba(9,9,12,.80) 42%, rgba(9,9,12,.42) 75%, rgba(9,9,12,.60) 100%),
    linear-gradient(to top, rgba(9,9,12,.95) 0%, rgba(9,9,12,0) 45%);
}

.hero-inner{ max-width:920px; }

.hero-kicker{
  font-size:12.5px; font-weight:700; letter-spacing:.28em; text-transform:uppercase;
  color:var(--yellow); margin-bottom:26px;
}
.hero-title{
  font-size:clamp(2.6rem, 6.4vw, 5.1rem);
  color:#fff;
  margin-bottom:26px;
}
.hero-title em{ font-style:normal; color:var(--yellow); }

.hero-sub{
  max-width:52ch;
  font-size:clamp(1rem, 1.35vw, 1.19rem);
  color:rgba(255,255,255,.80);
  margin-bottom:36px;
}

.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:64px; }

.trust-strip{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:1px; list-style:none; margin:0; padding:0;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);
  overflow:hidden;
  backdrop-filter:blur(8px);
}
.trust-strip li{
  display:flex; flex-direction:column; gap:3px;
  padding:20px 22px;
  background:rgba(13,13,15,.62);
}
.trust-strip strong{
  font-family:"Archivo Black",sans-serif; font-weight:400;
  font-size:26px; color:#fff; line-height:1;
}
.trust-strip .stars{ color:var(--yellow); font-size:13px; letter-spacing:1px; line-height:1.4; }
.trust-label{ font-size:12.5px; color:var(--text-inv-2); line-height:1.4; }

.hero-scroll{
  position:absolute; left:50%; bottom:26px; transform:translateX(-50%);
  width:26px; height:42px; border:1.5px solid rgba(255,255,255,.35);
  border-radius:999px; display:grid; place-items:start center; padding-top:8px;
}
.hero-scroll span{
  display:block; width:3px; height:8px; border-radius:2px; background:var(--yellow);
  animation:scrollHint 1.9s var(--ease) infinite;
}
@keyframes scrollHint{
  0%,100%{ transform:translateY(0); opacity:1; }
  50%{ transform:translateY(12px); opacity:.15; }
}

/* ---------- marque bar ---------- */
.marque{
  background:var(--ink);
  border-top:1px solid var(--line);
  padding:34px 0;
}
.marque-label{
  font-size:11.5px; font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color:var(--text-inv-2); margin-bottom:16px;
}
.marque-list{
  display:flex; flex-wrap:wrap; gap:14px 42px;
  list-style:none; margin:0; padding:0;
}
.marque-list li{
  font-family:"Archivo Black",sans-serif;
  font-size:clamp(1rem,1.7vw,1.4rem);
  color:rgba(255,255,255,.62);
  letter-spacing:-.01em;
  transition:color .25s var(--ease);
  cursor:default;
}
.marque-list li:hover{ color:rgba(255,255,255,.85); }

/* ---------- generic section ---------- */
.section{ padding:clamp(72px,9vw,128px) 0; }

.eyebrow{
  font-size:12px; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color:var(--yellow-dk); margin-bottom:14px;
}
.eyebrow--light{ color:var(--yellow); }

.section-title{
  font-size:clamp(1.95rem, 3.6vw, 3.1rem);
  margin-bottom:20px;
}
.section-title--light{ color:#fff; }

.section-head{ max-width:640px; margin-bottom:56px; }
.section-head--center{ margin-inline:auto; text-align:center; }
.section-lead{ color:var(--text-2); font-size:1.06rem; }

/* ---------- services ---------- */
.services{ background:var(--paper-2); }

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.service-card{
  position:relative;
  display:flex; flex-direction:column;
  background:#fff;
  border:1px solid var(--paper-3);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:#DEDED8;
}
.service-card img{
  width:100%; height:210px; object-fit:cover;
  transition:transform .6s var(--ease);
}
.service-card:hover img{ transform:scale(1.045); }

.service-card--feature{ grid-column:span 2; }
.service-card--feature img{ height:290px; }
.service-card--feature h3{ font-size:1.65rem; }

.service-body{ padding:26px 26px 30px; }
.service-body h3{ font-size:1.24rem; margin-bottom:10px; letter-spacing:-.015em; }
.service-body p{ color:var(--text-2); font-size:.97rem; }

.service-tags{
  display:flex; flex-wrap:wrap; gap:8px;
  list-style:none; margin:18px 0 0; padding:0;
}
.service-tags li{
  font-size:12px; font-weight:600;
  padding:6px 12px; border-radius:999px;
  background:var(--yellow-soft); color:#6B5200;
}

/* ---------- collision band ---------- */
.collision{
  position:relative; isolation:isolate;
  padding:clamp(88px,10vw,150px) 0;
  background:var(--ink);
}
.collision-media{ position:absolute; inset:0; z-index:-1; overflow:hidden; }
.collision-video{ width:100%; height:100%; object-fit:cover; }
.collision-scrim{
  position:absolute; inset:0;
  background:linear-gradient(to right, rgba(9,9,12,.95) 0%, rgba(9,9,12,.78) 55%, rgba(9,9,12,.55) 100%);
}
.collision-inner{ max-width:660px; }
.collision-lead{ color:rgba(255,255,255,.78); font-size:1.06rem; }

.pull-quote{
  margin:26px 0 32px; padding:0 0 0 22px;
  border-left:3px solid var(--yellow);
  font-family:"Archivo Black",sans-serif;
  font-size:clamp(1.15rem,1.9vw,1.6rem);
  line-height:1.28; letter-spacing:-.015em;
  color:#fff;
}

/* ---------- about ---------- */
.about-grid{
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(40px,5vw,84px); align-items:center;
}
.about-media{ position:relative; }
.about-media img{
  width:100%; height:100%; max-height:560px; object-fit:cover;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
}
.about-badge{
  position:absolute; right:-18px; bottom:-18px;
  display:flex; flex-direction:column; gap:2px;
  padding:20px 24px;
  background:var(--yellow);
  border-radius:var(--radius);
  box-shadow:var(--shadow-md);
}
.about-badge strong{
  font-family:"Archivo Black",sans-serif; font-weight:400;
  font-size:34px; line-height:1; color:var(--ink);
}
.about-badge span{ font-size:12px; font-weight:600; line-height:1.35; color:#5A4600; }

.about-copy p{ color:var(--text-2); }

.about-stats{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:20px; margin:34px 0 0; padding-top:28px;
  border-top:1px solid var(--paper-3);
}
.about-stats dt{
  font-size:11.5px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--text-2); margin-bottom:6px;
}
.about-stats dd{
  margin:0;
  font-family:"Archivo Black",sans-serif;
  font-size:1.4rem; letter-spacing:-.015em;
}

/* ---------- reviews ---------- */
.reviews{ background:var(--paper-2); }

.review-grid{
  columns:2; column-gap:22px;
}
.review-card{
  break-inside:avoid;
  margin:0 0 22px;
  padding:30px 30px 26px;
  background:#fff;
  border:1px solid var(--paper-3);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }

.review-stars{ color:var(--yellow-dk); letter-spacing:3px; font-size:15px; margin-bottom:16px; }
.review-card blockquote{ margin:0; }
.review-card blockquote p{ font-size:1rem; color:var(--text); }

.review-card figcaption{
  display:flex; align-items:center; gap:12px;
  margin-top:22px; padding-top:20px;
  border-top:1px solid var(--paper-3);
}
.avatar{
  display:grid; place-items:center;
  width:40px; height:40px; border-radius:50%;
  background:var(--ink); color:var(--yellow);
  font-family:"Archivo Black",sans-serif; font-size:16px;
  flex:none;
}
.review-meta{ display:flex; flex-direction:column; line-height:1.35; }
.review-meta strong{ font-size:.95rem; }
.review-meta span{ font-size:12.5px; color:var(--text-2); }

.reviews-cta{ display:flex; justify-content:center; margin-top:14px; }

/* ---------- visit + contact ---------- */
.visit-grid{
  display:grid; grid-template-columns:1.05fr .95fr;
  gap:clamp(36px,5vw,72px); align-items:start;
}

.info-block{ margin-top:34px; }
.info-block h3{
  font-family:"Inter",sans-serif; font-weight:700;
  font-size:12px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--text-2); margin-bottom:12px;
}

.hours{ width:100%; border-collapse:collapse; max-width:420px; }
.hours th,.hours td{
  padding:12px 0; text-align:left;
  border-bottom:1px solid var(--paper-3);
  font-size:.97rem; font-weight:500;
}
.hours td{ text-align:right; font-variant-numeric:tabular-nums; }
.hours .closed th,.hours .closed td{ color:var(--text-2); }

address{ font-style:normal; font-size:1.05rem; line-height:1.6; }
address a{ text-decoration:none; border-bottom:1px solid var(--paper-3); }
address a:hover{ border-bottom-color:var(--yellow); }

.info-links{ margin-top:12px; font-weight:600; }
.info-links a{ text-decoration:none; border-bottom:2px solid var(--yellow); }
.info-links a:hover{ background:var(--yellow-soft); }
.info-links span{ margin:0 10px; color:var(--text-2); }

.map-embed{
  margin-top:32px;
  border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid var(--paper-3);
  box-shadow:var(--shadow-sm);
  aspect-ratio:16/10;
}
.map-embed iframe{ width:100%; height:100%; border:0; display:block; filter:grayscale(.35); }

.contact-panel{
  padding:clamp(28px,3vw,44px);
  background:var(--ink);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  position:sticky; top:100px;
}
.form-title{ color:#fff; font-size:clamp(1.5rem,2.2vw,2rem); margin-bottom:10px; }
.form-lead{ color:var(--text-inv-2); font-size:.98rem; margin-bottom:28px; }

.field{ margin-bottom:18px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }

.estimate-form label{
  display:block; margin-bottom:7px;
  font-size:13px; font-weight:600; color:rgba(255,255,255,.86);
}
.optional{ font-weight:400; color:var(--text-inv-2); }

.estimate-form input,
.estimate-form select,
.estimate-form textarea{
  width:100%; padding:13px 15px;
  font:inherit; font-size:15px;
  color:#fff;
  background:var(--ink-3);
  border:1px solid var(--line);
  border-radius:10px;
  transition:border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.estimate-form textarea{ resize:vertical; min-height:96px; }
.estimate-form ::placeholder{ color:#5F5F6B; }
.estimate-form input:hover,
.estimate-form select:hover,
.estimate-form textarea:hover{ border-color:#3A3A44; }
.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus{
  outline:none;
  border-color:var(--yellow);
  box-shadow:0 0 0 3px rgba(255,200,10,.20);
  background:var(--ink-2);
}
.estimate-form select{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A8A96' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:18px;
  padding-right:44px;
}
.estimate-form select option{ background:var(--ink-2); color:#fff; }

.field.has-error input,
.field.has-error select{ border-color:#F0605F; }
.error{
  margin:6px 0 0; font-size:12.5px; color:#FF8A89; min-height:0;
}

.estimate-form .btn{ margin-top:8px; }
.form-note{
  margin-top:16px; text-align:center;
  font-size:13px; color:var(--text-inv-2);
}
.form-note a{ color:var(--yellow); text-decoration:none; font-weight:600; }
.form-note a:hover{ text-decoration:underline; }

.form-success{
  margin-top:18px; padding:14px 16px;
  background:rgba(255,200,10,.12);
  border:1px solid rgba(255,200,10,.4);
  border-radius:10px;
  color:var(--yellow); font-size:14px; font-weight:600; text-align:center;
}

/* ---------- footer ---------- */
.site-footer{ background:var(--ink); color:var(--text-inv-2); padding-top:64px; }
.footer-inner{
  display:grid; grid-template-columns:1.4fr 1fr 1fr;
  gap:40px; padding-bottom:48px;
}
.footer-brand{ display:flex; gap:14px; align-items:flex-start; }
.footer-brand .brand-mark{ width:34px; height:34px; fill:var(--yellow); flex:none; }
.footer-name{
  font-family:"Archivo Black",sans-serif; color:#fff;
  font-size:1.05rem; margin-bottom:4px; letter-spacing:-.01em;
}
.footer-tag{ font-size:13.5px; }

.footer-nav{ display:flex; flex-direction:column; gap:11px; }
.footer-nav a{ text-decoration:none; font-size:14.5px; transition:color .2s var(--ease); }
.footer-nav a:hover{ color:var(--yellow); }

.footer-contact{ text-align:right; }
.footer-phone{
  display:inline-block;
  font-family:"Archivo Black",sans-serif; color:#fff;
  font-size:1.35rem; text-decoration:none; margin-bottom:8px;
  transition:color .2s var(--ease);
}
.footer-phone:hover{ color:var(--yellow); }
.footer-contact p{ font-size:13.5px; }

.footer-base{
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  padding-block:22px;
  border-top:1px solid var(--line);
  font-size:12.5px;
}
.footer-base p{ margin:0; }
.footer-demo{ color:#8E8E9A; }

/* ---------- sticky mobile call ---------- */
.sticky-call{
  position:fixed; z-index:90;
  left:16px; right:16px; bottom:16px;
  display:none; align-items:center; justify-content:center; gap:10px;
  padding:16px;
  background:var(--yellow); color:var(--ink);
  border-radius:999px; text-decoration:none;
  font-weight:700; font-size:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.28);
}
.sticky-call svg{ width:19px; height:19px; fill:currentColor; }

/* ---------- reveal ----------
   Gated on .js so the page is never left blank if the script fails to run. */
.js .reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
  will-change:opacity, transform;
}
.js .reveal.is-visible{ opacity:1; transform:none; }

/* ---------- focus ---------- */
:focus-visible{
  outline:3px solid var(--yellow);
  outline-offset:3px;
  border-radius:4px;
}
.contact-panel :focus-visible{ outline-offset:2px; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width:1024px){
  .service-grid{ grid-template-columns:repeat(2,1fr); }
  .service-card--feature{ grid-column:span 2; }
  .visit-grid{ grid-template-columns:1fr; }
  .contact-panel{ position:static; }
  .trust-strip{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width:900px){
  .nav,.header-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .site-header.is-open{ background:#fff; box-shadow:var(--shadow-md); }
  .site-header.is-open .brand-name{ color:var(--text); }
  .site-header.is-open .brand-sub{ color:var(--text-2); }
  .site-header.is-open .mobile-nav{ display:flex; }

  .about-grid{ grid-template-columns:1fr; }
  .about-badge{ right:16px; bottom:-16px; }

  .review-grid{ columns:1; }

  .footer-inner{ grid-template-columns:1fr; gap:32px; }
  .footer-contact{ text-align:left; }
  .footer-nav{ flex-direction:row; flex-wrap:wrap; gap:8px 22px; }
}

@media (max-width:768px){
  body{ font-size:16px; }
  .hero{ padding:120px 0 120px; min-height:auto; }
  .hero-scrim{
    background:linear-gradient(to top, rgba(9,9,12,.96) 12%, rgba(9,9,12,.72) 60%, rgba(9,9,12,.80) 100%);
  }
  .hero-actions{ margin-bottom:44px; }
  .hero-actions .btn{ width:100%; }
  .hero-scroll{ display:none; }

  .service-grid{ grid-template-columns:1fr; }
  .service-card--feature{ grid-column:span 1; }
  .service-card--feature img{ height:230px; }

  .field-row{ grid-template-columns:1fr; gap:0; }

  .sticky-call{ display:flex; }
  .site-footer{ padding-bottom:84px; }
}

@media (max-width:480px){
  .wrap{ padding-inline:20px; }
  .trust-strip{ grid-template-columns:1fr; }
  .about-badge{ right:14px; bottom:-14px; padding:16px 18px; }
  .about-stats{ grid-template-columns:1fr; gap:14px; }
}

/* ---------- motion preferences ---------- */
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  .js .reveal{ opacity:1; transform:none; }
  .hero-video,.collision-video{ display:none; }
  .hero-media{ background:url("../https://images.unsplash.com/photo-1487754180451-c456f719a1fc?q=80&w=1200&auto=format&fit=crop") center/cover no-repeat; }
  .collision-media{ background:url("../https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?q=80&w=1200&auto=format&fit=crop") center/cover no-repeat; }
}
