/* REQAL clean CSS rebuild
   Phase 1: base, tokens, reset and typography.
   Mobile-first; section styles are added in later phases. */

:root {
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-logo: 'Eurostile', 'Roboto', Arial, sans-serif;

  --bg-base: rgb(7, 7, 7);
  --bg-section: rgb(12, 12, 13);
  --bg-specs: rgb(11, 13, 16);
  --bg-refinement: rgb(11, 12, 16);
  --bg-header: rgb(12, 12, 12);
  --bg-footer: rgb(7, 7, 7);

  --gold: rgb(223, 180, 122);
  --gold-alt: rgb(215, 172, 118);
  --gold-bright: rgb(240, 197, 143);
  --gold-dark: #b88f68;

  --text: rgb(246, 241, 234);
  --text-muted: rgba(246, 241, 234, 0.78);
  --text-soft: rgba(246, 241, 234, 0.62);
  --copy: rgba(235, 236, 231, 0.93);
  --copy-muted: rgba(235, 236, 231, 0.86);
  --copy-soft: rgba(235, 236, 231, 0.68);
  --line-soft: rgba(246, 241, 234, 0.12);
  --line-gold: rgba(223, 180, 122, 0.34);
  --glow-gold: rgba(223, 180, 122, 0.16);
  --shadow-dark: rgba(5, 4, 3, 0.48);
  --specs-kicker: rgba(203, 156, 103, 0.78);
  --specs-heading: rgba(246, 241, 234, 0.88);
  --specs-micro-label: rgba(218, 211, 201, 0.64);

  --space-xs: 5px;
  --space-s: 10px;
  --space-m: 15px;
  --space-l: 20px;
  --space-xl: 30px;
  --space-xxl: 40px;
  --space-xxxl: 100px;

  --header-height: 4.5rem;
  --content-width: 1180px;
  --container-pad: clamp(20px, 6vw, 40px);

  --text-size: clamp(1rem, 0.97rem + 0.14vw, 1.08rem);
  --small-size: 0.72rem;
  --h3-size: clamp(1.18rem, 1.08rem + 0.42vw, 1.45rem);
  --h2-size: clamp(2rem, 1.55rem + 1.85vw, 3.05rem);
  --hero-size: clamp(2.7rem, 6vw, 5.1rem);

  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.19, 1, 0.22, 1);
  --reqal-flip-zoom-speed: 500ms;
  --reqal-flip-zoom-ease: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--space-l));
  background: var(--bg-base);
  text-size-adjust: 100%;
}

body {
  max-width: 100%;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  background:
    radial-gradient(circle at 50% -10%, rgba(223, 180, 122, 0.055), transparent 34rem),
    var(--bg-base);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-size);
  font-weight: 300;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.lightbox-open {
  overflow: hidden;
}

main {
  display: block;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg-base);
}

section {
  scroll-margin-top: calc(var(--header-height) + var(--space-l));
}

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

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

a:hover {
  color: var(--gold-bright);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  font-size: var(--hero-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

p {
  color: var(--text-muted);
}

strong,
b {
  font-weight: 500;
  color: var(--text);
}

::selection {
  background: rgba(223, 180, 122, 0.28);
  color: var(--text);
}

.container {
  width: min(100%, calc(var(--content-width) + (var(--container-pad) * 2)));
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.main-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(74px, 14vw, var(--space-xxxl));
  background:
    linear-gradient(180deg, rgba(12, 12, 13, 0.992), rgba(7, 7, 8, 0.998)),
    var(--bg-section);
}

.main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--container-pad);
  right: var(--container-pad);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 172, 118, 0.24), transparent);
  opacity: 0.22;
}

.main-section > .container {
  position: relative;
  z-index: 1;
}

.section-copy {
  display: grid;
  gap: var(--space-l);
  max-width: 760px;
}

.section-copy-centered {
  margin-inline: auto;
  text-align: center;
}

.section-kicker,
.contact-kicker {
  color: rgba(246, 241, 234, 0.88);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-kicker,
.spec-panel-kicker,
.spec-label {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: var(--small-size);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.is-hidden {
  display: none;
}

.skip-link {
  position: fixed;
  top: var(--space-s);
  left: var(--space-s);
  z-index: 2000;
  transform: translateY(calc(-100% - var(--space-l)));
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.94);
  color: var(--text);
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(223, 180, 122, 0.11);
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.94), rgba(14, 14, 14, 0.9));
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

header.is-scrolled {
  border-color: rgba(223, 180, 122, 0.16);
  background: linear-gradient(90deg, rgba(6, 6, 6, 0.98), rgba(12, 12, 12, 0.94));
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

header nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 28px), var(--content-width));
  min-height: var(--header-height);
  margin-inline: auto;
  padding-block: 0.45rem;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  width: 104px;
  height: auto;
  border-radius: 0;
}

.menu-icon {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  appearance: none;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(230, 218, 203, 0.82);
  transition:
    transform 180ms var(--ease-standard),
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.menu-icon::before {
  top: 12px;
  box-shadow: 0 6px 0 rgba(230, 218, 203, 0.82);
}

.menu-icon::after {
  top: 24px;
}

.menu-icon[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
  box-shadow: 0 0 0 rgba(230, 218, 203, 0);
}

.menu-icon[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
  position: absolute;
  top: var(--header-height);
  left: 50%;
  display: flex;
  width: 100vw;
  max-height: calc(100svh - var(--header-height));
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0.7rem var(--container-pad) 1rem;
  overflow-y: auto;
  list-style: none;
  border-bottom: 1px solid rgba(223, 180, 122, 0.14);
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #0b0b0b, #101010);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px);
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease-standard),
    visibility 220ms ease;
  visibility: hidden;
}

.nav-links.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  position: relative;
  display: block;
  padding: 0.85rem 0;
  color: rgba(246, 241, 234, 0.88);
  font-family: var(--font-logo);
  font-size: 0.86rem;
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.55rem;
  width: min(100%, 42px);
  height: 1px;
  background: currentColor;
  opacity: 0.76;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 180ms var(--ease-standard);
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links a[aria-current="true"] {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.is-active::after,
.nav-links a[aria-current="true"]::after {
  transform: translateX(-50%) scaleX(1);
}

.cta-button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(240, 197, 143, 0.48);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(240, 197, 143, 0.15), rgba(151, 102, 49, 0.08)),
    rgba(8, 7, 6, 0.42);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  color: rgb(255, 248, 238);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  padding: 0.92rem 1.35rem;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.cta-button::after {
  content: "";
  position: absolute;
  inset-block: 0;
  left: -35%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0;
  transform: skewX(-18deg);
  transition:
    left 500ms ease,
    opacity 300ms ease;
}

.cta-button:hover {
  border-color: rgba(240, 197, 143, 0.86);
  background:
    linear-gradient(180deg, rgba(240, 197, 143, 0.22), rgba(151, 102, 49, 0.14)),
    rgba(14, 11, 9, 0.62);
  color: rgb(255, 255, 255);
  transform: translateY(-2px);
}

.cta-button:hover::after {
  left: 110%;
  opacity: 1;
}

.hero-section {
  position: relative;
  display: grid;
  min-height: 100svh;
  min-height: 100dvh;
  align-content: start;
  isolation: isolate;
  overflow: hidden;
  padding:
    calc(var(--header-height) + clamp(1.65rem, 4.4vh, 2.35rem))
    max(1.35rem, var(--container-pad))
    clamp(2.7rem, 8vh, 4.25rem);
  background-color: var(--bg-base);
  background-image:
    linear-gradient(180deg, rgba(5, 4, 3, 0.58) 0%, rgba(5, 4, 3, 0.42) 45%, rgba(5, 4, 3, 0.76) 100%),
    linear-gradient(90deg, rgba(5, 4, 3, 0.8) 0%, rgba(5, 4, 3, 0.5) 50%, rgba(5, 4, 3, 0.12) 100%),
    url("../images/reqal-hero-v18.webp");
  background-position: center, center, 53% center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 100%;
  flex-direction: column;
  gap: clamp(1.15rem, 2.6vh, 1.75rem);
}

.hero-content > * {
  margin: 0;
}

.hero-kicker {
  color: rgba(246, 241, 234, 0.88);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.45;
}

.hero-kicker-desktop {
  display: none;
}

.hero-content h1 {
  max-width: 12.2ch;
  color: var(--gold-dark);
  margin-bottom: clamp(0.65rem, 2vh, 1rem);
  font-size: clamp(2.32rem, 10.35vw, 2.94rem);
  line-height: 0.98;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.hero-title-desktop {
  display: none;
}

.hero-lead-desktop {
  display: none;
}

.hero-content .hero-lead {
  max-width: 19.5rem;
  color: rgba(246, 241, 234, 0.80);
  font-size: clamp(0.96rem, 1.02vw, 1.04rem);
  line-height: 1.68;
  text-align: left;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  margin-top: clamp(0.2rem, 1vh, 0.55rem);
}

.hero-actions .cta-button {
  width: min(100%, 22rem);
}

@media (max-width: 767px) {
  html,
  body,
  main {
    max-width: 100%;
    overflow-x: hidden;
  }

  .main-section {
    overflow-x: clip;
  }

  .hero-section {
    min-height: 100svh;
    min-height: 100dvh;
    align-content: center;
    overflow: hidden;
    padding-top: calc(var(--header-height) + clamp(1.1rem, 3.2vh, 1.65rem));
    padding-bottom: clamp(2.1rem, 5.2vh, 3.35rem);
  }

  .hero-content {
    gap: clamp(0.95rem, 2.15vh, 1.42rem);
  }

  .hero-kicker {
    font-size: clamp(0.69rem, 2.65vw, 0.76rem);
    letter-spacing: 0.16em;
    line-height: 1.38;
  }

  .hero-content .hero-lead {
    max-width: 20.5rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: clamp(0.1rem, 0.65vh, 0.35rem);
  }
}

.sound-section h2 {
  max-width: none;
  margin: 0 0 1.35rem;
  color: var(--gold-dark);
  font-size: clamp(2.15rem, 8.8vw, 3rem);
  line-height: 1.02;
  text-align: left;
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.34);
  text-wrap: balance;
}

.sound-kicker,
.refinement-kicker,
.story-kicker {
  margin-bottom: 0.85rem;
}

.listener-system-copy .refinement-kicker {
  max-width: none;
  color: rgba(246, 241, 234, 0.88);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.3;
}

.story-heading {
  margin-bottom: var(--space-xl);
}

.sound-section .section-copy {
  width: min(100%, 64rem);
  max-width: 64rem;
  gap: 1.1rem;
  margin: 0;
  text-align: left;
}

.sound-section .section-copy p {
  color: var(--copy);
  text-align: left;
}

.sound-card-grid {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  margin-top: clamp(2.35rem, 5vw, 4.6rem);
}

.sound-card {
  position: relative;
  min-height: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}

.sound-card h3 {
  margin: 0 0 0.5rem;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-align: left;
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.34);
  text-transform: uppercase;
}

.sound-card p {
  max-width: 24rem;
  color: var(--copy);
  font-size: 1rem;
  line-height: 1.68;
}

.refinement-anatomy-section {
  --refinement-mobile-bg-base-y: 155px;
  --refinement-mobile-bg-x: 0px;
  --refinement-mobile-bg-y: 0px;
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(5.7rem, 17vw, 7rem) clamp(4.2rem, 16vw, 6rem);
  border-block: 1px solid rgba(223, 180, 122, 0.08);
  background-color: var(--bg-refinement);
  background-image:
    linear-gradient(180deg, rgba(6, 5, 4, 0.28) 0%, rgba(6, 5, 4, 0.36) 42%, rgba(6, 5, 4, 0.76) 100%),
    linear-gradient(90deg, rgba(6, 5, 4, 0.44) 0%, rgba(6, 5, 4, 0.3) 52%, rgba(6, 5, 4, 0.24) 100%),
    url("../images/listener-acoustic-system-v7.webp");
  background-position: center, center, 18% center;
  background-repeat: no-repeat;
  background-size: cover, cover, auto 102%;
}

.refinement-anatomy-section::before {
  content: none;
}

.listener-system-container {
  display: block;
}

.listener-system-copy h2 {
  max-width: 9.4em;
  margin-bottom: 1.2rem;
  color: var(--gold-dark);
  font-size: clamp(2.15rem, 8.8vw, 3rem);
  line-height: 1.02;
  text-align: left;
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.34);
  text-wrap: balance;
}

.listener-system-copy p {
  max-width: 37rem;
  color: var(--copy);
  font-size: 1rem;
  line-height: 1.78;
  text-align: left;
}

.listener-system-copy p + p {
  margin-top: var(--space-m);
}

.listener-system-copy .section-lead {
  color: var(--copy);
}

.refinement-system-panel {
  display: none;
}

.refinement-copy-points {
  display: grid;
  gap: 0;
  max-width: 36rem;
  margin-top: clamp(1.4rem, 7vw, 2rem);
}

.refinement-point {
  padding: 0.95rem 0;
  border-top: 1px solid var(--line-soft);
}

.refinement-point:first-child {
  padding-top: 0;
  border-top: 0;
}

.refinement-point:last-child {
  padding-bottom: 0;
}

.refinement-point-term {
  display: block;
  margin-bottom: 0.34rem;
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.refinement-point p {
  color: var(--copy-muted);
  font-size: clamp(0.94rem, 1vw, 1.03rem);
  line-height: 1.56;
  text-align: left;
}

.story-section h2 {
  max-width: 8.4em;
  margin-bottom: 0;
  color: var(--gold-dark);
  font-size: clamp(2.15rem, 8.8vw, 3rem);
  line-height: 1.02;
  text-align: left;
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.34);
  text-wrap: balance;
}

.story-section .section-copy {
  position: relative;
  max-width: 760px;
  padding: 0;
}

.story-section .section-copy::before {
  content: "";
  display: block;
  margin-bottom: 1.75rem;
  border-top: 1px solid rgba(215, 172, 118, 0.18);
}

.story-section .section-copy p {
  color: var(--copy);
  line-height: 1.78;
  text-align: left;
}

.impressions-section {
  border-block: 1px solid rgba(223, 180, 122, 0.08);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(13, 13, 13, 0.94)),
    radial-gradient(circle at top right, rgba(223, 180, 122, 0.035), transparent 30%);
}

.impressions-section.is-disabled {
  display: none;
}

.impressions-disclaimer {
  width: min(100%, var(--content-width));
  margin: 0 auto 1.5rem;
  padding: 0.68rem 0.9rem;
  border: 1px solid rgba(224, 69, 57, 0.5);
  border-radius: 4px;
  background: rgba(96, 18, 14, 0.26);
  color: rgba(255, 126, 112, 0.96);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.impressions-disclaimer-bottom {
  margin-top: 1.45rem;
  margin-bottom: 0;
}

.impressions-slider {
  --impressions-gap: 0;
  --impressions-per-page: 1;
  position: relative;
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: clamp(1.8rem, 4vw, 3.6rem);
}

.impressions-viewport {
  overflow: hidden;
}

.impressions-track {
  display: flex;
  gap: var(--impressions-gap);
  transition: transform 400ms ease;
}

.impression-card {
  flex: 0 0 100%;
  margin: 0;
  padding-inline: clamp(0.8rem, 4vw, 3.8rem);
  text-align: center;
}

.impression-card p {
  max-width: 58rem;
  margin-inline: auto;
  color: rgba(224, 225, 220, 0.78);
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  letter-spacing: 0;
  line-height: 1.22;
  text-align: center;
  text-wrap: balance;
}

.impression-card footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.05rem;
  padding: 0.48rem 1.65rem;
  border: 1px solid rgba(223, 180, 122, 0.2);
  border-radius: 2px;
  color: rgba(223, 180, 122, 0.92);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.impressions-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.impressions-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(246, 241, 234, 0.22);
  transition:
    background-color 200ms ease,
    transform 200ms ease;
}

.impressions-dot:hover,
.impressions-dot:focus-visible {
  background: rgba(223, 180, 122, 0.66);
  outline: none;
  transform: scale(1.05);
}

.impressions-dot.is-active {
  background: rgba(223, 180, 122, 0.92);
  transform: scale(1.12);
}

.impressions-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  width: 28px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: rgba(246, 241, 234, 0.46);
  transform: translateY(-50%);
  transition:
    color 200ms ease,
    opacity 200ms ease,
    transform 200ms ease;
}

.impressions-arrow:hover,
.impressions-arrow:focus-visible {
  color: rgba(223, 180, 122, 0.96);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.impressions-arrow-prev {
  left: 0;
}

.impressions-arrow-next {
  right: 0;
}

.impressions-arrow span {
  font-size: 2.25rem;
  line-height: 1;
  transform: translateY(-2px);
}

.story-link-row {
  margin-top: -0.35rem;
}

.text-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  width: fit-content;
  border-bottom: 1px solid rgba(223, 180, 122, 0.46);
  color: rgba(223, 180, 122, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding-bottom: 0.07rem;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.text-link-cta::after {
  content: "↗";
  font-size: 0.76em;
  transform: translateY(-0.04rem);
}

.text-link-cta:hover {
  border-bottom-color: var(--gold-bright);
  color: var(--gold-bright);
}

.design-section .container {
  overflow: visible;
}

.craft-kicker {
  margin-bottom: var(--space-s);
}

.design-section h2 {
  max-width: 8.4em;
  margin-bottom: var(--space-xl);
  color: var(--gold-dark);
  font-size: clamp(2.15rem, 8.8vw, 3rem);
  line-height: 1.02;
  text-align: left;
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.34);
  text-wrap: balance;
}

.craft-copy {
  position: relative;
  width: min(100%, 43.5rem);
  max-width: 43.5rem;
  margin: 0;
}

.craft-copy p {
  max-width: 41.5rem;
  color: var(--copy);
  line-height: 1.78;
  text-align: left;
}

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

.editorial-showcase {
  position: relative;
  width: auto;
  margin-top: clamp(2rem, 8vw, 3.2rem);
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
  padding-top: 0.7rem;
}

.editorial-showcase-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}

.editorial-showcase-viewport::-webkit-scrollbar {
  display: none;
}

.editorial-showcase-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(16.5rem, 78vw);
  width: max-content;
  min-width: max-content;
  gap: 0.72rem;
}

.editorial-card {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  background: rgba(11, 11, 11, 0.14);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  user-select: none;
}

.editorial-card img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  transition:
    filter 450ms ease,
    transform 450ms ease;
}

.editorial-card:hover img {
  filter: brightness(1.03);
  transform: scale(1.018);
}

.craft-gallery-arrow {
  display: none;
}

.details-section {
  background-color: var(--bg-specs);
  background-image:
    linear-gradient(180deg, rgba(11, 13, 16, 0.992), rgba(7, 7, 8, 0.998));
}

.details-section .container {
  overflow: visible;
}

.specs-kicker {
  margin-bottom: var(--space-s);
}

.details-section h2 {
  max-width: 10.5em;
  margin-bottom: var(--space-xl);
  color: var(--gold-dark);
  font-size: clamp(2.15rem, 8.8vw, 3rem);
  line-height: 1.02;
  text-align: left;
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.34);
  text-wrap: balance;
}

.details-cta {
  position: relative;
  display: grid;
  gap: clamp(1rem, 2.5vw, var(--space-l));
  overflow: hidden;
  border-top: 1px solid rgba(215, 172, 118, 0.16);
  border-bottom: 1px solid rgba(215, 172, 118, 0.12);
  background-color: rgba(7, 6, 5, 0.16);
}

.details-copy-top {
  display: grid;
  gap: 0.7rem;
  padding-top: var(--space-l);
}

.details-cta-intro {
  color: var(--copy);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  line-height: 1.56;
  text-align: left;
}

.measurement-standards {
  color: rgba(235, 236, 231, 0.66);
  font-size: 0.86em;
  font-style: italic;
  white-space: nowrap;
}

.details-note {
  display: block;
  margin-top: 0.45rem;
  color: rgba(244, 244, 239, 0.72);
  font-size: clamp(0.72rem, 0.8vw, 0.84rem);
  line-height: 1.45;
  text-align: left;
}

.interactive-measurements {
  display: grid;
  gap: 0.62rem;
  max-width: 34rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(215, 172, 118, 0.14);
}

.interactive-measurements h3 {
  color: rgba(246, 241, 234, 0.9);
  font-family: var(--font-body);
  font-size: clamp(0.74rem, 0.88vw, 0.84rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.interactive-measurements p {
  color: rgba(235, 236, 231, 0.74);
  font-size: clamp(0.82rem, 0.9vw, 0.94rem);
  line-height: 1.5;
  text-align: left;
}

.interactive-measurements .cta-button {
  width: min(100%, 19.5rem);
}

.details-chart {
  position: relative;
  display: grid;
  gap: clamp(1rem, 2.5vw, var(--space-l));
  margin: 0;
  background: transparent;
}

.details-chart-link {
  position: relative;
  display: block;
  color: inherit;
  cursor: zoom-in;
}

.details-chart-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(215, 172, 118, 0.08), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.details-chart-link:hover::after,
.details-chart-link:focus-visible::after {
  opacity: 1;
}

.details-chart img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  opacity: 0.92;
}

.chart-expand-hint {
  display: none;
}

@media (max-width: 767px) {
  .details-chart {
    gap: 0.88rem;
  }

  .details-chart-link {
    order: 1;
  }

  .details-copy-top {
    gap: 0.65rem;
    padding-top: 0;
  }

  .details-cta-intro {
    font-size: clamp(0.94rem, 3.9vw, 1.02rem);
    line-height: 1.58;
  }

  .interactive-measurements {
    order: 3;
    gap: 0.55rem;
    padding-top: 0.82rem;
  }

  .interactive-measurements h3 {
    max-width: 18rem;
    font-size: clamp(0.6rem, 2.45vw, 0.68rem);
    letter-spacing: 0.12em;
    line-height: 1.42;
    white-space: normal;
    text-wrap: balance;
  }

  .interactive-measurements p {
    font-size: clamp(0.88rem, 3.7vw, 0.96rem);
    line-height: 1.48;
  }

  .interactive-measurements .cta-button {
    width: 100%;
    min-height: 52px;
    padding: 0.82rem 0.9rem;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    line-height: 1.25;
    white-space: normal;
  }

  .details-chart-link {
    overflow: hidden;
    aspect-ratio: 16 / 4.15;
  }

  .details-chart img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
  }

  .details-note {
    margin-top: 0.55rem;
    color: rgba(244, 244, 239, 0.56);
    font-size: clamp(0.68rem, 3vw, 0.78rem);
    line-height: 1.38;
  }
}

/* Measurements — how-to-read strip */
.measurement-guide {
  padding-top: 1.05rem;
  border-top: 1px solid var(--line-soft);
}

.measurement-guide-label {
  margin-bottom: 0.72rem;
  color: var(--specs-micro-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.measurement-guide-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.2vw, 1.8rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.measurement-guide-points li {
  color: var(--copy-soft);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  line-height: 1.5;
}

.measurement-guide-points li + li {
  padding-left: clamp(1rem, 2.2vw, 1.8rem);
  border-left: 1px solid var(--line-soft);
}

.measurement-guide-term {
  color: var(--text-muted);
  font-weight: 500;
}

/* Measurements — "Why isn't it flat?" accordion */
.measurement-accordion {
  border-top: 1px solid var(--line-soft);
}

.measurement-accordion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
}

.measurement-accordion-summary::-webkit-details-marker {
  display: none;
}

.measurement-accordion-summary:focus-visible {
  outline: 1px solid var(--line-gold);
  outline-offset: 4px;
}

.measurement-accordion-title {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.86vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.measurement-accordion-chevron {
  flex: none;
  width: 0.52rem;
  height: 0.52rem;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.72;
  transition: transform 220ms var(--ease-standard);
}

.measurement-accordion[open] .measurement-accordion-chevron {
  transform: translateY(2px) rotate(-135deg);
}

.measurement-accordion-body {
  display: grid;
  gap: clamp(0.95rem, 1.6vw, 1.25rem);
  padding-bottom: 1rem;
}

.measurement-accordion-intro {
  color: var(--copy-soft);
  font-size: clamp(0.86rem, 0.95vw, 0.96rem);
  line-height: 1.6;
}

.measurement-region-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}

.measurement-region {
  display: grid;
  gap: 0.42rem;
  align-content: start;
}

.measurement-region + .measurement-region {
  padding-left: clamp(1rem, 2vw, 1.6rem);
  border-left: 1px solid var(--line-soft);
}

.measurement-accordion-body .measurement-region-label {
  color: var(--gold-alt);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.measurement-region p {
  color: var(--copy-soft);
  font-size: clamp(0.78rem, 0.85vw, 0.86rem);
  line-height: 1.52;
}

/* Measurements — coming-soon editorial teaser */
.measurement-notes-teaser {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
}

.measurement-notes-label {
  margin-bottom: 0.42rem;
  color: var(--specs-kicker);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.measurement-notes-copy {
  color: var(--copy-soft);
  font-size: clamp(0.82rem, 0.92vw, 0.92rem);
  line-height: 1.55;
}

.measurement-notes-copy em {
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 767px) {
  .measurement-guide {
    order: 2;
    padding-top: 0.9rem;
  }

  .measurement-guide-label {
    margin-bottom: 0.55rem;
    font-size: clamp(0.6rem, 2.45vw, 0.66rem);
    letter-spacing: 0.14em;
  }

  .measurement-guide-points {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .measurement-guide-points li {
    font-size: clamp(0.84rem, 3.5vw, 0.92rem);
  }

  .measurement-guide-points li + li {
    padding-left: 0;
    border-left: none;
  }

  .measurement-accordion-summary {
    padding: 0.88rem 0;
  }

  .measurement-accordion-title {
    font-size: clamp(0.64rem, 2.6vw, 0.72rem);
    letter-spacing: 0.12em;
  }

  .measurement-accordion-intro {
    font-size: clamp(0.88rem, 3.7vw, 0.95rem);
  }

  .measurement-region-map {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .measurement-region + .measurement-region {
    padding-left: 0;
    padding-top: 0.85rem;
    border-left: none;
    border-top: 1px solid var(--line-soft);
  }

  .measurement-region p {
    font-size: clamp(0.84rem, 3.5vw, 0.9rem);
  }

  .measurement-notes-teaser {
    padding-top: 0.95rem;
  }

  .measurement-notes-label {
    font-size: clamp(0.6rem, 2.45vw, 0.66rem);
    letter-spacing: 0.14em;
  }

  .measurement-notes-copy {
    font-size: clamp(0.84rem, 3.5vw, 0.92rem);
  }
}

.specs-panel {
  position: relative;
  overflow: hidden;
  margin-top: clamp(1.6rem, 3.4vw, 3rem);
  padding-top: clamp(1.2rem, 2.5vw, 2rem);
  border-top: 1px solid rgba(215, 172, 118, 0.14);
}

.specs-panel::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(215, 172, 118, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 172, 118, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 74% 12%, black, transparent 62%);
  opacity: 0.26;
}

.specs-panel-header,
.specs-grid-refined {
  position: relative;
  z-index: 1;
}

.specs-panel-header-simple {
  margin-bottom: 1.2rem;
}

.spec-panel-kicker {
  margin: 0;
  color: rgba(246, 241, 234, 0.88);
  font-size: clamp(0.82rem, 0.95vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.26em;
}

.specs-grid-refined {
  display: grid;
  gap: 1.5rem;
}

.spec-group {
  min-width: 0;
}

.spec-label {
  margin-bottom: 0.48rem;
  color: var(--specs-kicker);
  font-size: clamp(0.79rem, 0.9vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.23em;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.28);
}

.spec-lines-refined {
  display: grid;
  gap: 0;
}

.spec-lines-refined p {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.18rem;
  margin: 0;
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(215, 172, 118, 0.1);
  color: var(--copy);
  font-size: clamp(0.88rem, 0.92vw, 0.96rem);
  line-height: 1.42;
  text-align: left;
}

.spec-lines-refined p:first-child {
  padding-top: 0;
}

.spec-lines-refined p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.spec-lines-refined span {
  color: var(--specs-micro-label);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.technical-details-copy {
  max-width: 62rem;
  padding-top: 0;
}

.technical-details-layout {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.contact-section {
  padding-bottom: 0;
}

.contact-section .container {
  overflow: visible;
}

.contact-shell {
  display: grid;
  grid-template-areas:
    "kicker"
    "title"
    "lead"
    "form"
    "status"
    "note"
    "social"
    "socialfb";
  gap: 0.85rem;
  padding-top: clamp(1.2rem, 4vw, 1.8rem);
  border-top: 1px solid rgba(215, 172, 118, 0.18);
  background: transparent;
}

.contact-kicker {
  grid-area: kicker;
  margin: 0 0 clamp(0.55rem, 1vw, 0.9rem);
}

.contact-shell h2 {
  grid-area: title;
  max-width: 10.8em;
  color: var(--gold-dark);
  font-size: clamp(2.15rem, 8.8vw, 3rem);
  line-height: 1.02;
  text-align: left;
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.34);
  text-wrap: balance;
}

.contact-lead {
  grid-area: lead;
  max-width: 39rem;
  margin-top: clamp(0.7rem, 1.2vw, 1rem);
  color: var(--copy);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.62;
  text-align: left;
}

.contact-form {
  grid-area: form;
  width: min(100%, 39rem);
  margin-top: clamp(0.8rem, 1.4vw, 1.25rem);
}

.contact-website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.contact-consent {
  display: flex;
  width: min(100%, 39rem);
  align-items: flex-start;
  gap: 0.58rem;
  margin-top: 0.8rem;
  color: var(--copy-soft);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: left;
}

.contact-consent input {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin: 0.18rem 0 0;
  accent-color: var(--gold);
}

.contact-input,
.contact-submit {
  min-height: 56px;
  border-radius: 10px;
}

.contact-input {
  width: 100%;
  border: 1px solid rgba(215, 172, 118, 0.28);
  background: rgba(8, 8, 8, 0.34);
  color: var(--text);
  padding: 0.95rem 1.1rem;
  box-shadow: none;
}

.contact-input::placeholder {
  color: rgba(246, 241, 234, 0.45);
}

.contact-input:focus,
.contact-input:focus-visible,
.contact-submit:focus,
.contact-submit:focus-visible {
  outline: 0;
  border-color: rgba(215, 172, 118, 0.72);
  box-shadow:
    0 0 0 1px rgba(215, 172, 118, 0.38),
    0 0 0 4px rgba(215, 172, 118, 0.075);
}

/* Keep browser autofill on-theme instead of the default yellow fill */
.contact-input:-webkit-autofill,
.contact-input:-webkit-autofill:hover,
.contact-input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 1000px #0c0a09 inset;
  box-shadow: 0 0 0 1000px #0c0a09 inset;
  caret-color: var(--text);
  transition: background-color 9999s ease-in-out 0s;
}

.contact-input:-webkit-autofill:focus,
.contact-input:-webkit-autofill:focus-visible {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow:
    0 0 0 1000px #0c0a09 inset,
    0 0 0 1px rgba(215, 172, 118, 0.38),
    0 0 0 4px rgba(215, 172, 118, 0.075);
  box-shadow:
    0 0 0 1000px #0c0a09 inset,
    0 0 0 1px rgba(215, 172, 118, 0.38),
    0 0 0 4px rgba(215, 172, 118, 0.075);
  caret-color: var(--text);
}

.contact-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: 1px solid rgba(240, 197, 143, 0.48);
  background:
    linear-gradient(180deg, rgba(240, 197, 143, 0.15), rgba(151, 102, 49, 0.08)),
    rgba(8, 7, 6, 0.42);
  color: rgb(255, 248, 238);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  padding: 0.95rem 1.35rem;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.contact-submit:hover {
  border-color: rgba(240, 197, 143, 0.86);
  background:
    linear-gradient(180deg, rgba(240, 197, 143, 0.22), rgba(151, 102, 49, 0.14)),
    rgba(14, 11, 9, 0.62);
  color: rgb(255, 255, 255);
  transform: translateY(-2px);
}

.form-status {
  grid-area: status;
  width: min(100%, 39rem);
  min-height: 1.35rem;
  color: rgba(230, 231, 226, 0.72);
  font-size: 0.88rem;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: rgba(164, 214, 168, 0.95);
}

.form-status.is-error {
  color: rgba(235, 146, 128, 0.95);
}

.contact-note {
  grid-area: note;
  margin-top: clamp(0.55rem, 1vw, 0.9rem);
  color: var(--copy-soft);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
}

.contact-social {
  grid-area: social;
  margin-top: 0.3rem;
  color: var(--copy-soft);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
}

.contact-social-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  vertical-align: -0.22em;
  color: var(--gold-alt);
}

.contact-social-fb {
  grid-area: socialfb;
  margin-top: 0;
}

.contact-social-link {
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.18em;
}

.contact-consent a,
.contact-note a,
.privacy-block a {
  color: rgba(223, 180, 122, 0.92);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(223, 180, 122, 0.42);
  text-underline-offset: 0.18em;
}

.contact-consent a:hover,
.contact-consent a:focus-visible,
.contact-note a:hover,
.contact-note a:focus-visible,
.privacy-block a:hover,
.privacy-block a:focus-visible {
  color: var(--gold-bright);
  text-decoration-color: currentColor;
}

.privacy-page main {
  min-height: calc(100vh - var(--header-height));
}

.privacy-section {
  padding-top: calc(var(--header-height) + clamp(4.4rem, 11vw, 7rem));
}

.privacy-content {
  display: grid;
  max-width: 820px;
  gap: clamp(1.45rem, 3vw, 2.2rem);
}

.privacy-content h1 {
  max-width: 11ch;
  color: var(--gold-dark);
  font-size: clamp(2.55rem, 8vw, 4.6rem);
  line-height: 0.98;
  text-wrap: balance;
}

.privacy-lead {
  max-width: 42rem;
  color: var(--copy);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.7;
}

.privacy-block {
  display: grid;
  gap: 0.65rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(215, 172, 118, 0.14);
}

.privacy-block h2 {
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.privacy-block p,
.privacy-block li {
  color: var(--copy);
  font-size: clamp(0.96rem, 1vw, 1.05rem);
  line-height: 1.7;
}

.privacy-block ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-left: 1.2rem;
}

.privacy-block a {
  color: rgba(223, 180, 122, 0.92);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(223, 180, 122, 0.42);
  text-underline-offset: 0.18em;
}

body > footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(215, 172, 118, 0.12);
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(7, 7, 7, 1)),
    var(--bg-footer);
  color: rgba(246, 241, 234, 0.66);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.5;
  padding: var(--space-l) var(--container-pad);
  text-align: center;
}

body > footer p {
  color: inherit;
  text-align: center;
}

body > footer p + p {
  margin-top: var(--space-xs);
}

.footer-origin {
  color: rgba(223, 180, 122, 0.74);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.footer-company {
  color: rgba(246, 241, 234, 0.56);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.footer-company a {
  color: rgba(223, 180, 122, 0.72);
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: rgba(223, 180, 122, 0.26);
  text-underline-offset: 0.18em;
}

.footer-company a:hover,
.footer-company a:focus-visible {
  color: var(--gold-bright);
  text-decoration-color: currentColor;
}

.footer-flag {
  display: inline-block;
  margin-left: 0.25em;
}

@media (min-width: 900px) {
  body > footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding-block: 1.15rem;
    color: rgba(246, 241, 234, 0.56);
    font-size: 0.82rem;
    letter-spacing: 0.01em;
  }

  body > footer p {
    margin: 0;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: 1.4;
  }

  body > footer p + p {
    margin-top: 0;
  }

  .footer-origin,
  .footer-company {
    text-align: center;
    white-space: nowrap;
  }

  .footer-origin {
    color: rgba(223, 180, 122, 0.74);
  }

  .footer-company {
    color: rgba(246, 241, 234, 0.56);
  }

  .footer-company::before,
  .footer-company::after {
    content: "|";
    display: inline-block;
    margin-inline: 0.58rem;
    color: rgba(223, 180, 122, 0.52);
  }

  body > footer p:last-child {
    color: rgba(246, 241, 234, 0.66);
    text-align: center;
    white-space: nowrap;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(3, 3, 3, 0.86);
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
}

#lightbox-image {
  position: relative;
  z-index: 10001;
  display: block;
  width: auto;
  height: auto;
  max-width: min(94vw, 1440px);
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
  cursor: default;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(223, 180, 122, 0.16);
}

.close-button {
  position: fixed;
  top: clamp(16px, 3vw, 34px);
  right: clamp(16px, 3vw, 34px);
  z-index: 10002;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(223, 180, 122, 0.2);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  color: rgba(246, 241, 234, 0.86);
  font-size: 2rem;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.close-button:hover,
.close-button:focus-visible {
  border-color: rgba(240, 197, 143, 0.5);
  background: rgba(12, 12, 12, 0.9);
  color: var(--gold-bright);
}

.lightbox.is-flip-opening #lightbox-image,
.lightbox.is-flip-closing #lightbox-image {
  opacity: 0;
}

.lightbox-zoom-clone {
  position: fixed;
  z-index: 10003;
  display: block;
  margin: 0;
  object-fit: contain;
  pointer-events: none;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(223, 180, 122, 0.16);
  transition:
    left var(--reqal-flip-zoom-speed) var(--reqal-flip-zoom-ease),
    top var(--reqal-flip-zoom-speed) var(--reqal-flip-zoom-ease),
    width var(--reqal-flip-zoom-speed) var(--reqal-flip-zoom-ease),
    height var(--reqal-flip-zoom-speed) var(--reqal-flip-zoom-ease),
    border-radius var(--reqal-flip-zoom-speed) var(--reqal-flip-zoom-ease),
    box-shadow var(--reqal-flip-zoom-speed) ease;
  will-change: left, top, width, height, border-radius;
}

.v3-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.16, 0.7, 0.2, 1);
}

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

.editorial-card.v3-reveal {
  opacity: 0.4;
  transform: translateY(16px);
}

.editorial-card.v3-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.editorial-card:nth-child(2) {
  transition-delay: 80ms;
}

.editorial-card:nth-child(3) {
  transition-delay: 160ms;
}

.editorial-card:nth-child(4) {
  transition-delay: 240ms;
}

.editorial-card:nth-child(5) {
  transition-delay: 320ms;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

  .lightbox-zoom-clone {
    transition-duration: 1ms;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content > .hero-kicker,
  .hero-content > h1,
  .hero-content > p,
  .hero-content > .hero-actions {
    opacity: 0;
    animation: heroRise 900ms cubic-bezier(0.16, 0.7, 0.2, 1) both;
  }

  .hero-content > .hero-kicker {
    animation-delay: 150ms;
  }

  .hero-content > h1 {
    animation-delay: 320ms;
  }

  .hero-content > p {
    animation-delay: 550ms;
  }

  .hero-content > .hero-actions {
    animation-delay: 720ms;
  }
}

@media (min-width: 768px) {
  :root {
    --container-pad: clamp(32px, 5vw, 56px);
  }

  header nav {
    width: min(calc(100% - 48px), var(--content-width));
  }

  .nav-links {
    padding-inline: var(--container-pad);
  }

  .hero-section {
    min-height: 100svh;
    min-height: 100dvh;
    overflow: hidden;
    padding:
      calc(var(--header-height) + 2rem)
      max(24px, 7vw)
      clamp(2.2rem, 6vh, 3.4rem);
    background-position: center, center, 67% center;
  }

  .hero-lead-mobile {
    display: none;
  }

  .hero-lead-desktop {
    display: block;
  }

  .hero-kicker-mobile {
    display: none;
  }

  .hero-kicker-desktop {
    display: block;
  }

  .hero-title-mobile {
    display: none;
  }

  .hero-title-desktop {
    display: block;
  }

  .hero-content h1 {
    max-width: 10.2ch;
    font-size: clamp(2.62rem, 10.4vw, 3.46rem);
  }

  .hero-actions .cta-button {
    width: auto;
  }

  .editorial-showcase {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .editorial-showcase-track {
    grid-auto-columns: clamp(15.5rem, 25vw, 22rem);
    gap: clamp(0.65rem, 1vw, 1rem);
  }

  .craft-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: inline-grid;
    width: 2.15rem;
    height: 2.15rem;
    place-items: center;
    border: 1px solid rgba(240, 197, 143, 0.13);
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.22);
    color: rgba(246, 241, 234, 0.5);
    font-family: var(--font-body);
    font-size: 1.55rem;
    line-height: 1;
    backdrop-filter: blur(6px);
    transform: translateY(-50%);
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease,
      transform 180ms ease;
  }

  .craft-gallery-arrow:hover {
    border-color: rgba(240, 197, 143, 0.34);
    background: rgba(12, 12, 12, 0.48);
    color: rgba(240, 197, 143, 0.82);
    transform: translateY(calc(-50% - 1px));
  }

  .craft-gallery-arrow-prev {
    left: 0.75rem;
  }

  .craft-gallery-arrow-next {
    right: 0.75rem;
  }

  .chart-expand-hint {
    position: absolute;
    right: 1rem;
    bottom: 0.9rem;
    z-index: 2;
    display: block;
    padding: 0.45rem 0.62rem;
    border: 1px solid rgba(215, 172, 118, 0.25);
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.72);
    color: rgba(246, 241, 234, 0.82);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1;
    opacity: 0;
    text-transform: uppercase;
    transform: translateY(4px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .details-chart-link:hover .chart-expand-hint,
  .details-chart-link:focus-visible .chart-expand-hint {
    opacity: 1;
    transform: translateY(0);
  }

  .main-section {
    padding-block: clamp(92px, 11vw, 132px);
  }

  .main-section::before {
    left: var(--container-pad);
    right: var(--container-pad);
  }
}

@media (min-width: 1024px) {
  :root {
    --container-pad: 56px;
  }

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

  header nav {
    width: min(90%, var(--content-width));
    padding-block: 0.55rem;
  }

  .logo img {
    width: 116px;
  }

  .menu-icon {
    display: none;
  }

  .nav-links {
    position: static;
    width: auto;
    max-height: none;
    flex-direction: row;
    align-items: center;
    gap: clamp(1.05rem, 2vw, 1.7rem);
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    visibility: visible;
  }

  .nav-links a {
    padding: 0.45rem 0 0.5rem;
    font-size: 0.76rem;
    text-align: left;
  }

  .nav-links a::after {
    left: 0;
    bottom: 0.18rem;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
  }

  .nav-links a:hover::after,
  .nav-links a.is-active::after,
  .nav-links a[aria-current="true"]::after {
    transform: scaleX(1);
  }

  .hero-section {
    min-height: 100svh;
    grid-template-columns: minmax(0, 660px) minmax(0, 1fr);
    align-items: center;
    align-content: center;
    gap: clamp(1.5rem, 4vw, 5.5rem);
    padding:
      calc(var(--header-height) + clamp(3.4rem, 6vh, 5.2rem))
      max(24px, calc((100vw - var(--content-width)) / 2))
      clamp(3.4rem, 6vh, 5.2rem);
    background-image:
      linear-gradient(90deg, rgba(5, 4, 3, 0.72) 0%, rgba(5, 4, 3, 0.52) 33%, rgba(5, 4, 3, 0.14) 58%, rgba(5, 4, 3, 0.06) 100%),
      linear-gradient(180deg, rgba(5, 4, 3, 0.28) 0%, rgba(5, 4, 3, 0.1) 48%, rgba(5, 4, 3, 0.58) 100%),
      url("../images/reqal-hero-v18.webp");
    background-position: center;
  }

  .hero-content {
    grid-column: 1;
    max-width: 660px;
    gap: clamp(1.05rem, 2.2vh, 1.55rem);
  }

  .hero-content h1 {
    max-width: 11.4ch;
    font-size: clamp(2.7rem, 5.55vw, 4.75rem);
  }

  .hero-content .hero-lead-desktop {
    max-width: 36.5rem;
  }

  .sound-kicker {
    text-align: center;
  }

  .sound-section h2 {
    max-width: 14.8em;
    margin-inline: auto;
    font-size: clamp(2.45rem, 4.25vw, 4.55rem);
    line-height: 0.98;
    text-align: center;
  }

  .sound-section .section-copy {
    margin-inline: auto;
    text-align: center;
  }

  .sound-section .section-copy p {
    text-align: center;
    text-wrap: balance;
  }

  .sound-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(1.8rem, 3.4vw, 3.4rem);
    padding-top: clamp(1.1rem, 1.6vw, 1.5rem);
    border-top: 1px solid var(--line-soft);
  }

  .sound-card {
    padding: 0 0 0 clamp(1.5rem, 2.6vw, 2.8rem);
    border-top: 0;
    border-left: 1px solid var(--line-soft);
  }

  .sound-card:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .refinement-anatomy-section {
    min-height: auto;
    background-color: var(--bg-refinement);
    background-image:
      linear-gradient(180deg, rgba(11, 12, 16, 0.96), rgba(11, 12, 16, 0.92)),
      radial-gradient(circle at 78% 38%, rgba(223, 180, 122, 0.07), transparent 34%),
      radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.018), transparent 28%);
    background-position: center;
    background-size: cover;
  }

  .refinement-anatomy-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
      linear-gradient(rgba(215, 172, 118, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(215, 172, 118, 0.035) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at 72% 48%, rgba(0, 0, 0, 0.55), transparent 66%);
    opacity: 0.42;
  }

  .listener-system-container {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(1.6rem, 2.4vw, 2.4rem) clamp(2.4rem, 6vw, 6rem);
    align-items: center;
  }

  .listener-system-copy h2 {
    font-size: clamp(2.45rem, 4.25vw, 4.55rem);
    line-height: 0.98;
  }

  .refinement-system-panel {
    display: block;
    overflow: hidden;
    padding: clamp(0.68rem, 1.15vw, 0.9rem);
    border: 1px solid rgba(215, 172, 118, 0.12);
    border-radius: 24px;
    background:
      radial-gradient(circle at 44% 36%, rgba(215, 172, 118, 0.1), transparent 34%),
      linear-gradient(180deg, rgba(13, 11, 10, 0.7), rgba(7, 6, 5, 0.76));
    box-shadow:
      0 28px 72px rgba(0, 0, 0, 0.28),
      inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  }

  .refinement-system-visual {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background:
      radial-gradient(ellipse at 40% 48%, rgba(215, 172, 118, 0.18), transparent 54%),
      radial-gradient(ellipse at 68% 46%, rgba(215, 172, 118, 0.06), transparent 46%),
      linear-gradient(180deg, rgba(7, 6, 5, 0.74), rgba(7, 6, 5, 0.44));
  }

  .refinement-system-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    object-fit: cover;
    object-position: center;
  }

  .refinement-copy-points {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    margin-top: 0;
    padding-top: clamp(1.1rem, 1.6vw, 1.5rem);
    border-top: 1px solid var(--line-soft);
    column-gap: clamp(1.8rem, 3.4vw, 3.4rem);
  }

  .refinement-point {
    padding: 0 0 0 clamp(1.5rem, 2.6vw, 2.8rem);
    border-top: 0;
    border-left: 1px solid var(--line-soft);
  }

  .refinement-point:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .story-section .container {
    display: grid;
    grid-template-columns: minmax(500px, 1.36fr) minmax(0, 0.64fr);
    gap: clamp(2rem, 4.2vw, 4.8rem);
    align-items: start;
  }

  .story-section {
    display: grid;
    min-height: 132svh;
    align-items: center;
  }

  .story-heading {
    position: sticky;
    top: calc(var(--header-height) + 3rem);
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin: 0;
  }

  .story-section h2 {
    font-size: clamp(2.45rem, 4.25vw, 4.55rem);
    line-height: 0.98;
  }

  .story-section .section-copy {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    padding-top: 0;
  }

  .story-section .section-copy::before {
    content: none;
  }

  @media (max-height: 820px) {
    .story-section .section-copy {
      padding-top: clamp(6.9rem, 10vh, 7.8rem);
    }
  }

  .design-section .container {
    display: grid;
    grid-template-columns: minmax(27rem, 0.78fr) minmax(0, 1.08fr);
    grid-template-areas:
      "title copy"
      "gallery gallery";
    gap: 0.55rem clamp(2.2rem, 4.2vw, 4.9rem);
    align-items: end;
  }

  .design-section .craft-kicker {
    grid-area: title;
    align-self: start;
    margin: 0;
  }

  .design-section h2 {
    grid-area: title;
    margin: 0;
    padding-top: clamp(1.55rem, 2.2vw, 2.05rem);
    font-size: clamp(2.45rem, 4.25vw, 4.55rem);
    line-height: 0.98;
  }

  .design-section .craft-copy {
    grid-area: copy;
    align-self: end;
    justify-self: start;
    width: min(100%, 46rem);
    max-width: 46rem;
    padding-left: clamp(1.2rem, 1.55vw, 1.55rem);
    padding-bottom: 0.15rem;
  }

  .design-section .craft-copy p {
    max-width: 44.5rem;
    line-height: 1.66;
  }

  .design-section .craft-copy::before {
    content: "";
    position: absolute;
    top: 0.2rem;
    left: 0;
    width: 1px;
    height: calc(100% - 0.4rem);
    background: linear-gradient(
      180deg,
      rgba(159, 122, 87, 0.02),
      rgba(159, 122, 87, 0.32) 24%,
      rgba(159, 122, 87, 0.16) 72%,
      rgba(159, 122, 87, 0)
    );
  }

  .editorial-showcase {
    grid-area: gallery;
    margin-top: clamp(1rem, 2.2vw, 1.7rem);
  }

  .details-section h2 {
    width: 100%;
    max-width: 100%;
    margin-bottom: clamp(0.75rem, 1.2vw, 1.25rem);
    overflow: visible;
    font-size: clamp(2.45rem, 4.25vw, 4.55rem);
    line-height: 0.98;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .details-cta {
    display: grid;
    gap: clamp(0.85rem, 1.4vw, 1.15rem);
    margin-top: 0.2rem;
    overflow: visible;
    background-image: radial-gradient(circle at 78% 44%, rgba(159, 122, 87, 0.065), transparent 34rem);
  }

  .details-copy-top {
    max-width: 68rem;
    padding-top: clamp(1rem, 1.8vw, 1.45rem);
    gap: clamp(0.55rem, 1vw, 0.85rem);
  }

  .details-cta-intro {
    max-width: none;
    color: rgba(235, 236, 231, 0.86);
    font-size: clamp(0.94rem, 1.02vw, 1.06rem);
    line-height: 1.48;
  }

  .details-chart {
    overflow: visible;
  }

  .details-chart-link {
    width: min(100%, 72rem);
    margin-inline: auto;
    overflow: hidden;
    aspect-ratio: 2015 / 720;
  }

  .details-chart img {
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .details-note {
    margin-top: clamp(0.8rem, 1.25vw, 1.1rem);
    color: rgba(244, 244, 239, 0.72);
    font-size: clamp(0.8rem, 0.84vw, 0.9rem);
    line-height: 1.45;
    text-align: center;
    white-space: normal;
  }

  .interactive-measurements {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: clamp(1.35rem, 2.4vw, 2.6rem);
    width: min(100%, 58rem);
    max-width: 100%;
    margin-top: 0;
    margin-inline: 0;
    padding:
      clamp(0.72rem, 0.9vw, 0.9rem)
      clamp(0.9rem, 1.25vw, 1.2rem);
    border: 1px solid rgba(215, 172, 118, 0.14);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.74), rgba(7, 7, 8, 0.6)),
      rgba(7, 7, 8, 0.42);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(2px);
  }

  .interactive-measurements p {
    max-width: 44rem;
    color: rgba(235, 236, 231, 0.74);
    font-size: clamp(0.78rem, 0.82vw, 0.88rem);
    line-height: 1.42;
  }

  .interactive-measurements .cta-button {
    width: auto;
    min-width: 16.5rem;
    min-height: 44px;
    padding: 0.72rem 1rem;
  }

  .technical-details-section h2 {
    max-width: 12.5em;
    white-space: normal;
    text-wrap: balance;
  }

  .technical-details-layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .technical-details-layout .specs-panel {
    margin-top: clamp(1.4rem, 2.6vw, 2.3rem);
  }

  .details-item .specs-grid-refined {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.4rem, 3vw, 3rem);
  }

  .spec-lines-refined p {
    grid-template-columns: minmax(5.85rem, 0.52fr) minmax(0, 1.48fr);
    gap: 0.55rem;
  }

  .contact-section {
    padding-bottom: clamp(3.8rem, 6vw, 5.8rem);
  }

  .contact-shell {
    width: 100%;
    margin-inline: 0;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    grid-template-areas:
      "kicker lead"
      "title form"
      "title status"
      "title note"
      "title social"
      "title socialfb";
    gap: clamp(0.9rem, 1.5vw, 1.25rem) clamp(3rem, 7vw, 7.5rem);
    align-items: start;
    padding-block: clamp(1.8rem, 3.2vw, 2.8rem);
    border-bottom: 1px solid rgba(215, 172, 118, 0.1);
  }

  .contact-shell h2 {
    max-width: 8.8em;
    margin-bottom: 0;
    font-size: clamp(2.55rem, 4.1vw, 4.35rem);
    line-height: 0.98;
  }

  .contact-kicker {
    margin-bottom: 0.15rem;
  }

  .contact-lead {
    max-width: 42rem;
    margin-top: 0;
  }

  .contact-form,
  .contact-consent,
  .form-status {
    width: 100%;
    max-width: 42rem;
  }

  .contact-form {
    margin-top: clamp(0.35rem, 0.7vw, 0.7rem);
  }

  .contact-note {
    max-width: 42rem;
    margin-top: clamp(0.9rem, 1.4vw, 1.35rem);
  }

  .contact-social {
    max-width: 42rem;
    margin-top: 0;
  }

  .contact-social-fb {
    margin-top: -0.15rem;
  }

  .contact-form-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .contact-submit {
    min-width: 10.8rem;
    white-space: nowrap;
  }

}

@media (min-width: 1280px) {
  :root {
    --container-pad: 64px;
  }
}

/* Craft gallery editorial trial: stronger desktop image hierarchy. */
@media (min-width: 1024px) {
  .editorial-showcase-viewport {
    overflow: visible;
  }

  .editorial-showcase-track {
    width: 100%;
    min-width: 0;
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.78fr) minmax(0, 0.78fr);
    grid-template-rows: repeat(2, clamp(9.8rem, 12vw, 11rem));
    gap: clamp(0.72rem, 1vw, 1rem);
  }

  .editorial-showcase {
    margin-top: clamp(0.55rem, 1.2vw, 1rem);
  }

  .editorial-card {
    min-width: 0;
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 10px;
  }

  .editorial-card img {
    border-radius: 10px;
  }

  .editorial-card:nth-child(3) {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .editorial-card:nth-child(3) img {
    object-position: 54% 50%;
  }

  .craft-gallery-arrow {
    display: none;
  }
}

/* Visual trial 2026-06-18: quieter image overlays and warmer late-page media. */
@media (min-width: 768px) {
  .hero-section {
    background-image:
      linear-gradient(90deg, rgba(5, 4, 3, 0.78) 0%, rgba(5, 4, 3, 0.58) 34%, rgba(5, 4, 3, 0.2) 60%, rgba(5, 4, 3, 0.1) 100%),
      linear-gradient(180deg, rgba(5, 4, 3, 0.36) 0%, rgba(5, 4, 3, 0.16) 48%, rgba(5, 4, 3, 0.64) 100%),
      url("../images/reqal-hero-v18.webp");
  }

}

.details-chart img {
  opacity: 1;
  filter: none;
}

.details-chart-link::after {
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.04), rgba(5, 4, 3, 0.12)),
    radial-gradient(circle at 52% 48%, rgba(215, 172, 118, 0.055), transparent 58%);
  opacity: 0;
}

@media (max-width: 767px) {
  .refinement-anatomy-section {
    background-image:
      linear-gradient(90deg, rgba(5, 4, 3, 0.76) 0%, rgba(5, 4, 3, 0.62) 50%, rgba(5, 4, 3, 0.36) 100%),
      linear-gradient(180deg, rgba(6, 5, 4, 0.34) 0%, rgba(6, 5, 4, 0.44) 46%, rgba(6, 5, 4, 0.74) 100%),
      url("../images/listener-acoustic-system-v7.webp");
    background-position: center, center, calc(18% + var(--refinement-mobile-bg-x)) calc(50% + var(--refinement-mobile-bg-base-y) + var(--refinement-mobile-bg-y));
    background-size: cover, cover, auto 140%;
  }

}

/* Restore the subtle section atmosphere behind content. */
.main-section:not(.hero-section) {
  isolation: isolate;
}

.main-section:not(.hero-section)::before {
  z-index: 1;
}

.main-section:not(.hero-section)::after {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 0;
  opacity: 0.34;
  filter: blur(10px);
  transform: translate3d(var(--ambient-local-x, 0), var(--ambient-local-y, 0), 0) scale(1.08);
  pointer-events: none;
}

.main-section:not(.hero-section) > .container,
.listener-system-container {
  position: relative;
  z-index: 2;
}

.sound-section::after {
  background:
    radial-gradient(ellipse 58rem 38rem at 26% 66%, rgba(223, 180, 122, 0.13), rgba(223, 180, 122, 0.042) 42%, transparent 78%),
    radial-gradient(ellipse 44rem 31rem at 84% 22%, rgba(255, 255, 255, 0.022), transparent 74%);
}

.listener-system-section::after {
  background:
    radial-gradient(circle 50rem at 22% 48%, rgba(223, 180, 122, 0.12), rgba(223, 180, 122, 0.038) 42%, transparent 76%),
    radial-gradient(ellipse 38rem 26rem at 10% 78%, rgba(255, 255, 255, 0.018), transparent 72%);
}

.story-section::after {
  background:
    radial-gradient(ellipse 64rem 42rem at 76% 72%, rgba(223, 180, 122, 0.12), rgba(223, 180, 122, 0.04) 42%, transparent 78%),
    radial-gradient(ellipse 44rem 31rem at 12% 28%, rgba(255, 255, 255, 0.022), transparent 74%);
}

.design-section::after {
  background:
    radial-gradient(ellipse 54rem 32rem at 28% 18%, rgba(223, 180, 122, 0.13), rgba(223, 180, 122, 0.04) 42%, transparent 76%),
    radial-gradient(ellipse 38rem 24rem at 58% 10%, rgba(255, 255, 255, 0.02), transparent 72%);
}

.details-section::after {
  background:
    radial-gradient(ellipse 68rem 42rem at 36% 62%, rgba(223, 180, 122, 0.15), rgba(223, 180, 122, 0.048) 42%, transparent 78%),
    radial-gradient(ellipse 48rem 32rem at 84% 28%, rgba(255, 255, 255, 0.025), transparent 74%);
}

.contact-section::after {
  background:
    radial-gradient(ellipse 58rem 38rem at 22% 46%, rgba(223, 180, 122, 0.14), rgba(223, 180, 122, 0.044) 42%, transparent 76%),
    radial-gradient(ellipse 34rem 24rem at 8% 78%, rgba(255, 255, 255, 0.018), transparent 74%);
}

@media (max-width: 680px) {
  .main-section:not(.hero-section)::after {
    inset: -8%;
    opacity: 0.27;
    filter: blur(9px);
  }

  .listener-system-section::after,
  .contact-section::after {
    opacity: 0;
  }
}

/* Mobile density pass: keep the hero dramatic, tighten the product story below it. */
@media (max-width: 767px) {
  :root {
    --text-size: 1rem;
  }

  body {
    line-height: 1.58;
  }

  .main-section:not(.hero-section) {
    padding-block: clamp(68px, 18vw, 80px);
  }

  .refinement-anatomy-section {
    min-height: auto;
    padding-block: clamp(72px, 18vw, 82px);
  }

  .section-copy {
    gap: 0.95rem;
  }

  .sound-kicker,
  .refinement-kicker,
  .story-kicker,
  .craft-kicker,
  .specs-kicker,
  .contact-kicker {
    margin-bottom: 0.75rem;
  }

  .sound-section h2,
  .listener-system-copy h2,
  .story-section h2,
  .design-section h2,
  .details-section h2,
  .contact-shell h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 8vw, 2rem);
    line-height: 1.05;
  }

  .listener-system-copy h2 {
    max-width: 11.9em;
  }

  .hero-content .hero-lead {
    font-size: 1rem;
    line-height: 1.56;
  }

  .sound-section .section-copy,
  .craft-copy {
    gap: 0.95rem;
  }

  .sound-section .section-copy p,
  .listener-system-copy p,
  .story-section .section-copy p,
  .craft-copy p,
  .contact-lead,
  .privacy-lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  .listener-system-copy p + p,
  .craft-copy p + p {
    margin-top: 0.95rem;
  }

  .story-section .section-copy::before {
    margin-bottom: 1rem;
  }

  .sound-card-grid {
    gap: 1.15rem;
    margin-top: 1.55rem;
  }

  .sound-card {
    padding-top: 1rem;
  }

  .sound-card h3 {
    margin-bottom: 0.45rem;
  }

  .sound-card p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .refinement-copy-points {
    margin-top: 1.2rem;
  }

  .refinement-point {
    padding-block: 0.78rem;
  }

  .editorial-showcase {
    margin-top: 1.55rem;
    overflow: hidden;
  }

  .technical-details-section .details-copy-top {
    padding-top: 0.9rem;
  }

  .specs-panel {
    margin-top: 1.35rem;
    padding-top: 1rem;
  }

  .contact-shell {
    gap: 0.75rem;
  }
}
