/* ============================================================
   SITELY DEMO — "Wicked Signs & Fabrication LLC" prospect mockup.
   Sample marketing site built to pitch a real custom sign &
   fabrication shop (London Bridge Market, Lake Havasu City, AZ).
   Not affiliated with or endorsed by the business.
   Photos are the business's own public work photos. Not indexed.
   Industrial fab-shop look — charcoal / wicked red / brushed steel,
   Oswald display + Inter body.
   ============================================================ */
:root {
  --red: #d81f2a;
  --red-d: #b2131d;
  --red-l: #ef3b46;
  --ink: #121317;
  --ink-2: #191b21;
  --ink-3: #23262e;
  --ink-4: #2d313b;
  --steel: #8b929c;
  --steel-l: #b8bec7;
  --silver: #d7dbe0;
  --smoke: #f3f4f6;
  --smoke-2: #eceef1;
  --paper: #ffffff;
  --body: #565b63;
  --heading: #14151a;
  --line: #e2e4e8;
  --line-dk: #31353f;
  --shadow: 0 18px 44px rgba(10, 12, 18, .18);
  --shadow-sm: 0 8px 22px rgba(10, 12, 18, .12);
  --radius: 8px;
  --radius-sm: 6px;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--paper); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1240px, 92%); margin: 0 auto; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--heading); line-height: 1.08; letter-spacing: .002em; font-weight: 700; text-transform: uppercase; }
section { scroll-margin-top: 80px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 600; font-size: .96rem; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; text-align: center;
  padding: .86rem 1.9rem; border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent;
  transition: background .16s ease, transform .14s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.btn-block { width: 100%; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(216,31,42,.32); }
.btn-steel { background: var(--silver); color: var(--ink); }
.btn-steel:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--red); border-color: var(--red); }
.btn-ghost:hover { background: var(--red); color: #fff; }
.btn-outline-light { background: rgba(255,255,255,.05); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink); color: #b9bfc8; font-size: .78rem; font-weight: 500;
  letter-spacing: .03em; padding: 9px 0; border-bottom: 1px solid var(--line-dk);
}
.topbar-inner { display: flex; justify-content: space-between; gap: 8px 24px; flex-wrap: wrap; align-items: center; }
.topbar .gl { color: var(--red-l); }
.topbar b { color: #fff; font-weight: 700; }
.topbar a { color: #fff; text-decoration: none; font-weight: 700; }
.topbar a:hover { color: var(--red-l); text-decoration: underline; }

/* ---------- Header ---------- */
.site-header { background: var(--ink); position: sticky; top: 0; z-index: 50; border-bottom: 3px solid var(--red); box-shadow: 0 2px 16px rgba(0,0,0,.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 11px 0; }
.brand { text-decoration: none; line-height: 1; flex: none; display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 50px; height: 50px; flex: none; background: var(--red); color: #fff;
  display: grid; place-items: center; border-radius: var(--radius-sm); font-family: var(--font-head);
  font-weight: 700; font-size: 1.5rem; letter-spacing: .01em; box-shadow: inset 0 0 0 2px rgba(255,255,255,.22);
  transform: skewX(-6deg);
}
.brand-mark span { transform: skewX(6deg); }
.brand-txt .brand-top { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; letter-spacing: .02em; color: #fff; text-transform: uppercase; }
.brand-txt .brand-sub { display: block; font-size: .6rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--red-l); margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: #d3d7dd; font-family: var(--font-head); font-size: 1rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: .04em; text-decoration: none; padding: 8px 0; position: relative;
}
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--red); transition: right .2s ease; border-radius: 2px; }
.nav a:hover { color: #fff; }
.nav a:hover::after { right: 0; }
.header-btns { display: flex; gap: 12px; align-items: center; flex: none; }
.header-call { text-decoration: none; color: #fff; text-align: right; line-height: 1.15; }
.header-call small { display: block; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); font-weight: 600; font-family: var(--font-head); }
.header-call b { font-family: var(--font-head); font-size: 1.16rem; letter-spacing: .02em; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(101deg, rgba(15,16,20,.94) 0%, rgba(18,19,23,.86) 42%, rgba(18,19,23,.5) 100%);
}
.hero-inner { padding: 92px 0 100px; max-width: 760px; }
.hero .kicker {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head);
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--red); padding: 6px 16px; border-radius: 4px; margin-bottom: 22px;
}
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 700; letter-spacing: .005em; margin-bottom: 18px; text-shadow: 0 2px 26px rgba(0,0,0,.5); }
.hero h1 .gl { color: var(--red-l); }
.hero-sub { color: #dfe2e7; font-size: 1.1rem; max-width: 630px; margin-bottom: 28px; font-weight: 400; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 12px; margin-bottom: 32px; }
.hero-badges span { font-family: var(--font-head); font-size: .82rem; font-weight: 500; letter-spacing: .03em; text-transform: uppercase; color: #eef0f3; display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: 6px 14px; border-radius: 4px; }
.hero-badges .stars { color: var(--red-l); letter-spacing: 1px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Trust / stats strip ---------- */
.stats { background: var(--red); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 26px 12px; border-left: 1px solid rgba(255,255,255,.18); min-width: 0; }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2.4rem); line-height: 1; color: #fff; letter-spacing: .01em; }
.stat span { display: block; margin-top: 7px; font-family: var(--font-head); font-weight: 400; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: #ffe0e2; }

/* ---------- Section shell ---------- */
.sec { padding: 78px 0 84px; }
.sec.alt { background: var(--smoke); }
.sec.dark { background: var(--ink); color: #cfd3da; }
.sec-head { max-width: 800px; margin: 0 auto 50px; text-align: center; }
.eyebrow { font-family: var(--font-head); font-size: .84rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.sec.dark .eyebrow { color: var(--red-l); }
.sec-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.sec.dark .sec-head h2 { color: #fff; }
.sec-head p { color: var(--body); font-size: 1.03rem; margin-top: 14px; }
.sec.dark .sec-head p { color: #b6bcc5; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: #d4d7dc; }
.svc-card figure { position: relative; overflow: hidden; background: var(--ink-2); }
.svc-card img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover img { transform: scale(1.05); }
.svc-card figure b {
  position: absolute; left: 12px; bottom: 12px; background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 500; font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 13px; border-radius: 4px;
}
.svc-body { padding: 22px 24px 26px; flex: 1; }
.svc-body h3 { font-size: 1.4rem; margin-bottom: 8px; }
.svc-body p { font-size: .93rem; color: var(--body); }

/* ---------- Split (photo + charcoal panel) ---------- */
.split { display: grid; grid-template-columns: 1fr 1.05fr; }
.split-media { min-height: 520px; position: relative; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-panel { background: var(--ink); color: #dfe3e8; padding: 76px 7% 76px 6%; }
.split-panel .eyebrow { color: var(--red-l); }
.split-panel h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 18px; }
.split-panel p { color: #c3c8d0; font-size: 1rem; margin-bottom: 16px; }
.tick { list-style: none; display: grid; gap: 14px; margin: 24px 0 30px; }
.tick li { position: relative; padding-left: 38px; font-size: .98rem; color: #dce0e6; }
.tick li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 25px; height: 25px; background: var(--red); color: #fff; border-radius: 4px; display: grid; place-items: center; font-size: .82rem; font-weight: 800; }
.tick li b { color: #fff; }

/* ---------- About band ---------- */
.about { text-align: center; }
.about-inner { max-width: 900px; margin: 0 auto; }
.about h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 8px; }
.about .sig { font-family: var(--font-head); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--red); margin-bottom: 22px; font-size: 1rem; }
.about p { color: var(--body); font-size: 1.05rem; margin-bottom: 16px; }
.about p b { color: var(--ink); }

/* ---------- Press / featured logos ---------- */
.press { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 30px; }
.press p { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; color: var(--steel); margin-bottom: 16px; }
.press-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 30px; }
.press-row span { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 1.05rem; color: #9aa0aa; }

/* ---------- Gallery strip ---------- */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.strip figure { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); background: var(--ink-2); }
.strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .45s ease; }
.strip figure:hover img { transform: scale(1.07); }
.strip figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px 14px 12px; background: linear-gradient(transparent, rgba(10,11,14,.9)); font-family: var(--font-head); font-weight: 500; font-size: .84rem; letter-spacing: .04em; text-transform: uppercase; color: #fff; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; background: var(--ink-2); border: 1px solid var(--line-dk); border-radius: var(--radius); padding: 28px 22px 26px; }
.step .num { font-family: var(--font-head); font-weight: 700; font-size: 2.7rem; color: var(--red-l); line-height: 1; display: block; margin-bottom: 10px; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; color: #fff; }
.step p { font-size: .9rem; color: #aeb4bd; }

/* ---------- Reviews ---------- */
.rev-head { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 32px; }
.rev-score { display: flex; align-items: center; gap: 16px; }
.rev-score .big { font-family: var(--font-head); font-weight: 700; font-size: 3.2rem; line-height: 1; color: var(--red); }
.rev-score .stars { color: var(--red); font-size: 1.35rem; letter-spacing: 2px; }
.rev-score small { display: block; color: var(--body); font-size: .84rem; margin-top: 2px; }
.star-empty { color: #cdd1d7; }
.rev-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); border-top: 3px solid var(--red); padding: 24px 22px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.rev-card .stars { color: var(--red); letter-spacing: 2px; font-size: 1rem; margin-bottom: 12px; }
.rev-card p { font-size: .95rem; color: #4a4e56; flex: 1; }
.rev-card-cta { border-top-color: var(--ink); background: var(--ink); color: #fff; text-align: center; justify-content: center; align-items: center; }
.rev-card-cta h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.rev-card-cta p { color: #b6bcc5; margin-bottom: 18px; flex: none; }
.rev-user { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.rev-avatar { width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; background: var(--ink); }
.rev-user b { font-size: .9rem; display: block; line-height: 1.2; color: var(--ink); font-family: var(--font-head); letter-spacing: .02em; }
.rev-user span { font-size: .76rem; color: var(--body); }
.rev-note { text-align: center; margin-top: 26px; font-size: .84rem; color: var(--body); max-width: 780px; margin-left: auto; margin-right: auto; }

/* ---------- Service area / locations ---------- */
.areas { background: var(--ink); color: #fff; text-align: center; padding: 78px 0 84px; }
.areas .eyebrow { color: var(--red-l); }
.areas h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 12px; }
.areas p { color: #c3c8d0; max-width: 680px; margin: 0 auto 34px; }
.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 900px; margin: 0 auto 34px; text-align: left; }
.loc-card { background: var(--ink-2); border: 1px solid var(--line-dk); border-radius: var(--radius); padding: 26px 26px 24px; }
.loc-card .loc-tag { font-family: var(--font-head); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--red); padding: 4px 11px; border-radius: 4px; display: inline-block; margin-bottom: 14px; }
.loc-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 8px; }
.loc-card p { color: #b6bcc5; font-size: .93rem; margin-bottom: 6px; }
.loc-card a { color: #fff; font-weight: 700; text-decoration: none; }
.loc-card a:hover { color: var(--red-l); }
.area-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; list-style: none; max-width: 920px; margin: 0 auto; }
.area-list li { border: 1px solid var(--line-dk); background: rgba(255,255,255,.04); padding: 8px 18px; border-radius: 4px; font-family: var(--font-head); font-weight: 400; font-size: .88rem; letter-spacing: .03em; text-transform: uppercase; color: #dce0e6; }

/* ---------- CTA band ---------- */
.cta { position: relative; isolation: isolate; color: #fff; text-align: center; padding: 82px 0 86px; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(15,16,20,.9), rgba(178,19,29,.82)); }
.cta h2 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.3rem); margin-bottom: 12px; }
.cta p { font-size: 1.08rem; max-width: 680px; margin: 0 auto 28px; color: #f0e2e3; }
.cta .hero-btns { justify-content: center; }
.cta .fine { font-size: .84rem; margin-top: 22px; color: #e6c9cc; font-weight: 500; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: start; }
.contact-info h3 { font-size: 1.7rem; margin-bottom: 6px; }
.info-rows { display: grid; gap: 18px; margin: 22px 0 26px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row .ic { width: 44px; height: 44px; flex: none; background: var(--red); color: #fff; display: grid; place-items: center; border-radius: var(--radius-sm); font-size: 1rem; }
.info-row b { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: .02em; display: block; color: var(--ink); }
.info-row span, .info-row a { font-size: .93rem; color: var(--body); text-decoration: none; }
.info-row a:hover { color: var(--red); }
.info-label { font-family: var(--font-head); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; display: block; margin-bottom: 8px; color: var(--ink); }
.hours-table { list-style: none; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.hours-table li { display: flex; justify-content: space-between; padding: 11px 16px; font-size: .92rem; }
.hours-table li:nth-child(odd) { background: var(--smoke); }
.hours-table li b { font-family: var(--font-body); font-weight: 700; color: var(--ink); }
.hours-table .closed { color: var(--red); font-weight: 600; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 44px; height: 44px; display: grid; place-items: center; background: var(--ink); color: #fff; border-radius: var(--radius-sm); text-decoration: none; font-family: var(--font-head); font-weight: 600; font-size: .82rem; transition: background .16s, transform .16s; }
.socials a:hover { background: var(--red); transform: translateY(-2px); }
.map-embed { border: 0; width: 100%; height: 300px; border-radius: var(--radius); margin-top: 26px; filter: grayscale(.3) contrast(1.05); }

.quote-form { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--red); border-radius: var(--radius); padding: 32px 30px 34px; box-shadow: var(--shadow-sm); }
.quote-form h3 { font-size: 1.6rem; margin-bottom: 4px; }
.quote-form > p { font-size: .92rem; color: var(--body); margin-bottom: 18px; }
.quote-form > p b { color: var(--red); }
.fld { margin-bottom: 15px; }
.fld label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 6px; color: var(--ink); }
.fld input, .fld select, .fld textarea {
  width: 100%; padding: .76rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; background: var(--smoke); color: var(--ink);
}
.fld input::placeholder, .fld textarea::placeholder { color: #9aa0aa; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: 2px solid var(--red); border-color: var(--red); background: #fff; }
.fld-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.form-status { margin-top: 14px; font-size: .92rem; font-weight: 600; color: #1f9d55; min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer { background: #0c0d10; color: #aeb4bd; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-brand .brand-top { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: #fff; letter-spacing: .02em; text-transform: uppercase; }
.footer-brand .brand-sub { display: block; font-size: .6rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--red-l); margin: 3px 0 14px; }
.footer-brand p { font-size: .92rem; color: #9299a3; max-width: 340px; }
.site-footer h4 { color: #fff; font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 15px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: #aeb4bd; text-decoration: none; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-contact li { font-size: .92rem; margin-bottom: 10px; color: #aeb4bd; }
.footer-contact b { color: #fff; font-family: var(--font-body); }
.footer-bottom { border-top: 1px solid var(--line-dk); margin-top: 46px; padding-top: 22px; text-align: center; font-size: .84rem; color: #7c828c; }
.footer-bottom a { color: #fff; font-weight: 700; text-decoration: none; }
.footer-bottom a:hover { color: var(--red-l); }

/* ---------- Sitely demo chip ---------- */
.demo-chip {
  position: fixed; right: 18px; bottom: 18px; z-index: 70; display: flex; align-items: center; gap: 8px;
  background: #fff; color: #101828; text-decoration: none; border-radius: 999px; padding: .55rem 1rem .55rem .7rem;
  font-family: var(--font-body); font-size: .85rem; font-weight: 600; box-shadow: 0 10px 30px rgba(2,8,20,.35);
  border: 1px solid #e4e9f0; transition: transform .16s ease;
}
.demo-chip:hover { transform: translateY(-2px); }
.demo-chip svg { flex: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 320px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .rev-cards { grid-template-columns: 1fr; }
  .header-call { display: none; }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 0 0 auto 0; flex-direction: column; align-items: flex-start; gap: 2px;
    background: var(--ink); padding: 78px 7vw 24px; display: none; box-shadow: 0 20px 40px rgba(0,0,0,.4);
    border-bottom: 3px solid var(--red);
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line-dk); color: #fff; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; position: relative; z-index: 80; }
  .header-call { display: none; }
  .header-btns .btn { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.18); }
  .stat b { font-size: 1.55rem; }
  .stat span { font-size: .72rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .fld-2 { grid-template-columns: 1fr; }
  .hero-inner { padding: 66px 0 74px; }
  .rev-head { flex-direction: column; align-items: flex-start; }
}
