/* ───────────────────────────────────────────────────────────
   GOMAX CATALOG - DESIGN SYSTEM
   Aesthetic: Industrial Editorial
   ─────────────────────────────────────────────────────────── */

:root {
  --navy:         #0D1B2A;
  --navy-mid:     #162640;
  --charcoal:     #1C2128;
  --steel:        #4A6FA5;
  --steel-light:  #7BA3CC;
  --steel-dark:   #2E4A7A;
  --midgray:      #6B7A8D;
  --surface:      #F4F6F9;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  width: 100%;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; width: 100%; height: 100%; object-fit: cover; }


/* ─── HEADER ────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  /* Default: transparent over dark hero */
  --hdr-bg:   transparent;
  --nav-c:    rgba(255,255,255,0.75);
  --nav-h:    #ffffff;
  --logo-c:   #ffffff;
  --ham-c:    #ffffff;
  --phone-c:  rgba(255,255,255,0.5);
  background: var(--hdr-bg);
}

#site-header.scrolled {
  --hdr-bg:   rgba(255,255,255,0.97);
  --nav-c:    rgba(28,33,40,0.65);
  --nav-h:    #1C2128;
  --logo-c:   #1C2128;
  --ham-c:    #1C2128;
  --phone-c:  rgba(107,122,141,0.8);
  background: var(--hdr-bg);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
}

#site-header.dark-bg {
  --hdr-bg:   rgba(8, 15, 28, 0.9);
  --nav-c:    rgba(255,255,255,0.72);
  --nav-h:    #ffffff;
  --logo-c:   #ffffff;
  --ham-c:    #ffffff;
  --phone-c:  rgba(255,255,255,0.45);
  background: var(--hdr-bg);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
}

.logo-name {
  color: var(--logo-c);
  transition: color 0.35s ease;
}

.nav-link {
  color: var(--nav-c);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--nav-h); }

.phone-link {
  color: var(--phone-c);
  text-decoration: none;
  transition: color 0.2s ease;
}
.phone-link:hover { color: var(--nav-h); }

.catalog-btn {
  background: var(--steel);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}
.catalog-btn:hover { background: var(--steel-dark); }

/* Hamburger */
.ham { display: flex; flex-direction: column; gap: 5px; }
.ham span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--ham-c);
  border-radius: 2px;
  transition: background 0.35s ease, transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.ham-short { width: 16px !important; transition: width 0.3s ease; }
#mobile-menu-btn.open .ham span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
#mobile-menu-btn.open .ham span:nth-child(2) { opacity: 0; }
#mobile-menu-btn.open .ham span:nth-child(3) { width: 24px !important; transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu panel */
.mobile-menu {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}
.mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}
.mob-link {
  display: block;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.15s ease;
}
.mob-link:hover { color: var(--steel); }


/* ─── HERO ──────────────────────────────────────── */
.hero-bg {
  background:
    linear-gradient(140deg, rgba(10,22,40,0.74) 0%, rgba(13,27,42,0.58) 50%, rgba(22,38,64,0.42) 100%),
    url('assets/images/hero/gomax-hero.webp') center / cover no-repeat;
}

/* ─── BLUEPRINT BACKGROUND ──────────────────────── */
.blueprint-bg {
  background:
    linear-gradient(rgba(244,246,249,0.76), rgba(244,246,249,0.76)),
    url('assets/images/backgrounds/blueprint-bg.jpg') center top / cover no-repeat;
}

/* Staggered headline animation */
.h1-line {
  opacity: 0;
  transform: translateY(28px);
  animation: lineUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0ms);
}
.h1-accent { color: var(--steel-light); }

@keyframes lineUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  opacity: 0;
  animation: fadeUp 0.6s ease 0.42s forwards;
}
.hero-ctas {
  opacity: 0;
  animation: fadeUp 0.6s ease 0.54s forwards;
}
.hero-stats {
  opacity: 0;
  animation: fadeUp 0.6s ease 0.66s forwards;
}
.hero-preview {
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* CTA buttons */
.btn-primary {
  background: var(--steel);
  color: #fff;
  border: 2px solid var(--steel);
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: transparent; color: #fff; }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 2px solid rgba(255,255,255,0.22);
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* Preview cards in hero */
.prev-card { cursor: default; }
.prev-card img {
  object-position: center 18%;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.prev-card:hover img { transform: scale(1.06); }
.prev-tall  { height: 210px; }
.prev-short { height: 148px; }
.prev-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.prev-all {
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.prev-all:hover {
  background: rgba(74,111,165,0.12);
  border-color: var(--steel);
  color: #fff;
}

/* Scroll indicator */
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; }
  50%      { opacity: 1;   }
}


/* ─── PRODUCT CATEGORIES ────────────────────────── */
.cat-card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity    0.45s ease,
    transform  0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.38s ease;
}
.cat-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.cat-card:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.20), 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-5px) !important;
}

.cat-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  /* fallback shown when no image or image fails to load */
  background: linear-gradient(145deg, #0D1B2A 0%, #1A3060 100%);
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cat-card:hover .cat-img img { transform: scale(1.07); }

/* Number badge */
.cat-num {
  position: absolute;
  top: 10px; left: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.cat-hover {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 3;
}
.cat-card:hover .cat-hover { opacity: 1; }

.cat-foot {
  padding: 12px 14px 14px;
  border-top: 2px solid var(--surface);
  transition: border-color 0.25s ease;
}
.cat-card:hover .cat-foot {
  border-top-color: var(--steel);
}

.cat-desc {
  font-size: 0.74rem;
  color: var(--midgray);
  line-height: 1.45;
  margin-top: 3px;
}


/* ─── INDUSTRIES ────────────────────────────────── */
.ind-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #D8E1EC;
  border-top: 2px solid rgba(74,111,165,0.22);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  transition:
    border-color 0.25s ease,
    box-shadow   0.28s ease,
    transform    0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ind-card::before {
  content: '';
  display: block;
  height: 3px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--steel-dark), var(--steel-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ind-card:hover {
  border-color: var(--steel);
  box-shadow: 0 12px 40px rgba(74,111,165,0.14), 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.ind-card:hover::before {
  transform: scaleX(1);
}

.ind-card-body {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ind-icon {
  width: 60px; height: 60px;
  background: var(--navy);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--steel-light);
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
.ind-card:hover .ind-icon {
  background: var(--steel);
  color: #fff;
}

.ind-content {
  margin-top: 16px;
  flex: 1;
}
.ind-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.36rem;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.ind-content p {
  font-size: 0.83rem;
  color: var(--midgray);
  line-height: 1.65;
  margin: 8px 0 0;
}

.ind-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: 16px;
  border-top: 1px solid #E4E9F0;
  transition: border-color 0.2s ease;
}
.ind-card:hover .ind-footer { border-top-color: rgba(74,111,165,0.2); }

.ind-footer span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--midgray);
  transition: color 0.2s ease;
}
.ind-card:hover .ind-footer span { color: var(--steel); }

.ind-arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  color: var(--steel);
  flex-shrink: 0;
}
.ind-card:hover .ind-arrow { opacity: 1; transform: translateX(0); }


/* ─── STORY HERO ────────────────────────────────── */
.story-hero {
  background: url('assets/images/story/our-story-hero.webp') center center / cover no-repeat;
  position: relative;
}
.story-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,15,28,0.92) 0%, rgba(13,27,42,0.84) 60%, rgba(22,38,64,0.75) 100%);
  pointer-events: none;
}

/* ─── STORY JOURNEY ──────────────────────────────── */
.story-journey {
  background: url('assets/images/story/growth-journey-background.webp') center center / cover no-repeat;
  position: relative;
}
.story-journey::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,15,28,0.80) 0%, rgba(13,27,42,0.72) 55%, rgba(22,38,64,0.65) 100%);
  pointer-events: none;
}

/* ─── ABOUT ─────────────────────────────────────── */
.about-section {
  background: linear-gradient(140deg, #080F1C 0%, var(--navy) 52%, #162640 100%);
}
.about-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 52px 52px;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid rgba(74,111,165,0.5);
  border-radius: 2px;
  color: var(--steel-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: 'DM Sans', sans-serif;
  background: rgba(74,111,165,0.07);
}
.about-tag::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--steel);
  flex-shrink: 0;
}

.stat-box {
  padding: 24px 22px 22px;
  border: 1px solid rgba(255,255,255,0.10);
  border-left: 3px solid rgba(74,111,165,0.42);
  border-radius: 2px;
  background: rgba(255,255,255,0.055);
  transition: background 0.25s ease, border-left-color 0.25s ease;
}
.stat-box:hover {
  background: rgba(74,111,165,0.11);
  border-left-color: var(--steel);
}
.about-section .stat-box > div:not([style]) {
  color: var(--steel-light) !important;
}
.about-section .stat-box p {
  color: rgba(255, 255, 255, 0.65) !important;
}


/* ─── CONTACT STRIP ─────────────────────────────── */
.contact-strip { background: var(--steel); }

.strip-primary {
  background: #fff;
  color: var(--steel-dark);
  text-decoration: none;
  display: inline-block;
  border: 2px solid #fff;
  transition: background 0.2s, color 0.2s;
}
.strip-primary:hover { background: transparent; color: #fff; }

.strip-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, color 0.2s;
}
.strip-ghost:hover { border-color: #fff; color: #fff; }


/* ─── FOOTER ────────────────────────────────────── */
footer {
  /* Explicit background so it never depends on Tailwind resolving bg-navy */
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ft-col-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ft-cred {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 2px;
  color: rgba(255,255,255,0.38);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ft-link {
  display: block;
  color: rgba(255,255,255,0.44);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.45;
  transition: color 0.15s ease;
}
.ft-link:hover { color: rgba(255,255,255,0.85); }

.ft-contact-icon {
  color: var(--steel);
  flex-shrink: 0;
}

.ft-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.18);
  padding: 14px 0;
}

.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.social-btn:hover {
  border-color: var(--steel);
  color: var(--steel-light);
  background: rgba(74,111,165,0.12);
}


/* ─── FEATURED SPACES ───────────────────────────── */
.fs-card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity    0.45s ease,
    transform  0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.38s ease;
}
.fs-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.fs-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.16), 0 6px 18px rgba(0,0,0,0.10);
  transform: translateY(-5px) !important;
}
.fs-img {
  position: relative;
  background: var(--surface);
  overflow: hidden;
  height: 180px;
}
.fs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fs-card:hover .fs-img img { transform: scale(1.07); }
.fs-foot {
  padding: 12px 14px 14px;
  border-top: 2px solid var(--surface);
  transition: border-color 0.25s ease;
}
.fs-card:hover .fs-foot { border-top-color: var(--steel); }
.fs-foot h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--charcoal);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 4px;
}
.fs-foot a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  color: var(--midgray);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}
.fs-card:hover .fs-foot a { color: var(--steel); }

.fs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .fs-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
  }
  .fs-grid .fs-card              { grid-column: span 2; }
  .fs-grid .fs-card:nth-child(4) { grid-column: 2 / span 2; }
  .fs-grid .fs-card:nth-child(5) { grid-column: 4 / span 2; }
}
@media (min-width: 1024px) {
  .fs-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
  .fs-grid .fs-card              { grid-column: span 1; }
  .fs-grid .fs-card:nth-child(4) { grid-column: auto; }
  .fs-grid .fs-card:nth-child(5) { grid-column: auto; }
}


/* ─── SCROLL REVEAL (generic) ───────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ─── INSTALLATIONS ─────────────────────────────── */
.inst-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.inst-card:hover {
  border-color: rgba(74,111,165,0.45);
  background: rgba(255,255,255,0.07);
}
.inst-img {
  height: 230px;
  overflow: hidden;
}
.inst-img img {
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.inst-card:hover .inst-img img {
  transform: scale(1.04);
}
.inst-foot {
  padding: 12px 16px 15px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.inst-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 5px;
}
.inst-caption {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  margin: 0;
  line-height: 1.2;
}


/* ─── RESPONSIVE ────────────────────────────────── */
@media (min-width: 1024px) {
  .hero-bg {
    background:
      linear-gradient(140deg, rgba(10,22,40,0.74) 0%, rgba(13,27,42,0.58) 50%, rgba(22,38,64,0.42) 100%),
      url('assets/images/hero/gomax-hero.webp') 75% center / cover no-repeat;
  }
}

@media (max-width: 1023px) {
  /* dark-bg merges with About's dark background on mobile, keep header white */
  #site-header.dark-bg {
    --hdr-bg:   rgba(255,255,255,0.97);
    --nav-c:    rgba(28,33,40,0.65);
    --nav-h:    #1C2128;
    --logo-c:   #1C2128;
    --ham-c:    #1C2128;
    --phone-c:  rgba(107,122,141,0.8);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  }
  /* slide header off-screen once user scrolls past the hero */
  #site-header.mobile-hidden {
    transform: translateY(-100%);
    pointer-events: none;
  }
}

@media (max-width: 640px) {
  .cat-img  { height: 148px; }
  .prev-tall, .prev-short { display: none; }
}


/* ─── SKIP LINK ──────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: #1C2128;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  text-decoration: none;
  z-index: 10000;
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid #7BA3CC;
  outline-offset: 2px;
}


/* ─── FOCUS STYLES ───────────────────────────────── */
:focus-visible {
  outline: 2px solid #4A6FA5;
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}


/* ─── REDUCED MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .h1-line,
  .hero-sub,
  .hero-ctas,
  .hero-stats,
  .hero-preview {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .reveal,
  .cat-card,
  .fs-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
