/* Hero — same large-format dark intro treatment as the banners product page */
.banner-hero {
  display: grid;
  min-height: min(620px, 100svh);
  background: var(--brand-charcoal);
  color: var(--paper);
  grid-template-columns: minmax(460px, 0.92fr) minmax(0, 1.08fr);
}

.banner-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  padding: calc(var(--header-height) + clamp(40px, 4.6vw, 64px)) clamp(32px, 5.5vw, 96px) clamp(40px, 4.6vw, 64px);
  justify-content: center;
  flex-direction: column;
  background: repeating-linear-gradient(135deg, rgb(206 15 61 / 4%) 0 2px, transparent 2px 34px);
}

.banner-hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: var(--primary-title);
  font-size: clamp(50px, 5.4vw, 92px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.banner-hero h1 > span {
  display: block;
}

.banner-hero h1 em {
  color: var(--brand-red);
  font-style: normal;
}

.banner-hero-lead {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgb(255 255 255 / 66%);
  font-size: 15px;
  line-height: 1.65;
}

.banner-hero-actions {
  margin-top: 38px;
}

.banner-hero-cta {
  display: inline-flex;
  min-height: 54px;
  padding: 0 34px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 14px;
  background: var(--brand-red);
  color: var(--paper);
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}

.banner-hero-cta:hover {
  background: var(--paper);
  color: var(--brand-charcoal);
  transform: translateY(-2px);
}

.banner-hero-cta svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.banner-hero-facts {
  display: grid;
  max-width: 560px;
  margin: 24px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgb(255 255 255 / 14%);
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.banner-hero-facts li {
  display: grid;
  padding: 0 16px;
  border-left: 1px solid rgb(255 255 255 / 14%);
  gap: 0;
}

.banner-hero-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.banner-hero-facts strong {
  font-family: var(--headline);
  font-size: 15px;
  line-height: 1.15;
}

.banner-hero-facts span {
  line-height: 1.3;
  color: rgb(255 255 255 / 48%);
  font-size: 13px;
}

.banner-hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #050505;
}

.banner-hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(20 18 19 / 50%), transparent 31%),
    linear-gradient(0deg, rgb(0 0 0 / 35%), transparent 38%);
  content: "";
  pointer-events: none;
}

.banner-hero-media::after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: -20%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 12%) 45%, rgb(255 255 255 / 22%) 50%, rgb(255 255 255 / 12%) 55%, transparent);
  content: "";
  animation: catalog-hero-sweep 5s ease-in-out infinite;
}

@keyframes catalog-hero-sweep {
  0% { transform: translateX(0); }
  100% { transform: translateX(260%); }
}

.banner-hero-media img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.banner-hero-index {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(28px, 4vw, 58px);
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgb(255 255 255 / 70%);
  font-family: var(--headline);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.banner-hero-index i {
  width: 44px;
  height: 1px;
  background: var(--brand-red);
}

.banner-service-strip {
  padding-top: 0;
}

@media (min-width: 821px) {
  .banner-hero-copy > * {
    position: relative;
    top: -20px;
  }
}

@media (max-width: 960px) {
  .banner-hero {
    grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  }

  .banner-hero-copy {
    padding-inline: 44px;
  }
}

@media (max-width: 820px) {
  .banner-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .banner-hero-copy {
    min-height: 0;
    padding: calc(var(--header-height) + 24px) var(--page-gutter) 56px;
  }

  .banner-hero-media {
    min-height: 420px;
  }
}

@media (max-width: 480px) {
  .banner-hero-copy {
    padding: calc(var(--header-height) + 64px) 22px 44px;
  }

  .banner-hero h1 {
    font-size: clamp(38px, 11.6vw, 54px);
    line-height: 1.05;
  }

  .banner-hero-lead {
    margin-top: 20px;
    font-size: 13px;
  }

  .banner-hero-facts {
    margin-top: 34px;
  }

  .banner-hero-facts li {
    padding: 0 10px;
    gap: 2px;
  }

  .banner-hero-facts strong {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-hero-media::after {
    animation: none;
    opacity: 0;
  }
}

.acrylic-catalog-main {
  position: relative;
  min-height: 60svh;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--soft-paper);
  background-image:
    linear-gradient(rgb(35 31 32 / 2.4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(35 31 32 / 2.4%) 1px, transparent 1px),
    linear-gradient(180deg, rgb(255 255 255 / 90%) 0%, transparent 30%, rgb(255 255 255 / 55%) 100%);
  background-position: center, center, center;
  background-size: 30px 30px, 30px 30px, auto;
}

.acrylic-catalog-main::before {
  position: absolute;
  z-index: 0;
  inset: -25%;
  background: radial-gradient(circle, rgb(206 15 61 / 12%) 0%, transparent 34%);
  content: "";
  pointer-events: none;
  animation: catalog-glow-roam 17s ease-in-out infinite;
}

.catalog-shell {
  position: relative;
  z-index: 1;
}

@keyframes catalog-glow-roam {
  0% { transform: translate(32%, -8%); }
  25% { transform: translate(-14%, 18%); }
  50% { transform: translate(-28%, 58%); }
  75% { transform: translate(18%, 32%); }
  100% { transform: translate(32%, -8%); }
}

@media (prefers-reduced-motion: reduce) {
  .acrylic-catalog-main::before {
    animation: none;
  }
}

.catalog-shell {
  width: min(100%, 1480px);
  margin-inline: auto;
  padding: 72px var(--page-gutter) clamp(100px, 10vw, 150px);
}

.dtf-breadcrumb {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
}

.dtf-breadcrumb a {
  transition: color 180ms ease;
}

.dtf-breadcrumb a:hover {
  color: var(--brand-red);
}

.catalog-heading {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.catalog-heading h1 {
  margin: 0 0 26px;
  font-family: var(--primary-title);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.catalog-heading p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.35;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 32px);
}

.catalog-card {
  position: relative;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: inherit;
  flex-direction: column;
  transition: border-color 200ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-card:hover {
  border-color: var(--brand-silver);
  transform: translateY(-4px);
}

.catalog-card-media {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--silver-soft);
}

.catalog-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.catalog-card-body {
  padding: 20px 20px 24px;
}

.catalog-card-body h3 {
  margin: 0;
  color: var(--brand-charcoal);
  font-family: var(--headline);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .catalog-shell {
    padding: 24px 20px 80px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-card,
  .catalog-card-media img {
    transition: none;
  }
}
