/* =========================================================
   JAS Industries — recreated static site
   Brand: red #E0282E · gray #6D6E71 · black · white
   Fonts: Archivo (display) · Barlow (body)  ~ DIN Pro feel
   ========================================================= */

:root {
  --red: #E0282E;
  --red-dark: #b81f24;
  --ink: #17181a;
  --ink-2: #2a2c2f;
  --gray: #6D6E71;
  --gray-light: #9a9b9e;
  --line: #e7e7e9;
  --bg: #ffffff;
  --bg-soft: #f5f5f6;
  --bg-dark: #17181a;
  --white: #ffffff;
  --container: 1240px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 18px 50px rgba(0,0,0,.10);
  --shadow-lg: 0 30px 70px rgba(0,0,0,.22);
  --ease: cubic-bezier(.22,.61,.36,1);
  --sans: 'DIN Pro', 'Barlow', system-ui, -apple-system, sans-serif;
  --display: 'DIN Pro', 'Archivo', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 40px);
}

.text-red { color: var(--red); }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow.light { color: rgba(255,255,255,.75); }

.section__title {
  font-size: clamp(30px, 4.5vw, 45px);
  font-weight: 700;
  line-height: 1.1;
}

.section {
  padding-block: clamp(64px, 9vw, 120px);
}

.section__head { max-width: 720px; }
.section__head.center { margin-inline: auto; text-align: center; }
.section__intro { margin-top: 16px; font-size: 1.12rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--btn-bg); color: #fff; box-shadow: 0 12px 26px rgba(224,40,46,.32); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(224,40,46,.42); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-3px); }
.btn--block { width: 100%; }
.btn--dark { background: var(--ink); color: #fff; box-shadow: 0 12px 26px rgba(0,0,0,.22); }
.btn--dark:hover { background: #000; transform: translateY(-3px); box-shadow: 0 18px 34px rgba(0,0,0,.30); }
/* frameless product image — no radius/shadow/background (overrides base .service__media img) */
.service__media.service__media--plain img { border-radius: 0; box-shadow: none; background: transparent; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  font-size: .86rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  flex-wrap: wrap;
}
.topbar__contact { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.82); transition: color .2s; }
.topbar__item:hover { color: #fff; }
.topbar__item svg { color: var(--red); }
.topbar__social { display: flex; gap: 8px; }

.social-ico {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  color: #fff;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.social-ico:hover { background: var(--red); transform: translateY(-2px); }
.topbar__social .social-ico { background: var(--red); }
.topbar__social .social-ico:hover { background: var(--red-dark); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}
.header.is-stuck { box-shadow: 0 8px 30px rgba(0,0,0,.09); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.header__logo img { width: clamp(96px, 9vw, 120px); height: auto; }

.nav { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 26px); }
.nav__link {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width .28s var(--ease);
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  font-family: var(--display);
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  background: var(--red);
  padding: 11px 22px;
  border-radius: 999px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav__cta:hover { background: var(--red-dark); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px; border-radius: 3px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(600px, 88vh, 860px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero__slide.is-active { opacity: 1; animation: heroZoom 7s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(15,16,18,.94) 0%, rgba(15,16,18,.78) 42%, rgba(15,16,18,.35) 100%),
    linear-gradient(0deg, rgba(224,40,46,.18), rgba(224,40,46,0) 40%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding-block: 60px;
  width: 100%;
}
.hero__badge {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero__title {
  font-size: clamp(2.7rem, 6.4vw, 5.2rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero__lead {
  font-size: 1.16rem;
  color: rgba(255,255,255,.86);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__form {
  background: rgba(255,255,255,.98);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--red);
}
.hero__form-title { font-size: 1.5rem; font-weight: 800; }
.hero__form-sub { font-size: .96rem; margin: 8px 0 20px; color: var(--gray); }

/* ---------- Forms ---------- */
.quote-form { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-form input,
.quote-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color .2s, background .2s;
}
.quote-form textarea { resize: vertical; }
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: #9b9c9f; }
.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}
.quote-form input.invalid,
.quote-form textarea.invalid { border-color: var(--red); background: #fff5f5; }
.form-status { font-size: .92rem; margin: 4px 0 0; min-height: 1em; font-weight: 600; }
.form-status.ok { color: #1c8a4e; }
.form-status.err { color: var(--red); }

/* ---------- About / KSA ---------- */
.eyebrow--muted { color: var(--gray); }

.about__head { max-width: 1000px; margin: 0 auto clamp(46px, 6vw, 78px); text-align: center; }
.about__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 45px);
  line-height: 1.1;
  color: var(--red);
  letter-spacing: -0.02em;
}
.about__rule { display: block; width: 68px; height: 3px; border-radius: 2px; background: var(--red); margin: 22px auto 0; }
.about__intro { max-width: 940px; margin: 26px auto 0; font-size: 1.13rem; color: var(--gray); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: clamp(36px, 5vw, 74px);
  align-items: center;
}
.about__media { position: relative; isolation: isolate; }
.about__media::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -24px; left: -24px;
  width: 60%; height: 64%;
  background: var(--red);
  border-radius: clamp(70px, 12vw, 150px) 30px 34px 30px;
}
.about__media img {
  position: relative;
  width: 100%;
  border-radius: clamp(70px, 12vw, 150px) 18px 18px 18px;
  box-shadow: var(--shadow);
}
.about__body p { margin: 0 0 18px; }
.about__subtitle {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  margin: 26px 0 16px;
}

/* Red-check industries list */
.checklist {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 13px;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 500;
  font-size: 1.02rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 17px; height: 17px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E0282E'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- Legacy / industries ---------- */
.legacy { background: var(--bg-soft); }
.industries {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 54px;
}
.industry {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.industry:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.industry__ico {
  display: grid; place-items: center;
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: rgba(224,40,46,.10);
  color: var(--red);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.industry:hover .industry__ico { background: var(--red); color: #fff; }
.industry h3 { font-size: 1.02rem; font-weight: 700; color: var(--ink); line-height: 1.3; }

/* ---------- Service sections ---------- */
.service--alt { background: var(--bg-soft); }
.service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}
.service__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}
.service__media--portrait { max-width: 460px; margin-inline: auto; }
.service__body p { margin: 0 0 18px; }
.service__kicker { font-weight: 600; color: var(--ink); font-size: 1.08rem; }
.service__body .btn { margin-top: 8px; }

.ticks { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; }
.ticks li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 500;
}
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ---------- Galleries ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(34px, 5vw, 60px);
}
.gallery--two { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin-inline: auto; }
.gallery__item {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.07);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(224,40,46,.55), rgba(224,40,46,0) 55%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: 1; }

/* Signage section background */
#signagesolutions { background: #F8F8F8; }

/* Graphics section background (override the alternating gray) */
#graphicssolutions { background: #ffffff; }

/* ---------- Signage collage (overlapping framed montage) ---------- */
.collage {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 11;
}
.collage__cell {
  position: absolute;
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(0,0,0,.20);
  background: #fff;
  cursor: pointer;
}
.collage__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.collage__cell:hover { z-index: 15; }
.collage__cell:hover img { transform: scale(1.05); }
/* overlapping placement — large hero + brand frames layered around it */
.collage__cell:nth-child(1) { left: 1%;  top: 16%; width: 60%; height: 63%; z-index: 6; transform: rotate(-4deg); box-shadow: 0 26px 52px rgba(0,0,0,.30); }
.collage__cell:nth-child(2) { left: 19%; top: 0;   width: 58%; height: 26%; z-index: 2; transform: rotate(-3deg); }
.collage__cell:nth-child(3) { left: 63%; top: 3%;  width: 38%; height: 29%; z-index: 3; transform: rotate(3deg); }
.collage__cell:nth-child(4) { left: 57%; top: 21%; width: 27%; height: 57%; z-index: 4; transform: rotate(0deg); }
.collage__cell:nth-child(5) { left: 73%; top: 32%; width: 30%; height: 26%; z-index: 5; transform: rotate(3deg); }
.collage__cell:nth-child(6) { left: 72%; top: 62%; width: 22%; height: 25%; z-index: 6; transform: rotate(2deg); }
.collage__cell:nth-child(7) { left: 16%; top: 76%; width: 47%; height: 22%; z-index: 3; transform: rotate(-2deg); }
.collage__cell:nth-child(8) { left: 88%; top: 63%; width: 13%; height: 23%; z-index: 5; transform: rotate(1deg); }

/* ---------- Contact ---------- */
.contact {
  background:
    linear-gradient(rgba(15,16,18,.92), rgba(15,16,18,.96)),
    url("../assets/images/main3.png") center/cover fixed;
  color: #fff;
}
.contact .section__title { color: #fff; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}
.contact__intro p { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.contact__list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 16px; }
.contact__list li { display: flex; align-items: center; gap: 14px; font-size: 1.05rem; color: #fff; }
.contact__list a:hover { color: var(--red); }
.contact__ico {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  flex-shrink: 0;
}
.contact__card {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--red);
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  padding-block: clamp(48px, 6vw, 74px);
}
.footer__brand img { width: 160px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.footer__brand p { max-width: 340px; margin: 0 0 22px; }
.footer__social { display: flex; gap: 10px; }
.footer__col h4 {
  font-family: var(--display);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.footer__col a, .footer__muted { display: block; color: rgba(255,255,255,.68); margin-bottom: 12px; transition: color .2s, padding .2s; }
.footer__col a:hover { color: var(--red); padding-left: 5px; }
.footer__muted { color: rgba(255,255,255,.45); font-size: .9rem; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  padding-block: 22px;
  font-size: .9rem;
}
.footer__bar p { margin: 0; }
.footer__top { color: rgba(255,255,255,.7); font-weight: 600; transition: color .2s; }
.footer__top:hover { color: var(--red); }

/* Footer Google map */
.footer__map { position: relative; width: 100%; height: clamp(320px, 40vw, 460px); background: #0e0f11; line-height: 0; }
.footer__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.footer__map-btn {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink);
  font-family: var(--display); font-weight: 700; font-size: .9rem; line-height: 1;
  padding: 11px 16px; border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  transition: color .2s, transform .2s var(--ease);
}
.footer__map-btn:hover { color: var(--red); transform: translateY(-2px); }
/* red social circles in footer bar */
.footer__social--red .social-ico { background: var(--red); }
.footer__social--red .social-ico:hover { background: var(--red-dark); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(10,10,12,.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  animation: lbIn .3s var(--ease);
}
@keyframes lbIn { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s var(--ease);
}
.lightbox__close { top: 24px; right: 30px; width: 48px; height: 48px; border-radius: 50%; font-size: 30px; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; font-size: 34px; }
.lightbox__prev { left: 28px; }
.lightbox__next { right: 28px; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--red); }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .industries { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 92px; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    background: #fff;
    padding: 100px 28px 40px;
    box-shadow: -20px 0 60px rgba(0,0,0,.18);
    transform: translateX(100%);
    transition: transform .38s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav__link { font-size: 1.1rem; width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 14px; }
  body.nav-open { overflow: hidden; }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; padding-block: 40px; }
  .about__grid, .service__grid, .service__grid--rev, .contact__grid { grid-template-columns: 1fr; }
  .service__grid--rev .service__media { order: -1; }
  .about__media { max-width: 560px; }
  .contact { background-attachment: scroll; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .topbar__inner { justify-content: center; }
  .topbar__contact { gap: 16px; justify-content: center; }
  .industries { grid-template-columns: 1fr 1fr; }
  .gallery, .gallery--wide { grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .stats { gap: 10px; }
  .stat strong { font-size: 1.8rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .about__badge { right: 12px; bottom: -18px; padding: 14px 18px; }
  .footer__bar-inner { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .industries { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__slide { animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   PREMIUM POLISH LAYER — elevates the existing design only
   (content, layouts, 45px/700 headings, section backgrounds,
    DIN Pro stacks and plain images are all preserved)
   ========================================================= */
:root {
  --shadow: 0 2px 6px rgba(15,16,18,.05), 0 14px 32px rgba(15,16,18,.09), 0 30px 60px rgba(15,16,18,.06);
  --shadow-lg: 0 6px 14px rgba(15,16,18,.08), 0 28px 54px rgba(15,16,18,.16), 0 48px 96px rgba(15,16,18,.12);
}
::selection { background: rgba(224,40,46,.9); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* airier, more intentional vertical rhythm */
.section { padding-block: clamp(74px, 9.5vw, 140px); }

/* frosted-glass header */
.header {
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
}
.header.is-stuck {
  background: rgba(255,255,255,.92);
  box-shadow: 0 1px 0 rgba(15,16,18,.05), 0 12px 34px rgba(15,16,18,.09);
}

/* eyebrow — refined leading accent line */
.eyebrow { display: inline-flex; align-items: center; gap: 12px; letter-spacing: .22em; }
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; opacity: .85; }
.section__head.center .eyebrow { justify-content: center; }

/* premium buttons — gradient depth + gliding sheen */
.btn { position: relative; overflow: hidden; letter-spacing: .04em; }
.btn--primary {
  background: linear-gradient(135deg, #ee3b41, var(--red) 55%, var(--red-dark));
  box-shadow: 0 10px 24px rgba(224,40,46,.30), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn--primary:hover { box-shadow: 0 16px 34px rgba(224,40,46,.44), inset 0 1px 0 rgba(255,255,255,.2); }
.btn--dark {
  background: linear-gradient(135deg, #303337, var(--ink) 60%, #000);
  box-shadow: 0 10px 24px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
}
.btn::after {
  content: ""; position: absolute; top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.32), transparent);
  transform: skewX(-18deg); transition: left .7s var(--ease); pointer-events: none;
}
.btn:hover::after { left: 140%; }

/* hero — more cinematic overlay */
.hero__overlay {
  background:
    radial-gradient(130% 120% at 18% 26%, rgba(13,14,16,.30), transparent 62%),
    linear-gradient(100deg, rgba(13,14,16,.93) 0%, rgba(13,14,16,.72) 42%, rgba(13,14,16,.32) 80%, rgba(224,40,46,.12) 100%);
}
.hero__form { border-top-width: 4px; }
.hero__form, .contact__card { box-shadow: var(--shadow-lg); }

/* premium form fields */
.quote-form input, .quote-form textarea { border-radius: 11px; }
.quote-form input:focus, .quote-form textarea:focus { box-shadow: 0 0 0 4px rgba(224,40,46,.12); }

/* refined heading tracking + interactions */
.section__title, .about__title { letter-spacing: -0.018em; }
.checklist li { transition: color .2s var(--ease); }
.checklist li:hover { color: var(--red); }

/* premium map control */
.footer__map-btn { -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }

@media (prefers-reduced-motion: reduce) {
  .btn::after { display: none; }
}
