:root {
  --bg: #090909;
  --bg-soft: #121212;
  --panel: #181818;
  --text: #f4f1eb;
  --muted: #b9b4aa;
  --line: rgba(255, 255, 255, 0.12);
  --orange: #f68b1f;
  --gold: #d7a45b;
  --white: #fffaf2;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(9, 9, 9, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img,
.site-footer img {
  width: 118px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(244, 241, 235, 0.78);
  font-size: 14px;
}

.nav-links a,
.nav-cta,
.button,
.inquiry-form button {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta,
.button,
.inquiry-form button {
  border: 1px solid rgba(246, 139, 31, 0.72);
  border-radius: var(--radius);
  padding: 12px 18px;
  color: var(--white);
  font-weight: 700;
}

.nav-cta,
.button.primary,
.inquiry-form button {
  background: var(--orange);
  color: #12100c;
}

.nav-cta:hover,
.button:hover,
.inquiry-form button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 80px) 82px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: linear-gradient(135deg, #07131f 0%, #050505 100%);
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04) brightness(0.64);
  transform: scale(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.94) 0%, rgba(9, 9, 9, 0.68) 38%, rgba(9, 9, 9, 0.08) 100%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.88) 0%, rgba(9, 9, 9, 0.1) 48%, rgba(9, 9, 9, 0.74) 100%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.9;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.hero h1,
.catalog-hero h1,
.section-heading h2,
.intro-grid h2,
.craft-copy h2,
.comparison-copy h3,
.contact-panel h2,
.catalog-toolbar h2 {
  position: relative;
  color: var(--white);
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--white);
  -webkit-text-stroke: 1.8px rgba(246, 139, 31, 0.86);
  text-shadow:
    1.4px 0 0 rgba(246, 139, 31, 0.78),
    -1.4px 0 0 rgba(246, 139, 31, 0.78),
    0 1.4px 0 rgba(246, 139, 31, 0.78),
    0 -1.4px 0 rgba(246, 139, 31, 0.78),
    1px 1px 0 rgba(246, 139, 31, 0.72),
    -1px 1px 0 rgba(246, 139, 31, 0.72),
    1px -1px 0 rgba(246, 139, 31, 0.72),
    -1px -1px 0 rgba(246, 139, 31, 0.72),
    0 16px 30px rgba(246, 139, 31, 0.14);
}

.hero h1,
.catalog-hero h1 {
  max-width: 860px;
  font-size: clamp(72px, 11vw, 150px);
  line-height: 0.84;
}

.section-heading h2,
.intro-grid h2,
.craft-copy h2,
.comparison-copy h3,
.contact-panel h2,
.catalog-toolbar h2 {
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 0.9;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-copy {
  max-width: 620px;
  color: rgba(244, 241, 235, 0.82);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button.secondary {
  background: rgba(9, 9, 9, 0.36);
  color: var(--white);
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 5vw, 80px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(244, 241, 235, 0.68);
  font-size: 12px;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 40px;
  height: 1px;
  background: var(--orange);
}

.intro-band,
.products,
.applications,
.transformation,
.craft,
.custom-service,
.seo-faq,
.contact {
  padding: clamp(76px, 10vw, 140px) clamp(18px, 5vw, 80px);
}

.intro-band {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  --intro-progress: 0;
}

.section-video-bg,
.section-video-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.12) brightness(0.62);
  transform: scale(1.03);
}

.intro-band .section-video-bg video {
  transform: scale(calc(1.02 + var(--intro-progress) * 0.08)) translateY(calc(var(--intro-progress) * -28px));
  filter: saturate(calc(0.9 + var(--intro-progress) * 0.22)) contrast(1.04) brightness(calc(0.72 + var(--intro-progress) * 0.16));
}

.section-video-shade {
  background:
    linear-gradient(90deg, rgba(10, 15, 18, 0.82), rgba(10, 15, 18, 0.5) 42%, rgba(10, 15, 18, 0.76)),
    linear-gradient(180deg, rgba(9, 9, 9, 0.34), rgba(12, 25, 36, 0.56));
}

.intro-progress {
  position: absolute;
  left: clamp(18px, 5vw, 80px);
  right: clamp(18px, 5vw, 80px);
  bottom: 34px;
  z-index: 2;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.intro-progress::after {
  content: "";
  display: block;
  width: calc(var(--intro-progress) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.section-video-shade.warm {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.96), rgba(12, 18, 20, 0.72) 54%, rgba(9, 9, 9, 0.9)),
    linear-gradient(180deg, rgba(246, 139, 31, 0.12), rgba(9, 9, 9, 0.78));
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  transform: translateY(calc(var(--intro-progress) * -18px));
}

.intro-grid > p {
  color: var(--muted);
  font-size: 18px;
  opacity: calc(0.72 + var(--intro-progress) * 0.28);
  transform: translateX(calc((1 - var(--intro-progress)) * 28px));
}

.metrics {
  display: grid;
  gap: 12px;
  min-width: 210px;
}

.metrics div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.metric-item {
  opacity: 0.62;
  transform: translateX(20px);
  transition: opacity 260ms ease, transform 260ms ease, border-color 260ms ease;
}

.metric-item.is-lit {
  opacity: 1;
  transform: translateX(0);
  border-top-color: rgba(246, 139, 31, 0.72);
}

.metrics strong {
  display: block;
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.section-heading {
  width: min(860px, 100%);
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  grid-auto-flow: dense;
}

.product-card {
  min-height: 440px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card.large {
  grid-column: span 2;
}

.product-card.compact {
  min-height: 0;
  height: clamp(440px, calc((90vw - 54px) / 4 + 220px), 650px);
  grid-template-rows: auto auto;
  align-self: start;
  align-content: start;
}

.product-card.compact img {
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f4f4f4;
}

.brand-tile {
  grid-column: span 2;
  min-height: 440px;
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(246, 139, 31, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(13, 31, 43, 0.92), rgba(5, 9, 12, 0.98));
  border: 0;
  border-radius: 0;
  isolation: isolate;
  perspective: 1200px;
}

.brand-tile.compact {
  min-height: 0;
  height: clamp(440px, calc((90vw - 54px) / 4 + 220px), 650px);
  align-self: start;
}

.brand-tile::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at calc(12% + var(--product-progress, 0) * 68%) calc(8% + var(--product-progress, 0) * 42%), rgba(246, 139, 31, 0.42), transparent 21%),
    radial-gradient(circle at calc(92% - var(--product-progress, 0) * 54%) 86%, rgba(215, 164, 91, 0.18), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: calc(0.44 + var(--product-progress, 0) * 0.42);
  transform:
    translate3d(calc((0.5 - var(--product-progress, 0)) * 130px), calc((0.5 - var(--product-progress, 0)) * 110px), 0)
    rotate(calc(-8deg + var(--product-progress, 0) * 16deg))
    scale(calc(0.92 + var(--product-progress, 0) * 0.22));
}

.brand-motion-lines {
  position: absolute;
  inset: -12%;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent 0 58px,
      rgba(246, 139, 31, calc(0.02 + var(--product-progress, 0) * 0.07)) 59px 60px,
      transparent 61px 118px
    );
  transform: translateX(calc((var(--product-progress, 0) - 0.5) * 110px));
}

.brand-motion-lines::before,
.brand-motion-lines::after {
  content: "";
  position: absolute;
  left: -38%;
  width: 176%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(246, 139, 31, 0.9), rgba(255, 228, 182, 0.72), transparent);
  box-shadow: 0 0 28px rgba(246, 139, 31, 0.32);
  transform: translateX(calc((var(--product-progress, 0) - 0.5) * 520px)) rotate(-12deg);
}

.brand-motion-lines::before {
  top: 30%;
}

.brand-motion-lines::after {
  top: 68%;
  opacity: 0.44;
  transform: translateX(calc((0.5 - var(--product-progress, 0)) * 420px)) rotate(-12deg);
}

.brand-sweep {
  position: absolute;
  inset: -42% -90%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 35%, rgba(255, 255, 255, 0.18) 48%, rgba(246, 139, 31, 0.42) 52%, transparent 66%);
  mix-blend-mode: screen;
  opacity: calc(var(--product-progress, 0) * 0.86);
  transform:
    translateX(calc(-44% + var(--product-progress, 0) * 88%))
    rotate(-13deg);
}

.brand-tile-inner {
  position: relative;
  z-index: 2;
  width: min(560px, 84%);
  display: grid;
  justify-items: center;
  text-align: center;
  transform:
    translate3d(calc(-130px + var(--brand-enter, 0) * 130px), calc(164px - var(--brand-enter, 0) * 164px - var(--brand-focus, 0) * 18px), 0)
    rotateX(calc(28deg - var(--brand-enter, 0) * 28deg))
    rotateZ(calc(-10deg + var(--brand-enter, 0) * 10deg))
    scale(calc(0.58 + var(--brand-enter, 0) * 0.34 + var(--brand-focus, 0) * 0.08));
  transform-origin: center 70%;
  transition: transform 120ms linear;
}

.brand-tile img {
  width: min(320px, 76%);
  margin-bottom: 26px;
  filter:
    drop-shadow(0 20px 38px rgba(246, 139, 31, calc(0.34 + var(--brand-focus, 0) * 0.34)))
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.22))
    blur(calc((1 - var(--brand-enter, 0)) * 3px));
  opacity: calc(0.12 + var(--brand-enter, 0) * 0.88);
  transform:
    translateY(calc(86px - var(--brand-enter, 0) * 86px - var(--brand-focus, 0) * 18px))
    rotate(calc(12deg - var(--brand-enter, 0) * 12deg))
    scale(calc(0.52 + var(--brand-enter, 0) * 0.36 + var(--brand-focus, 0) * 0.62));
}

.brand-tile-copy {
  opacity: calc(0.12 + var(--brand-enter, 0) * 0.88 - var(--brand-focus, 0) * 0.14);
  transform: translateY(calc(96px - var(--brand-enter, 0) * 96px + var(--brand-focus, 0) * 42px));
}

.brand-tile.compact .brand-tile-inner {
  transform:
    translate3d(
      calc(-48px + var(--brand-enter, 0) * 48px),
      calc(60px - var(--brand-enter, 0) * 60px - var(--brand-focus, 0) * 8px),
      0
    )
    rotateX(calc(16deg - var(--brand-enter, 0) * 16deg))
    rotateZ(calc(-5deg + var(--brand-enter, 0) * 5deg))
    scale(calc(0.96 + var(--brand-enter, 0) * 0.04));
}

.brand-tile.compact img {
  width: min(450px, 80%);
  height: auto;
  margin-bottom: 12px;
  transform:
    translateY(calc(38px - var(--brand-enter, 0) * 38px - var(--brand-focus, 0) * 6px))
    rotate(calc(7deg - var(--brand-enter, 0) * 7deg))
    scale(calc(0.9 + var(--brand-enter, 0) * 0.1));
}

.brand-tile.compact .brand-tile-copy {
  opacity: calc(0.3 + var(--brand-enter, 0) * 0.7);
  transform: translateY(calc(44px - var(--brand-enter, 0) * 44px + var(--brand-focus, 0) * 4px));
}

.brand-tile.compact.is-visible .brand-tile-copy em {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(246, 139, 31, 0.72);
  color: var(--white);
}

.brand-tile span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-tile p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.brand-tile p em {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(246, 139, 31, 0.26);
  background: rgba(5, 9, 12, 0.46);
  color: rgba(244, 241, 235, 0.82);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(22px) scale(0.82);
  transition: opacity 280ms ease, transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1), border-color 280ms ease, color 280ms ease;
}

.brand-tile p em.is-lit {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(246, 139, 31, 0.72);
  color: var(--white);
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card div {
  padding: 22px;
}

.product-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card p,
.craft-copy p,
.contact-panel p {
  color: var(--muted);
}

.applications {
  background: #10100f;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-marquee a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: rgba(244, 241, 235, 0.86);
  background: rgba(255, 255, 255, 0.03);
  font-size: clamp(18px, 3vw, 34px);
  font-weight: 800;
}

.brand-marquee a:hover {
  border-color: rgba(246, 139, 31, 0.72);
  color: var(--orange);
  background: rgba(246, 139, 31, 0.08);
}

.quick-flow {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 92px;
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 80px);
  background:
    radial-gradient(circle at 18% 12%, rgba(246, 139, 31, 0.14), transparent 28%),
    linear-gradient(180deg, #111111 0%, #090909 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(246, 139, 31, 0.14), transparent 24%, transparent 76%, rgba(246, 139, 31, 0.08)),
    repeating-linear-gradient(115deg, transparent 0 84px, rgba(255, 255, 255, 0.035) 85px 86px, transparent 87px 168px);
}

.quick-flow .project-flow {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.transformation {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(246, 139, 31, 0.16), transparent 28%),
    linear-gradient(180deg, #090909 0%, #111111 48%, #090909 100%);
  border-bottom: 1px solid var(--line);
}

.transformation::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, transparent 0 86px, rgba(255, 255, 255, 0.035) 87px 88px, transparent 89px 172px);
  opacity: 0.38;
}

.transformation > * {
  position: relative;
  z-index: 1;
}

.comparison-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  margin-bottom: clamp(34px, 6vw, 78px);
}

.before-after {
  --split: 58%;
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1440 / 770;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
  isolation: isolate;
}

.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-base {
  filter: grayscale(0.78) brightness(0.48) contrast(1.12);
}

.compare-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--split));
}

.compare-after img {
  filter: saturate(1.05) contrast(1.04) brightness(0.72);
}

.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 3;
  width: 2px;
  background: var(--orange);
  box-shadow: 0 0 34px rgba(246, 139, 31, 0.84);
}

.compare-line::before {
  content: "Drag";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(246, 139, 31, 0.78);
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.78);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-label {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 12px;
  background: rgba(9, 9, 9, 0.62);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.compare-label.before {
  left: 20px;
}

.compare-label.after {
  right: 20px;
  border-color: rgba(246, 139, 31, 0.56);
  color: var(--orange);
}

.comparison-copy {
  display: grid;
  align-content: center;
}

.comparison-copy h3 {
  margin-bottom: 16px;
}

.comparison-copy p {
  color: var(--muted);
  font-size: 18px;
}

.comparison-copy .button {
  width: fit-content;
  margin-top: 14px;
}

.project-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: clamp(34px, 6vw, 78px);
  border: 1px solid var(--line);
  background: var(--line);
}

.flow-step {
  min-height: 250px;
  display: grid;
  align-content: end;
  padding: clamp(20px, 3vw, 32px);
  background:
    linear-gradient(180deg, rgba(246, 139, 31, 0.07), transparent 44%),
    #111111;
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.2, 0.9, 0.2, 1), background 260ms ease;
}

.project-flow.is-visible .flow-step {
  opacity: 1;
  transform: translateY(0);
}

.project-flow.is-visible .flow-step:nth-child(2) {
  transition-delay: 90ms;
}

.project-flow.is-visible .flow-step:nth-child(3) {
  transition-delay: 180ms;
}

.project-flow.is-visible .flow-step:nth-child(4) {
  transition-delay: 270ms;
}

.flow-step:hover {
  background:
    linear-gradient(180deg, rgba(246, 139, 31, 0.16), transparent 48%),
    #151515;
}

.flow-step span {
  display: block;
  margin-bottom: 48px;
  color: var(--orange);
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.8;
}

.flow-step h3 {
  max-width: 260px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.flow-step p {
  color: var(--muted);
}

.review-showcase {
  position: relative;
  overflow: hidden;
  margin-top: clamp(34px, 6vw, 78px);
  border-top: 1px solid rgba(246, 139, 31, 0.34);
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 4vw, 52px);
  background:
    repeating-linear-gradient(118deg, transparent 0 96px, rgba(255, 255, 255, 0.018) 96px 97px),
    linear-gradient(150deg, rgba(20, 36, 48, 0.72), rgba(10, 10, 10, 0.98) 62%);
}

.review-staircase {
  position: relative;
  isolation: isolate;
  height: clamp(560px, 43vw, 620px);
  cursor: default;
  perspective: 1600px;
  touch-action: pan-y;
}

.review-stair-item {
  position: absolute;
  top: 0;
  left: 0;
  z-index: calc(var(--i) + 1);
  width: 70%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: #f7f7f7;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.46);
  transform:
    translate3d(calc(var(--i) * 6%), var(--review-y, calc(var(--i) * 72px)), 0)
    scale(calc(1 - var(--i) * 0.006));
  transform-origin: left center;
  transition:
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 420ms ease,
    border-color 360ms ease,
    filter 420ms ease,
    box-shadow 420ms ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  cursor: zoom-in;
}

.review-stair-item.is-active {
  border-color: rgba(246, 139, 31, 0.74);
  box-shadow: 0 32px 66px rgba(0, 0, 0, 0.54), 0 0 0 1px rgba(246, 139, 31, 0.12);
  filter: saturate(1.03) brightness(1.01);
}

.review-staircase.has-focus .review-stair-item:not(.is-focused) {
  opacity: 0.46;
  filter: saturate(0.58) brightness(0.62);
}

.review-stair-item.is-focused {
  z-index: 50;
  pointer-events: none;
  opacity: 1;
  border-color: rgba(246, 139, 31, 0.96);
  filter: none;
  transform: translate3d(21.5%, clamp(120px, 11vw, 160px), 0) scale(1.1);
  box-shadow:
    0 48px 100px rgba(0, 0, 0, 0.72),
    0 0 0 2px rgba(246, 139, 31, 0.3);
}

.review-stair-item img {
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.review-showcase-copy {
  position: relative;
  z-index: 12;
  display: grid;
  justify-items: center;
  border-top: 1px solid var(--line);
  padding: clamp(34px, 5vw, 64px) clamp(0px, 4vw, 56px) 8px;
  text-align: center;
}

.review-showcase-copy h3 {
  width: 100%;
  max-width: 980px;
  margin: 8px 0 18px;
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
  -webkit-text-stroke: 1.2px rgba(246, 139, 31, 0.9);
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

.review-showcase-copy > p:not(.eyebrow) {
  width: 100%;
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.review-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  color: rgba(244, 241, 235, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-signals span {
  padding: 0 18px;
}

.review-signals span + span {
  border-left: 1px solid rgba(246, 139, 31, 0.46);
}

.review-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 4, 4, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.review-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.review-lightbox img {
  width: min(96vw, 1080px);
  max-height: 84vh;
  object-fit: contain;
  border: 1px solid rgba(246, 139, 31, 0.72);
  border-radius: 4px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.76);
  transform: scale(0.94);
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

.review-lightbox.is-open img {
  transform: scale(1);
}

.review-lightbox-close {
  position: absolute;
  top: max(18px, env(safe-area-inset-top));
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.78);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.review-lightbox-open {
  overflow: hidden;
}

.craft {
  position: relative;
  overflow: hidden;
  --craft-progress: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.craft-progress {
  position: absolute;
  left: clamp(18px, 5vw, 80px);
  top: 0;
  bottom: 0;
  z-index: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.craft-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: calc(var(--craft-progress) * 100%);
  background: linear-gradient(180deg, var(--orange), var(--gold));
}

.craft::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at calc(16% + var(--craft-progress) * 52%) 22%, rgba(246, 139, 31, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(9, 9, 9, 0), rgba(246, 139, 31, 0.04));
}

.craft-copy,
.video-stack {
  position: relative;
  z-index: 1;
}

.craft-copy {
  transform: translateY(calc(var(--craft-progress) * -18px));
}

.craft-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.craft-copy li {
  border-left: 3px solid var(--orange);
  padding-left: 14px;
  color: rgba(244, 241, 235, 0.86);
}

.craft-step {
  opacity: 0.55;
  transform: translateX(14px);
  transition: opacity 240ms ease, transform 240ms ease, color 240ms ease;
}

.craft-step.is-lit {
  opacity: 1;
  transform: translateX(0);
  color: var(--white);
}

.video-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: end;
  transform: translateX(calc((1 - var(--craft-progress)) * 20px));
}

.video-stack video {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
  filter: saturate(calc(0.76 + var(--craft-progress) * 0.24)) brightness(calc(0.72 + var(--craft-progress) * 0.16));
}

.video-stack video:first-child {
  aspect-ratio: 4 / 5;
}

.custom-service {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #14110d 0%, #090909 100%);
}

.custom-service .section-heading {
  position: relative;
  z-index: 1;
}

.service-note {
  margin-top: 18px;
  max-width: 740px;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  color: rgba(244, 241, 235, 0.86);
}

.seo-faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(246, 139, 31, 0.06), transparent 34%),
    #0d0d0d;
}

.seo-faq .section-heading {
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  color: var(--white);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  color: var(--orange);
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 0 22px;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(28px, 5vw, 56px);
  background: #151515;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: rgba(244, 241, 235, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.inquiry-form .full,
.inquiry-form button {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #0c0c0c;
  color: var(--text);
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form button {
  cursor: pointer;
  font: inherit;
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: 34px clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 8px 0;
}

.site-footer p {
  margin: 0 0 4px;
}

.site-footer a {
  color: var(--white);
}

.footer-contact {
  display: grid;
  justify-items: start;
  gap: 9px;
  font-style: normal;
}

.footer-company {
  color: rgba(244, 241, 235, 0.76);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  line-height: 1.25;
}

.contact-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.footer-social:hover,
.contact-link:hover {
  color: var(--orange);
}

.lead-offer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.lead-offer[aria-hidden="false"] {
  display: grid;
  align-items: center;
  justify-items: center;
}

.lead-offer::-webkit-scrollbar {
  display: none;
}

.lead-offer-panel {
  position: relative;
  width: min(640px, 100%);
  overflow: hidden;
  border: 0 !important;
  outline: 0 !important;
  border-radius: var(--radius);
  background: #0d0d0d;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.68),
    0 0 42px rgba(246, 139, 31, 0.08);
  isolation: isolate;
  scrollbar-width: none;
}

.lead-offer-panel::-webkit-scrollbar {
  display: none;
}

.lead-offer-bg,
.lead-offer-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lead-offer-bg {
  background:
    linear-gradient(0deg, #111111 0%, rgba(17, 17, 17, 0.88) 6%, rgba(17, 17, 17, 0) 18%),
    linear-gradient(180deg, #111111 0%, #111111 18%, rgba(17, 17, 17, 0.9) 28%, rgba(17, 17, 17, 0.42) 40%, rgba(17, 17, 17, 0) 52%),
    url("assets/images/lead-offer-gt3rs.jpg") bottom center / contain no-repeat,
    #111111;
  filter: saturate(0.82) contrast(1.05) brightness(0.66);
}

.lead-offer-shade {
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.36), rgba(9, 9, 9, 0.92)),
    linear-gradient(90deg, rgba(9, 9, 9, 0.84), rgba(9, 9, 9, 0.48));
}

.lead-offer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0 !important;
  outline: 0 !important;
  border-radius: var(--radius);
  background: rgba(9, 9, 9, 0.68);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.lead-offer-close:focus,
.lead-offer-close:focus-visible,
.lead-offer-panel:focus,
.lead-offer-panel:focus-visible {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none;
}

.lead-offer-content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 5vw, 48px);
}

.lead-offer-kicker {
  margin: 0 0 12px;
  color: #ff3b30;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.lead-countdown {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-bottom: 22px;
  text-align: center;
}

.lead-countdown span {
  display: grid;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-countdown strong {
  color: var(--orange);
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(48px, 8vw, 72px);
  line-height: 0.8;
  text-shadow: 0 0 26px rgba(246, 139, 31, 0.32);
}

.lead-offer h2 {
  margin: 0 auto 16px;
  max-width: 540px;
  color: var(--white);
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(34px, 5.6vw, 58px);
  line-height: 0.92;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--white);
  -webkit-text-stroke: 1.4px rgba(246, 139, 31, 0.86);
  text-shadow:
    1px 0 0 rgba(246, 139, 31, 0.78),
    -1px 0 0 rgba(246, 139, 31, 0.78),
    0 1px 0 rgba(246, 139, 31, 0.78),
    0 -1px 0 rgba(246, 139, 31, 0.78);
}

.lead-offer-content > p {
  max-width: 520px;
  margin: 0 auto 24px;
  color: rgba(244, 241, 235, 0.82);
  text-align: center;
}

.lead-offer-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.lead-offer-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-offer-form .full,
.lead-offer-form button {
  grid-column: 1 / -1;
}

.lead-offer-form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 0;
  padding: 10px 0 12px;
  background: transparent;
  color: var(--white);
  font: inherit;
  outline: none;
}

.lead-offer-form input:focus {
  border-bottom-color: var(--orange);
}

.lead-offer-form button {
  justify-self: center;
  min-width: 190px;
  min-height: 48px;
  margin-top: 8px;
  border: 1px solid rgba(246, 139, 31, 0.82);
  border-radius: var(--radius);
  background: var(--orange);
  color: #100f0c;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.lead-offer-form button:hover {
  transform: translateY(-2px);
}

.catalog-hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 5vw, 80px) 70px;
  overflow: hidden;
  background: var(--bg);
}

.catalog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(9, 9, 9, 0.08) 56%, rgba(9, 9, 9, 0.74) 100%);
}

.catalog-hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.94) 0%, rgba(9, 9, 9, 0.62) 38%, rgba(9, 9, 9, 0.14) 100%),
    radial-gradient(circle at 78% 34%, rgba(246, 139, 31, 0.14), transparent 32%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.8) 0%, rgba(9, 9, 9, 0.1) 48%, rgba(9, 9, 9, 0.7) 100%);
}

.catalog-hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
}

.catalog-shell {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 80px) clamp(82px, 10vw, 140px);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.catalog-toolbar h2 {
  margin-bottom: 10px;
}

.catalog-toolbar p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.catalog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(244, 241, 235, 0.62);
  font-size: 13px;
  text-transform: uppercase;
}

.catalog-breadcrumb a {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.catalog-breadcrumb a:hover {
  color: var(--orange);
}

.catalog-stage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.catalog-card {
  display: block;
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(18, 44, 62, 0.72), rgba(16, 16, 16, 0.94)),
    radial-gradient(circle at 85% 16%, rgba(246, 139, 31, 0.18), transparent 28%);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 139, 31, 0.68);
}

.catalog-card span,
.catalog-product-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95;
}

.catalog-card small {
  color: var(--muted);
  font-size: 14px;
}

.catalog-empty {
  grid-column: 1 / -1;
  max-width: 720px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.04);
}

.catalog-empty p {
  color: var(--muted);
}

.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalog-product {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.catalog-product-media {
  width: 100%;
  border: 0;
  padding: 0;
  background: #050505;
  cursor: pointer;
}

.catalog-product-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.catalog-product:hover .catalog-product-media img {
  transform: scale(1.04);
}

.catalog-product-copy {
  display: grid;
  align-content: start;
  padding: 20px;
}

.catalog-product-copy p {
  color: var(--muted);
}

.catalog-product-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.catalog-product-actions a,
.catalog-product-actions button {
  min-height: 38px;
  border: 1px solid rgba(246, 139, 31, 0.48);
  border-radius: var(--radius);
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.catalog-product-actions a:hover,
.catalog-product-actions button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: clamp(16px, 4vw, 52px);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
}

.product-modal[aria-hidden="false"] {
  display: grid;
  place-items: center;
}

.modal-open {
  overflow: hidden;
}

.product-modal-panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: 88vh;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.72);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.modal-media {
  min-height: 520px;
  background: #050505;
}

.modal-media img,
.modal-media video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
}

.modal-copy {
  min-height: 0;
  padding: clamp(26px, 4vw, 48px);
}

.modal-copy p {
  color: var(--muted);
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
  max-height: min(36vh, 330px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 8px;
  scrollbar-color: var(--orange) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.modal-gallery::-webkit-scrollbar {
  width: 8px;
}

.modal-gallery::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.modal-gallery::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 999px;
}

.modal-gallery button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  background: #050505;
  cursor: pointer;
}

.modal-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .intro-grid,
  .comparison-panel,
  .craft,
  .seo-faq,
  .contact-panel,
  .catalog-toolbar,
  .product-modal-panel {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .project-flow,
  .review-grid,
  .catalog-stage,
  .catalog-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card.compact,
  .brand-tile.compact {
    height: auto;
  }

  .brand-tile.compact {
    min-height: 440px;
  }

  .review-staircase {
    height: clamp(520px, 64vw, 590px);
  }

  .review-stair-item {
    width: 76%;
    transform:
      translate3d(calc(var(--i) * 4.8%), var(--review-y, calc(var(--i) * 62px)), 0)
      scale(calc(1 - var(--i) * 0.006));
  }

  .review-stair-item.is-focused {
    transform: translate3d(15.5%, 128px, 0) scale(1.06);
  }

  .modal-media,
  .modal-media img,
  .modal-media video {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
  }

  .brand img,
  .site-footer img {
    width: 94px;
  }

  .nav-cta {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 92vh;
    padding: 112px 18px 72px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 64px);
  }

  h2 {
    font-size: 34px;
  }

  .hero h1,
  .catalog-hero h1 {
    font-size: clamp(62px, 18vw, 86px);
    line-height: 0.86;
    -webkit-text-stroke-width: 1.3px;
    text-shadow:
      1px 0 0 rgba(246, 139, 31, 0.76),
      -1px 0 0 rgba(246, 139, 31, 0.76),
      0 1px 0 rgba(246, 139, 31, 0.76),
      0 -1px 0 rgba(246, 139, 31, 0.76);
  }

  .section-heading h2,
  .intro-grid h2,
  .craft-copy h2,
  .comparison-copy h3,
  .contact-panel h2,
  .catalog-toolbar h2 {
    font-size: clamp(42px, 14vw, 64px);
    line-height: 0.9;
    -webkit-text-stroke-width: 1.2px;
    text-shadow:
      1px 0 0 rgba(246, 139, 31, 0.76),
      -1px 0 0 rgba(246, 139, 31, 0.76),
      0 1px 0 rgba(246, 139, 31, 0.76),
      0 -1px 0 rgba(246, 139, 31, 0.76);
  }

  .product-grid,
  .project-flow,
  .review-grid,
  .catalog-stage,
  .catalog-product-grid,
  .video-stack,
  .inquiry-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-card.large {
    grid-column: auto;
  }

  .brand-tile {
    grid-column: auto;
    min-height: 320px;
  }

  .brand-tile.compact {
    min-height: 320px;
  }

  .brand-tile-inner {
    width: min(460px, 88%);
    transform:
      translate3d(calc(-64px + var(--brand-enter, 0) * 64px), calc(96px - var(--brand-enter, 0) * 96px), 0)
      rotateX(calc(20deg - var(--brand-enter, 0) * 20deg))
      scale(calc(0.68 + var(--brand-enter, 0) * 0.24 + var(--brand-focus, 0) * 0.08));
  }

  .brand-tile img {
    width: min(260px, 82%);
    margin-bottom: 22px;
  }

  .brand-tile p em {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .product-card {
    min-height: auto;
  }

  .before-after {
    min-height: 0;
    aspect-ratio: 1440 / 770;
  }

  .project-flow {
    gap: 10px;
    border: 0;
    background: transparent;
  }

  .flow-step {
    min-height: 210px;
    border: 1px solid var(--line);
  }

  .review-showcase {
    margin-inline: -18px;
    padding: 26px 18px 38px;
  }

  .review-staircase {
    display: flex;
    height: auto;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 18px;
    cursor: grab;
    perspective: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .review-staircase::-webkit-scrollbar {
    display: none;
  }

  .review-stair-item {
    position: relative;
    top: auto;
    left: auto;
    z-index: auto;
    width: auto;
    flex: 0 0 92%;
    transform: none !important;
    transition: border-color 220ms ease, box-shadow 220ms ease;
    scroll-snap-align: center;
  }

  .review-staircase.has-focus .review-stair-item:not(.is-focused) {
    opacity: 1;
    filter: none;
  }

  .review-stair-item.is-focused {
    pointer-events: auto;
    transform: none !important;
  }

  .review-showcase-copy {
    justify-items: start;
    padding: 34px 0 0;
    text-align: left;
  }

  .review-showcase-copy h3 {
    font-size: clamp(46px, 15vw, 66px);
  }

  .review-signals {
    display: grid;
    justify-content: start;
    gap: 8px;
    margin-top: 24px;
  }

  .review-signals span {
    padding: 0;
  }

  .review-signals span + span {
    border-left: 0;
  }

  .catalog-hero {
    min-height: 72vh;
    padding: 112px 18px 58px;
  }

  .catalog-toolbar .button {
    width: 100%;
    text-align: center;
  }

  .catalog-card {
    min-height: 138px;
  }

  .modal-media,
  .modal-media img,
  .modal-media video {
    min-height: 280px;
  }

  .lead-offer {
    align-items: start;
    padding: 14px;
  }

  .lead-offer-content {
    padding: 28px 18px;
  }

  .lead-countdown {
    gap: 22px;
  }

  .lead-offer-form {
    grid-template-columns: 1fr;
  }

  .scroll-cue {
    display: none;
  }
}
