@font-face {
  font-family: "Oswald";
  src: url("assets/Fonts/Oswald/Oswald-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 700;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("assets/Fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("assets/Fonts/Lato/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --black: #050505;
  --black-soft: #121212;
  --ash: #ededed;
  --white: #ffffff;
  --line: #d7d7d7;
  --text: #1a1a1a;
  --muted: #666666;
  --accent: #8f0d48;
  --accent-dark: #6f0b39;
  --panel: #f3f1f2;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  --radius: 28px;
  --site-width: 1360px;
  --page-x: 1.5rem;
  --section-space-top: 5rem;
  --section-space-bottom: 2rem;
  --section-space-tight: 3rem;
  --section-space-compact: 1.6rem;
  --category-inset: clamp(2.25rem, 5vw, 4.2rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(143, 13, 72, 0.08), transparent 26%),
    linear-gradient(180deg, #f7f4f6 0%, #ffffff 18%, #fbf8fa 58%, #ffffff 100%);
}

body[data-page="home"] {
  background: #ffffff;
}

body[data-page="contact"] {
  background: #ffffff;
}

body[data-page="home"] main,
body[data-page="home"] .intro-section,
body[data-page="home"] .shortcut-grid,
body[data-page="home"] .shortcut-card,
body[data-page="home"] .shortcut-image-wrap {
  background: transparent;
}

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

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

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.topline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem var(--page-x) 0.7rem;
  background: linear-gradient(180deg, #030303 0%, #080808 100%);
  color: var(--white);
  box-shadow:
    inset 0 -18px 28px rgba(255, 255, 255, 0.03),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.topline-brand {
  display: inline-flex;
  align-items: center;
  grid-column: 2;
  justify-self: center;
}

.topline-brand img {
  width: 146px;
}

.topline-spacer {
  min-height: 1px;
}

.topline-meta {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.topline-meta a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.02em;
  transition: color 180ms ease, opacity 180ms ease;
}

.topline-meta a:hover,
.topline-meta a:focus-visible {
  color: #ffffff;
  opacity: 0.8;
}

.navline {
  padding: 1.05rem var(--page-x) 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #0b0b0b 0%, #111111 52%, #050505 100%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.14),
    inset 0 -10px 20px rgba(0, 0, 0, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.22);
}

.site-nav {
  max-width: var(--site-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3.1rem;
  flex-wrap: wrap;
}

.site-nav a,
.nav-dropdown-toggle {
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: #ffffff;
  opacity: 0.78;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 20px;
}

.nav-dropdown-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.99) 0%, rgba(8, 8, 8, 0.98) 100%);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 50;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%) rotate(45deg);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 18, 0.98);
}

.nav-dropdown-menu a {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown.is-open .nav-dropdown-toggle {
  opacity: 1;
}

.nav-dropdown.is-open .nav-caret {
  transform: rotate(180deg);
}

.nav-caret {
  font-size: 0.75rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.accent-line {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  justify-self: start;
  cursor: pointer;
}

.hero-banner {
  position: relative;
  min-height: clamp(680px, 88vh, 1040px);
  overflow: hidden;
  background: #050505;
}

.hero-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-banner img {
  width: 100%;
  height: clamp(680px, 88vh, 1040px);
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.02);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.24) 24%, rgba(0, 0, 0, 0.24) 76%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.12) 30%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  color: var(--white);
  text-align: center;
}

.hero-kicker,
.section-kicker,
.meta-label {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.hero-overlay h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3.8rem, 6.2vw, 6.4rem);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.hero-overlay h1 span {
  display: block;
  white-space: nowrap;
}

.hero-overlay .hero-accent-word {
  display: inline;
  white-space: inherit;
}

.hero-overlay .hero-accent-word {
  color: #d7c29a;
  text-shadow:
    0 10px 24px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(215, 194, 154, 0.08);
}

.intro-section,
.featured-section,
.category-teaser,
.contact-band,
.page-hero,
.listing-section,
.product-layout,
.product-video-section,
.product-tabs-section,
.detail-split,
.logo-section,
.related-section,
.breadcrumb-wrap,
.site-footer {
  max-width: var(--site-width);
  margin: 0 auto;
  padding-left: var(--page-x);
  padding-right: var(--page-x);
}

.intro-section,
.featured-section,
.listing-section,
.product-video-section,
.detail-split,
.logo-section,
.related-section {
  padding-top: var(--section-space-top);
  padding-bottom: var(--section-space-bottom);
}

.section-copy {
  max-width: 900px;
}

.center-copy {
  margin: 0 auto;
  text-align: center;
}

.section-copy h2,
.teaser-copy h2,
.detail-copy h2,
.listing-head h2,
.contact-band h2,
.page-hero-copy h1,
.info-card h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  color: var(--accent);
}

.section-copy p:last-child,
.teaser-copy p,
.page-lead,
.detail-copy p,
.info-card p,
.product-card-copy p,
.site-footer p {
  line-height: 1.7;
  color: var(--muted);
  font-size: 1.02rem;
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 3.5rem;
  align-items: end;
}

.shortcut-carousel {
  position: relative;
}

.shortcut-nav-button {
  display: none;
}

.shortcut-card {
  text-align: center;
  padding: 0 0 0.2rem;
  transition: transform 220ms ease;
}

.shortcut-card:hover,
.shortcut-card:focus-visible {
  transform: translateY(-4px);
}

.shortcut-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 250px;
  padding: 1rem 0.9rem 0.7rem;
  border: 1px solid rgba(24, 24, 24, 0.06);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfafb 100%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.92),
    0 16px 32px rgba(18, 18, 18, 0.045);
}

.shortcut-image-wrap img {
  display: block;
  max-width: 88%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.035));
  transition: transform 220ms ease, filter 220ms ease;
}

.shortcut-image-audio-systems {
  max-width: 96%;
  max-height: 92%;
}

.shortcut-image-speakers {
  max-width: 60%;
  max-height: 94%;
}

.shortcut-card:hover .shortcut-image-wrap img,
.shortcut-card:focus-visible .shortcut-image-wrap img {
  transform: translateY(-3px);
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.055));
}

.shortcut-card span {
  display: block;
  margin-top: 0.95rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border: 1px solid #ece8ea;
  box-shadow: 0 18px 40px rgba(20, 14, 17, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(20, 14, 17, 0.08);
}

.product-card-link {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  min-height: 380px;
}

.product-card-media {
  order: 2;
  height: 100%;
  min-height: 380px;
  padding: 1.75rem;
  background: #ffffff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-card-media img {
  max-width: 88%;
  max-height: 310px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-card-copy {
  order: 1;
  padding: 2.6rem 2.8rem;
}

.product-card-copy h3 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4.4vw, 3.5rem);
  color: #151515;
}

.product-card-copy p {
  max-width: 36ch;
}

.product-card-detail {
  margin-top: 1rem;
  color: #4c4549;
  line-height: 1.72;
}

.product-price-tag {
  margin: 1.8rem 0 0;
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
}

.product-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 1.35rem;
  padding: 0 1.25rem;
  align-self: flex-start;
  background: #0b0b0b;
  color: #ffffff;
  border: 1px solid #0b0b0b;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  font-family: "Oswald", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card:hover .product-card-button,
.product-card:focus-within .product-card-button {
  transform: translateY(-1px);
  background: var(--accent);
  border-color: var(--accent);
}

.category-teaser {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 0;
  align-items: stretch;
  padding-top: var(--section-space-tight);
  padding-bottom: var(--section-space-tight);
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 24px 48px rgba(40, 13, 27, 0.1);
}

body[data-page="home"] .category-teaser {
  width: 100vw;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  box-shadow: none;
}

.teaser-copy {
  padding: 3rem;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
}

.teaser-copy-rich {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding: 3.4rem 3.8rem 3.2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #a1064f 0%, #8f0d48 45%, #9d004d 100%);
}

.teaser-eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  line-height: 1.4;
}

.teaser-copy h2,
.teaser-copy p {
  color: var(--white);
}

.teaser-copy-rich h2 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 4.2vw, 3.8rem);
  color: #ffffff;
}

.teaser-copy-rich p {
  max-width: 34ch;
  margin-top: 1.25rem;
  font-size: 0.98rem;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.96);
}

.teaser-copy-rich .button {
  align-self: flex-start;
  margin-top: 1.8rem;
  min-width: 148px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: transparent;
  color: #ffffff;
}

.teaser-copy-rich .button:hover,
.teaser-copy-rich .button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.teaser-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.teaser-media-large {
  min-height: 500px;
}

.teaser-media-large img {
  min-height: 500px;
  object-position: center center;
}

.contact-band {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  margin-top: var(--section-space-bottom);
  margin-bottom: var(--section-space-tight);
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: #111111;
}

.contact-page-main {
  padding-bottom: 0;
}

.contact-page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 912px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  overflow: hidden;
  background: #0f0f10;
}

.contact-page-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(8, 8, 8, 0.24) 48%, rgba(8, 8, 8, 0.44) 100%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.28) 0%, rgba(255, 255, 255, 0.06) 42%, rgba(8, 8, 8, 0.28) 100%);
}

.contact-page-frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.8rem;
  justify-items: center;
  align-items: center;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.contact-page-copy {
  display: grid;
  justify-items: center;
  padding: 0;
  color: #ffffff;
  text-align: center;
}

.contact-page-kicker {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Oswald", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page-copy h1 {
  max-width: 13ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1.02;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.contact-page-lead {
  max-width: 32ch;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.18rem;
  line-height: 1.55;
  text-align: center;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
}

.contact-detail-panel {
  display: grid;
  gap: 0.95rem;
  width: min(100%, 760px);
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 11, 11, 0.46);
  backdrop-filter: blur(18px);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.06);
}

.contact-detail-kicker {
  margin: 0 0 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.contact-detail-panel .contact-detail-card + .contact-detail-card {
  margin-top: 0.15rem;
}

.contact-detail-card {
  display: grid;
  gap: 0.4rem;
  padding: 1.05rem 1.1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-detail-card:hover,
.contact-detail-card:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

.contact-detail-label {
  color: rgba(255, 255, 255, 0.68);
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail-value {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.06;
  word-break: break-word;
}

.contact-detail-note {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  text-align: center;
}

body[data-page="contact"] .site-footer {
  margin-top: 0;
}

body[data-page="home"] .contact-band {
  margin-top: 0;
  box-shadow: none;
}

.contact-band-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.66)),
    linear-gradient(90deg, rgba(8, 8, 8, 0.36), rgba(8, 8, 8, 0.2));
}

.contact-band-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 980px;
  padding: 3.5rem 1.5rem;
  text-align: center;
  color: #ffffff;
}

.contact-band-panel {
  width: min(100%, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.2rem 2rem 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(9, 9, 9, 0.38);
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.08);
}

.contact-band-logo img {
  width: 190px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.28));
}

.contact-band-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-band h2 {
  max-width: 16ch;
  margin-top: 1.1rem;
  text-align: center;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.04;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.contact-band-copy {
  margin-top: 1.4rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-actions-centered {
  justify-content: center;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.4rem;
  border: 1px solid transparent;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
}

.button.secondary {
  border-color: #cfcfcf;
  color: #111111;
}

.button.ghost-light {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.button.ghost-light:hover,
.button.ghost-light:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.site-footer {
  width: 100%;
  max-width: none;
  margin-top: 2rem;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(143, 13, 72, 0.16), transparent 26%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    "brand links copy"
    "contact links copy";
  gap: 2rem;
  align-items: start;
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 2.6rem 1.5rem 2.8rem;
}

.footer-brand img {
  width: 110px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-brand {
  grid-area: brand;
  justify-self: start;
}

.footer-brand p {
  max-width: 34ch;
  margin: 0;
  line-height: 1.65;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-copy {
  display: block;
  grid-area: copy;
  justify-self: end;
  align-self: end;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: right;
}

.footer-links {
  grid-area: links;
  justify-self: center;
  align-items: center;
  text-align: center;
}

.footer-contact {
  grid-area: contact;
  justify-self: start;
  align-items: flex-start;
  text-align: left;
}

.footer-links a,
.footer-contact a {
  font-family: "Oswald", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #ffffff;
}

@media (max-width: 1120px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "brand links copy"
      "contact links copy";
    gap: 1.4rem 1.6rem;
    align-items: start;
    padding: 2.4rem 1rem 2.5rem;
  }

  .footer-links {
    justify-self: center;
    align-items: center;
    text-align: center;
  }

  .footer-copy {
    justify-self: end;
    align-self: end;
  }
}

@media (min-width: 761px) and (max-width: 1024px) {
  body[data-page="home"] .hero-banner,
  body[data-page="home"] .hero-banner img {
    min-height: clamp(600px, 72vh, 820px);
    height: clamp(600px, 72vh, 820px);
  }

  body[data-page="home"] .hero-banner img {
    object-position: center 50%;
    transform: scale(1.015);
  }

  body[data-page="home"] .hero-overlay {
    padding: 4rem 1.5rem 4.2rem;
  }

  body[data-page="home"] .hero-overlay h1 {
    font-size: clamp(3.6rem, 7.2vw, 5.6rem);
    line-height: 0.93;
  }

  body[data-page="home"] .intro-section {
    padding-top: 4.5rem;
    padding-bottom: 1.75rem;
  }

  body[data-page="home"] .section-copy {
    max-width: 820px;
  }

  body[data-page="home"] .shortcut-carousel {
    margin-top: 2.75rem;
    padding: 0;
  }

  body[data-page="home"] .shortcut-nav-button {
    display: none !important;
  }

  body[data-page="home"] .shortcut-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem 1rem;
    margin-top: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  body[data-page="home"] .shortcut-card {
    min-width: 0;
    display: block;
  }

  body[data-page="home"] .shortcut-image-wrap {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 0.95rem 0.85rem 0.65rem;
  }

  body[data-page="home"] .shortcut-card span {
    margin-top: 0.8rem;
    font-size: 0.96rem;
    white-space: normal;
  }

  body[data-page="home"] .category-teaser {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    display: grid;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  body[data-page="home"] .teaser-copy-rich,
  body[data-page="home"] .teaser-media-large,
  body[data-page="home"] .teaser-media-large img {
    min-height: 420px;
  }

  body[data-page="home"] .teaser-copy-rich {
    padding: 2.6rem 2.25rem 2.4rem;
  }

  body[data-page="home"] .teaser-copy-rich h2 {
    font-size: clamp(2.35rem, 4.6vw, 3.2rem);
  }

  body[data-page="home"] .contact-band {
    min-height: 560px;
    margin-bottom: 2.4rem;
  }

  body[data-page="home"] .contact-band-overlay {
    padding: 2.8rem 1.5rem;
  }

  body[data-page="home"] .contact-band-panel {
    width: min(100%, 720px);
    padding: 2rem 1.6rem 2.1rem;
  }

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

  .product-card-link {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    min-height: 380px;
  }

  .product-card-media {
    order: 2;
    min-height: 380px;
    padding: 1.75rem;
  }

  .product-card-copy {
    order: 1;
    padding: 2.4rem 2.2rem;
  }

  .product-card-copy h3 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
  }
}

@media (min-width: 761px) and (max-width: 880px) {
  body[data-page="home"] .shortcut-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }
}

.page-hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 0;
  align-items: stretch;
  width: 100vw;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.page-hero-copy-rich {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  padding: 4.2rem var(--category-inset) 4rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #a1064f 0%, #8f0d48 45%, #9d004d 100%);
}

.page-hero-kicker {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  line-height: 1.4;
}

.page-hero-copy-rich h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 4.8vw, 4.5rem);
  color: #ffffff;
}

.page-hero-tagline {
  margin: 1.5rem 0 0;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.08;
}

.page-hero-body {
  max-width: 35ch;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.02rem;
  line-height: 1.72;
}

.page-hero-media-rich {
  min-height: 620px;
}

.page-hero-media img,
.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-head {
  margin-bottom: 2rem;
}

.listing-head h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.breadcrumb-wrap {
  padding-top: 2rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--muted);
}

.breadcrumb-wrap-products {
  max-width: none;
  margin: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 1rem;
  color: #8a7b82;
  gap: 0.55rem;
}

.breadcrumb-wrap-products a,
.breadcrumb-wrap-products span {
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumb-wrap-products a:hover,
.breadcrumb-wrap-products a:focus-visible {
  color: var(--accent);
}

.listing-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: var(--category-inset);
  padding-right: var(--category-inset);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.88fr);
  gap: 1.8rem;
  align-items: stretch;
  padding-top: 2rem;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-stage {
  position: relative;
  min-height: 540px;
  aspect-ratio: 1.18 / 1;
  display: grid;
  place-items: center;
  padding: 2rem;
  border: 1px solid #ddd8db;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  max-height: 470px;
  object-fit: contain;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: #1d1d1d;
  font-size: 1.85rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: background 180ms ease, color 180ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: #f5f2f4;
  color: var(--accent);
}

#gallery-prev {
  left: 1.2rem;
}

#gallery-next {
  right: 1.2rem;
}

.thumb-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.85rem;
}

.thumb-row {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.thumb-row::-webkit-scrollbar {
  display: none;
}

.thumb-nav-button {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
  color: #1d1d1d;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.thumb-nav-button:hover,
.thumb-nav-button:focus-visible {
  background: #f5f2f4;
  color: var(--accent);
  border-color: rgba(138, 18, 78, 0.22);
}

.thumb-button {
  display: grid;
  place-items: center;
  flex: 0 0 152px;
  padding: 0;
  border: 1px solid #ddd8db;
  background: #ffffff;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1.18 / 1;
  scroll-snap-align: start;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.thumb-button.is-active {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.thumb-button:hover,
.thumb-button:focus-visible {
  transform: translateY(-2px);
}

.thumb-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: auto;
  background: #ffffff;
}

.info-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.9rem 1.9rem 1.7rem;
  background: linear-gradient(180deg, #f3eff1 0%, #eee8eb 100%);
  border: 1px solid #ddd8db;
  border-top: 4px solid var(--accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.product-head-copy {
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.info-card h1 {
  margin: 0;
  font-size: clamp(2.55rem, 4vw, 4rem);
  line-height: 0.96;
  max-width: 11ch;
}

.product-price {
  margin: 1.1rem 0 0.75rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.95rem;
  color: var(--accent);
}

.product-short {
  margin: 0;
  max-width: 38ch;
  color: #434343;
  line-height: 1.66;
}

.highlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.5rem;
  padding-left: 1rem;
  margin: 1.25rem 0 1.35rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  padding-top: 1.25rem;
  padding-bottom: 1.35rem;
}

.highlight-list li::marker {
  color: var(--accent);
}

.highlight-list li {
  color: #2f2f2f;
  line-height: 1.55;
}

.color-block {
  margin-top: auto;
  padding-top: 0.1rem;
}

.color-options {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.color-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.25rem 0;
}

.swatch {
  width: 16px;
  height: 16px;
  border: 1px solid #c8c8c8;
}

.detail-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.product-video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(620px, 1.08fr);
  gap: 3rem;
  align-items: start;
  padding-top: var(--section-space-tight);
  padding-bottom: var(--section-space-compact);
}

.product-video-embed,
.product-video-copy {
  min-width: 0;
}

.video-frame {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  border: 1px solid #ddd8db;
  background: #040404;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.product-video-copy h2 {
  margin: 0 0 1.25rem;
  max-width: 14ch;
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.15rem, 2.7vw, 3.05rem);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.01;
}

.product-video-copy p {
  max-width: 54ch;
  margin: 0 0 1.2rem;
  color: #242424;
  font-size: 1rem;
  line-height: 1.64;
}

.product-video-copy p:last-child {
  margin-bottom: 0;
}

.product-tabs-section {
  padding-top: var(--section-space-tight);
  padding-bottom: var(--section-space-compact);
}

.product-tabs-nav {
  display: inline-flex;
  border: 1px solid #d9d3d6;
  background: #f4eff2;
}

.product-tab-button {
  padding: 0.92rem 1.45rem;
  border: 0;
  background: transparent;
  color: #555555;
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.product-tab-button.is-active {
  background: #101010;
  color: #ffffff;
}

.product-tab-panel {
  display: none;
  padding-top: 1.6rem;
}

.product-tab-panel.is-active {
  display: block;
}

.tab-copy-block h2,
.tab-copy-block h3 {
  margin: 0 0 1rem;
}

.tab-copy-block h2 {
  color: var(--accent);
  font-size: clamp(2.45rem, 3.6vw, 3.6rem);
  line-height: 0.98;
}

.tab-copy-block h3 {
  color: var(--accent);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1;
}

.tab-copy-block p {
  max-width: 68ch;
  margin: 0;
  color: #373737;
  line-height: 1.66;
}

.service-logo-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.6rem 0 1.8rem;
}

.service-logo-tile {
  display: grid;
  place-items: center;
  min-width: 108px;
  min-height: 62px;
  padding: 0.6rem 0.9rem;
  border: 1px solid #e2dce0;
  background: #ffffff;
}

.service-logo-tile img {
  max-height: 30px;
  width: auto;
  max-width: 104px;
  object-fit: contain;
}

.service-logo-text span {
  color: #181818;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.tab-benefits {
  padding-top: 0.2rem;
}

.benefits-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.1rem 0 0;
  padding-left: 1.2rem;
}

.benefits-list li {
  color: #2b2b2b;
  line-height: 1.58;
}

.benefits-list li::marker {
  color: var(--accent);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.spec-item {
  padding: 1.05rem 1.15rem;
  border: 1px solid #e2dce0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f4f6 100%);
}

.spec-item h3 {
  margin: 0 0 0.55rem;
  color: var(--accent);
  font-size: 1.15rem;
  line-height: 1;
}

.spec-item p {
  margin: 0;
  color: #2c2c2c;
  line-height: 1.62;
  white-space: pre-line;
}

.product-approach-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 2rem;
  align-items: center;
  padding-top: var(--section-space-tight);
  padding-bottom: var(--section-space-compact);
  background: #262626;
}

.approach-copy {
  padding: 2.7rem 2.6rem;
  color: rgba(255, 255, 255, 0.92);
}

.approach-copy h2 {
  margin: 0 0 1.4rem;
  color: #ffffff;
  font-size: clamp(2.45rem, 3.7vw, 3.9rem);
  line-height: 0.98;
}

.approach-copy p {
  max-width: 35ch;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.62;
}

.approach-divider {
  width: 100%;
  max-width: 430px;
  height: 1px;
  margin: 1.8rem 0 1.8rem;
  background: rgba(255, 255, 255, 0.34);
}

.approach-bottom {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
}

.approach-logos {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.approach-logos img:first-child {
  width: 78px;
  height: auto;
}

.approach-logos img:last-child {
  width: 112px;
  height: auto;
}

.approach-quote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
}

.approach-media {
  padding: 2.7rem 2.6rem 2.7rem 0;
}

.approach-media img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #ffffff;
}

.logo-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.logo-tile {
  display: grid;
  place-items: center;
  min-width: 120px;
  min-height: 74px;
  padding: 0.75rem 1rem;
  border: 1px solid #ececec;
  background: #ffffff;
}

.logo-tile img {
  max-height: 46px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .product-layout,
  .product-video-section,
  .detail-split,
  .category-teaser,
  .contact-band {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .page-hero-copy-rich {
    padding: 3rem 2rem 3.1rem;
  }

  .page-hero-copy-rich h1 {
    font-size: clamp(3.4rem, 5.8vw, 5rem);
  }

  .page-hero-tagline {
    font-size: clamp(1.85rem, 3vw, 2.7rem);
  }

  .page-hero-body {
    font-size: 1.02rem;
    line-height: 1.72;
  }

  .page-hero-media-rich {
    min-height: 460px;
  }

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

  .product-card-link {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    min-height: 360px;
  }

  .product-card-media {
    min-height: 360px;
    padding: 1.5rem;
  }

  .product-card-copy {
    padding: 2.2rem 2rem;
  }

  .product-card-copy h3 {
    max-width: 13ch;
    font-size: clamp(2.1rem, 3.8vw, 3rem);
  }
}

@media (max-width: 1024px) {
  :root {
    --page-x: 1rem;
  }

  .topline {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem 0.7rem;
  }

  .topline-brand {
    grid-column: 1;
    justify-self: start;
  }

  .topline-brand img {
    width: 118px;
  }

  .topline-meta {
    display: none;
  }

  .navline {
    padding: 0 1rem 0.85rem;
  }

  .menu-toggle {
    order: 2;
    display: inline-flex;
    justify-self: end;
    position: relative;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    color: transparent;
    font-size: 0;
    line-height: 0;
  }

  .menu-toggle::before {
    content: "";
    width: 20px;
    height: 14px;
    display: block;
    background:
      linear-gradient(#ffffff, #ffffff) center 0 / 100% 2px no-repeat,
      linear-gradient(#ffffff, #ffffff) center 6px / 100% 2px no-repeat,
      linear-gradient(#ffffff, #ffffff) center 12px / 100% 2px no-repeat;
  }

  .site-nav {
    display: none;
    margin-top: 0;
    padding: 0.75rem 0 0.2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    margin-top: 0.2rem;
    padding: 0.2rem 0 0.5rem 0.8rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 0.65rem 0;
    border-bottom: 0;
    border-radius: 0;
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.82);
  }
}

@media (max-width: 760px) {
  :root {
    --page-x: 1rem;
    --section-space-top: 3.5rem;
    --section-space-bottom: 1.5rem;
    --section-space-tight: 2rem;
    --section-space-compact: 1.25rem;
    --category-inset: 1.4rem;
  }

  .topline-brand {
    grid-column: 1;
  }

  .topline-brand img {
    width: 110px;
  }

  .topline-spacer {
    display: none;
  }

  .hero-banner,
  .hero-banner img {
    min-height: clamp(620px, 84svh, 820px);
    height: clamp(620px, 84svh, 820px);
  }

  .hero-banner img {
    object-position: 44% center;
    transform: scale(1.01);
  }

  .hero-overlay {
    inset: 0;
    justify-content: center;
    padding: 3rem 1rem 3.2rem;
    text-align: center;
  }

  .hero-overlay h1,
  .section-copy h2,
  .teaser-copy h2,
  .detail-copy h2,
  .listing-head h2,
  .contact-band h2,
  .contact-page-copy h1,
  .page-hero-copy h1,
  .info-card h1 {
    font-size: 2.6rem;
  }

  .hero-overlay h1 {
    max-width: none;
    font-size: clamp(3rem, 9.8vw, 4.7rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
  }

  .hero-overlay h1 span {
    white-space: nowrap;
  }

  .page-hero-copy-rich {
    min-height: auto;
    padding: 2rem 1.4rem;
    background:
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 26%),
      linear-gradient(180deg, #a1064f 0%, #8f0d48 45%, #9d004d 100%);
  }

  .page-hero {
    display: grid;
    grid-template-columns: 1fr;
    width: 100vw;
    max-width: none;
    margin: 0 calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
  }

  .page-hero-tagline {
    font-size: 1.7rem;
  }

  .page-hero-body {
    max-width: none;
    font-size: 0.98rem;
  }

  .contact-page-hero {
    min-height: 744px;
    padding-top: 2.5rem;
  }

  .contact-page-frame {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    align-items: start;
    padding-bottom: 2rem;
  }

  .contact-page-copy {
    text-align: center;
  }

  .contact-page-copy h1,
  .contact-page-lead {
    max-width: none;
  }

  .contact-page-copy h1 {
    line-height: 1.07;
  }

  .contact-detail-panel {
    padding: 1.2rem;
  }

  .page-hero-media-rich {
    min-height: 300px;
  }

  .page-hero-media img {
    object-position: center center;
  }

  .shortcut-grid,
  .product-grid,
  .highlight-list {
    grid-template-columns: 1fr;
  }

  .shortcut-grid {
    display: flex;
    gap: 1rem;
    margin-top: 0;
    padding: 0 16vw 0 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
  }

  .shortcut-carousel {
    position: relative;
    margin-top: 2.2rem;
    padding: 0 2.75rem;
  }

  .shortcut-grid::-webkit-scrollbar {
    display: none;
  }

  .shortcut-nav-button {
    position: absolute;
    top: calc(50% - 1.35rem);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 1px solid rgba(17, 17, 17, 0.14);
    background: rgba(255, 255, 255, 0.96);
    color: #171717;
    font-size: 1.35rem;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  }

  #shortcut-prev {
    left: 0;
  }

  #shortcut-next {
    right: 0;
  }

  .shortcut-card {
    flex: 0 0 74vw;
    min-width: 74vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    scroll-snap-align: start;
  }

  .intro-section,
  .featured-section,
  .listing-section,
  .product-tabs-section,
  .product-approach-section,
  .detail-split,
  .product-video-section,
  .logo-section,
  .related-section,
  .product-layout,
  .site-footer,
  .contact-band {
    padding-left: var(--page-x);
    padding-right: var(--page-x);
  }

  .page-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .teaser-copy,
  .info-card {
    padding: 1.4rem;
  }

  .product-video-copy h2,
  .product-video-copy p {
    max-width: none;
  }

  .product-tabs-nav {
    width: 100%;
  }

  .product-tab-button {
    flex: 1;
  }

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

  .product-approach-section {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .approach-copy,
  .approach-media {
    padding: 1.6rem;
  }

  .approach-copy p,
  .approach-divider {
    max-width: none;
  }

  .approach-bottom {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .listing-section {
    padding-left: var(--category-inset);
    padding-right: var(--category-inset);
  }

  .breadcrumb-wrap-products {
    padding-left: 0;
    padding-right: 0;
  }

  .product-card-link {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-card-media {
    order: 1;
    min-height: 240px;
    padding: 1rem;
  }

  .product-card-copy {
    order: 2;
    padding: 1.4rem;
  }

  .product-card-copy h3 {
    max-width: none;
    font-size: 2.2rem;
  }

  .teaser-copy-rich {
    min-height: auto;
    padding: 2rem 1.4rem;
  }

  .teaser-copy-rich h2 {
    max-width: none;
    font-size: 2.5rem;
  }

  .teaser-copy-rich p {
    max-width: none;
  }

  .teaser-media-large,
  .teaser-media-large img {
    min-height: 280px;
  }

  .contact-band {
    min-height: 500px;
    margin-bottom: 2rem;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-band-overlay {
    padding: 2.2rem 1rem;
  }

  .contact-band-panel {
    width: 100%;
    padding: 1.6rem 1rem 1.8rem;
    border-radius: 22px;
  }

  .contact-band-logo img {
    width: 150px;
  }

  .contact-band h2 {
    max-width: none;
    font-size: 2.4rem;
  }

  .contact-band-copy {
    font-size: 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2.1rem 1rem 2rem;
  }

  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-copy {
    justify-self: start;
    align-items: flex-start;
    text-align: left;
  }

  .footer-brand {
    order: 1;
  }

  .footer-brand img {
    width: 118px;
    margin-bottom: 0.8rem;
  }

  .footer-brand p {
    max-width: 28ch;
    color: rgba(255, 255, 255, 0.84);
  }

  .footer-contact {
    order: 2;
    gap: 0.6rem;
  }

  .footer-links {
    order: 3;
    gap: 0.65rem;
  }

  .footer-links a,
  .footer-contact a {
    font-size: 0.96rem;
  }

  .footer-copy {
    display: block;
    order: 4;
    margin-top: 0.35rem;
  }

  .gallery-stage {
    min-height: 320px;
  }

  .thumb-row {
    gap: 0.65rem;
    padding: 0 1.4rem 0.2rem 0;
    -webkit-overflow-scrolling: touch;
  }

  .thumb-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 0.55rem;
  }

  .thumb-button {
    flex: 0 0 92px;
    min-width: 92px;
  }

  .thumb-nav-button {
    width: 40px;
    height: 40px;
    font-size: 1.45rem;
  }

  .shortcut-image-wrap {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 0.85rem 0.75rem 0.55rem;
  }

  .shortcut-image-wrap img {
    max-width: 78%;
    max-height: 92%;
  }

  .shortcut-image-audio-systems {
    max-width: 86%;
  }

  .shortcut-image-speakers {
    max-width: 48%;
    max-height: 96%;
  }

  .shortcut-card span {
    margin-top: 0.55rem;
    font-size: 1rem;
    line-height: 1.05;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero-overlay h1 span {
    white-space: normal;
  }

  .shortcut-grid {
    gap: 0.85rem;
    padding-right: 14vw;
  }

  .shortcut-card {
    flex-basis: 80vw;
    min-width: 80vw;
  }

  .shortcut-carousel {
    padding: 0 2.45rem;
  }

  .shortcut-image-wrap {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .shortcut-card span {
    font-size: 0.96rem;
  }

  .contact-band h2 {
    font-size: 2.1rem;
    line-height: 1.06;
  }

  .contact-page-hero {
    min-height: 672px;
    padding-top: 1.8rem;
  }

  .contact-page-copy h1 {
    font-size: 2.15rem;
    line-height: 1.06;
  }

  .contact-page-lead {
    font-size: 1rem;
  }

  .contact-detail-value {
    font-size: 1.45rem;
  }

  .gallery-stage {
    min-height: 280px;
    padding: 1.2rem;
  }

  .gallery-stage img {
    max-height: 250px;
  }

  .thumb-row {
    padding-right: 3rem;
  }

  .thumb-button {
    flex-basis: 84px;
    min-width: 84px;
  }

  .thumb-carousel {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 0.45rem;
  }

  .thumb-nav-button {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .product-card-copy h3 {
    font-size: 1.9rem;
  }
}
