@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --charcoal: #1A1A1A;
  --steel: #C8CDD4;
  --sand: #E8DCC8;
  --cobalt: #1D5FA8;
  --cobalt-light: #2C7DD6;
  --offwhite: #F5F4F2;
  --midgray: #6B7280;
  --rule: #2E2E2E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--charcoal);
  color: var(--offwhite);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--offwhite);
  text-decoration: none;
  line-height: 1.1;
}
.nav-logo span { color: var(--cobalt); }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:hover { color: var(--offwhite); }
.nav-links a.active { color: var(--offwhite); }
.nav-links a.active::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--cobalt);
}

.nav-cta {
  background: var(--cobalt);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--cobalt-light) !important; color: #fff !important; }
.nav-cta.active::after { display: none; }

/* mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--offwhite); display: block; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      105deg,
      transparent 0px,
      transparent 40px,
      rgba(200,205,212,0.015) 40px,
      rgba(200,205,212,0.015) 41px
    );
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 60%; height: 200%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(200,205,212,0.04) 45%,
    rgba(200,205,212,0.09) 50%,
    rgba(200,205,212,0.04) 55%,
    transparent 100%
  );
  transform: skewX(-10deg);
  animation: sheen 5s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes sheen {
  0%   { left: -60%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}

.hero-content { position: relative; z-index: 3; max-width: 900px; }

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cobalt-light);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--cobalt);
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--offwhite);
  margin-bottom: 32px;
}
.hero-headline .accent { color: var(--cobalt); }
.hero-headline .steel-text {
  -webkit-text-stroke: 1px var(--steel);
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--steel);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--cobalt);
  color: #fff;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--cobalt-light); transform: translateY(-1px); }

.btn-outline {
  border: 1px solid var(--steel);
  color: var(--steel);
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--offwhite); color: var(--offwhite); transform: translateY(-1px); }

.hero-stats {
  position: absolute; bottom: 60px; right: 48px; z-index: 1;
  display: flex; gap: 48px;
}
.stat { text-align: right; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--offwhite);
}
.stat-num .unit { font-size: 1.4rem; color: var(--cobalt); }
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--midgray);
  margin-top: 4px;
}

/* PAGE HERO (for non-home pages) */
.page-hero {
  padding: 160px 48px 80px;
  position: relative;
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(135deg, #1d1d1d 0%, #161616 100%);
}
.page-hero .section-label { margin-bottom: 16px; }
.breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--midgray);
  margin-top: 20px;
}
.breadcrumb a { color: var(--midgray); text-decoration: none; }
.breadcrumb a:hover { color: var(--cobalt-light); }

/* SECTION DEFAULTS */
section { padding: 100px 48px; }

.section-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cobalt-light);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--offwhite);
  margin-bottom: 24px;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--steel);
  margin-bottom: 24px;
}

.about-visual {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 2px;
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.metal-panel {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.01) 0px, transparent 1px, transparent 4px),
    linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 30%, #252525 50%, #1a1a1a 70%, #222 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.metal-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,205,212,0.08) 0%, transparent 60%);
}
.panel-icon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,205,212,0.2);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.05em;
  position: relative; z-index: 1;
}

.about-highlights { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.highlight { border-left: 2px solid var(--cobalt); padding-left: 16px; }
.highlight-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--offwhite);
  line-height: 1;
}
.highlight-desc {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--midgray);
  margin-top: 4px;
}

/* LONGFORM BODY (for About page) */
.longform { max-width: 760px; }
.longform h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--offwhite);
  margin: 56px 0 20px;
}
.longform h2:first-child { margin-top: 0; }
.longform h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cobalt-light);
  margin: 32px 0 14px;
}
.longform p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--steel);
  margin-bottom: 18px;
}
.longform ul { margin: 0 0 18px 0; padding-left: 0; list-style: none; }
.longform ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--steel);
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.longform ul li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--cobalt);
}

.pull-quote {
  border-left: 2px solid var(--cobalt);
  padding: 4px 0 4px 28px;
  margin: 40px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--offwhite);
}

.leadership-card {
  display: flex;
  gap: 28px;
  align-items: center;
  background: #1A1A1A;
  border: 1px solid var(--rule);
  padding: 32px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.leadership-avatar {
  width: 84px; height: 84px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cobalt), var(--cobalt-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.leadership-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--offwhite);
}
.leadership-role {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cobalt-light);
  margin: 4px 0 10px;
}
.leadership-text {
  font-size: 0.88rem;
  color: var(--midgray);
  line-height: 1.7;
  max-width: 540px;
}

/* TIMELINE (about page) */
.timeline { margin-top: 48px; border-top: 1px solid var(--rule); }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.timeline-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cobalt-light);
}
.timeline-text { font-size: 0.88rem; color: var(--midgray); line-height: 1.7; }

/* SERVICES */
.services-section { background: #111; }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
}

.service-card {
  background: #1A1A1A;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}
.service-card:hover { background: #202020; }

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--cobalt);
  transition: width 0.4s ease;
}
.service-card:hover::before { width: 100%; }

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--cobalt);
  margin-bottom: 24px;
}

.service-icon { font-size: 2rem; margin-bottom: 16px; filter: grayscale(0.3); }

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--offwhite);
  margin-bottom: 12px;
}

.service-desc { font-size: 0.85rem; line-height: 1.7; color: var(--midgray); }

.service-list { margin-top: 16px; padding-left: 0; list-style: none; }
.service-list li {
  font-size: 0.82rem;
  color: var(--midgray);
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}
.service-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 1px;
  background: var(--cobalt);
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.why-item { border-top: 1px solid var(--rule); padding-top: 28px; }
.why-icon { font-size: 1.6rem; margin-bottom: 16px; }
.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--offwhite);
  margin-bottom: 10px;
}
.why-text { font-size: 0.82rem; line-height: 1.7; color: var(--midgray); }

/* PRODUCTS STRIP */
.products-strip {
  background: var(--cobalt);
  padding: 60px 48px;
  overflow: hidden;
  position: relative;
}
.products-strip-inner { display: flex; gap: 0; flex-wrap: wrap; }
.product-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  padding: 0 40px;
  border-left: 1px solid rgba(255,255,255,0.2);
  line-height: 1;
  transition: color 0.2s;
}
.product-tag:first-child { border-left: none; padding-left: 0; }
.product-tag:hover { color: rgba(255,255,255,1); }
.products-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

/* PRODUCT CARDS (products page) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.product-card {
  background: #1A1A1A;
  border: 1px solid var(--rule);
  padding: 32px;
}
.product-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-bottom: 10px;
}
.product-card-desc { font-size: 0.85rem; color: var(--midgray); line-height: 1.65; }

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--rule);
}
.process-step { padding: 40px 32px; border-right: 1px solid var(--rule); position: relative; }
.process-step:last-child { border-right: none; }
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-bottom: 10px;
}
.step-text { font-size: 0.82rem; line-height: 1.7; color: var(--midgray); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 28px 16px 14px;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-feature { margin-top: 4px; position: relative; overflow: hidden; max-height: 420px; }
.gallery-feature img { width: 100%; display: block; }

/* CONTACT */
.contact-section {
  background: #0f0f0f;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-detail { display: flex; flex-direction: column; margin-bottom: 32px; }
.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cobalt-light);
  margin-bottom: 6px;
}
.contact-detail-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--offwhite);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, textarea, select {
  background: #1A1A1A;
  border: 1px solid var(--rule);
  color: var(--offwhite);
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--midgray); }
input:focus, textarea:focus, select:focus { border-color: var(--cobalt); }
textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--cobalt);
  color: #fff;
  padding: 16px 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--cobalt-light); transform: translateY(-1px); }

.map-embed {
  width: 100%;
  height: 280px;
  border: 1px solid var(--rule);
  margin-top: 32px;
  filter: grayscale(0.3) invert(0.92) contrast(0.9);
}

/* FOOTER */
footer {
  background: #0a0a0a;
  padding: 48px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--offwhite);
  text-decoration: none;
}
.footer-logo span { color: var(--cobalt); }
.footer-copy { font-size: 0.75rem; color: var(--midgray); letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--midgray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--offwhite); }

/* HERO SLIDESHOW */
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.4) 100%
  );
}
.hero-dots {
  position: absolute; bottom: 28px; left: 48px; z-index: 2;
  display: flex; gap: 8px; align-items: center;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: background 0.3s, transform 0.3s;
  border: none; padding: 0;
}
.hero-dot.active { background: var(--cobalt-light); transform: scale(1.4); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: #141414;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-bottom: 1px solid var(--rule);
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  section { padding: 70px 24px; }
  .hero { padding: 100px 24px 160px; }
  .page-hero { padding: 120px 24px 56px; }
  .hero-stats { right: 24px; gap: 24px; bottom: 40px; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { height: 280px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid var(--rule); }
  .contact-section { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
  .products-strip { padding: 40px 24px; }
  .product-tag { font-size: 0.85rem; padding: 0 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .hero-dots { left: 24px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; }
  * { transition: none !important; }
}
