@charset "UTF-8";

/* Showroom V3 — Night Editorial Product Cinema.
   This layer only affects the public showroom shell. Independent case products
   keep their own visual language in styles.css. */

.showroom-page {
  --cinema-black: #090909;
  --cinema-panel: #121211;
  --cinema-paper: #f1efe8;
  --cinema-muted: #9b9a94;
  --cinema-dim: #6f6e69;
  --cinema-line: rgba(241, 239, 232, .16);
  --cinema-accent: #d7f36c;
  color: var(--cinema-paper);
  background: var(--cinema-black);
  overflow-x: hidden;
  overflow-y: auto;
}

.showroom-page::selection {
  color: var(--cinema-black);
  background: var(--cinema-accent);
}

.showroom-page .showroom-main {
  width: 100%;
  margin: 0;
  padding: 0 0 52px;
}

.showroom-page .cinema-nav {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 50%;
  width: min(1480px, calc(100% - 64px));
  height: 76px;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  background: transparent;
  border-bottom: 1px solid rgba(241, 239, 232, .14);
  backdrop-filter: none;
}

.cinema-nav .brand {
  gap: 12px;
  color: var(--cinema-paper);
  font-size: 12px;
  letter-spacing: .13em;
}

.cinema-nav .brand span {
  color: rgba(241, 239, 232, .52);
  font-weight: 500;
}

.cinema-nav .brand-mark {
  width: 9px;
  height: 9px;
  box-shadow: none;
  background: var(--cinema-accent);
}

.cinema-nav .nav-links {
  gap: clamp(17px, 2.2vw, 34px);
  color: rgba(241, 239, 232, .66);
  font-size: 12px;
}

.cinema-nav .nav-links a {
  position: relative;
  padding: 9px 0;
}

.cinema-nav .nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--cinema-paper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}

.cinema-nav .nav-links a:hover::after,
.cinema-nav .nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cinema-nav .nav-contact {
  color: var(--cinema-paper);
}

/* Full-bleed selected case stage */
.showroom-page .cinema-hero {
  position: relative;
  width: 100%;
  min-height: min(940px, 92vh);
  display: block;
  overflow: hidden;
  padding: 0;
  background: #111;
}

.cinema-hero::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  height: 18%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--cinema-black));
}

.showroom-page .cinema-hero-stage {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 0;
  margin: 0;
}

.showroom-page .cinema-hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: var(--cinema-paper);
  opacity: 0;
  transform: scale(1.015);
  pointer-events: none;
  transition: opacity .68s ease, transform 1.2s cubic-bezier(.2,.65,.2,1);
}

.showroom-page .cinema-hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.showroom-page .cinema-hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(.84) contrast(1.02) brightness(.76);
}

.cinema-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .92) 0%, rgba(5, 5, 5, .64) 39%, rgba(5, 5, 5, .13) 70%, rgba(5, 5, 5, .34) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, .28), transparent 28%, rgba(5, 5, 5, .25));
}

.cinema-hero-copy {
  position: absolute;
  z-index: 8;
  left: max(32px, calc((100vw - 1480px) / 2));
  bottom: 112px;
  width: min(690px, 56vw);
}

.cinema-hero-copy .eyebrow {
  color: rgba(241, 239, 232, .76);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .18em;
}

.cinema-hero-copy .eyebrow span {
  background: var(--cinema-accent);
}

.showroom-page .cinema-hero-copy h1 {
  max-width: 820px;
  margin: 24px 0 25px;
  font-size: clamp(64px, 7.2vw, 108px);
  font-weight: 620;
  line-height: .88;
  letter-spacing: -.065em;
}

.showroom-page .cinema-hero-copy h1 em {
  color: var(--cinema-paper);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.055em;
}

.showroom-page .cinema-hero-copy p {
  width: min(520px, 100%);
  color: rgba(241, 239, 232, .72);
  font-size: 16px;
  line-height: 1.72;
}

.cinema-hero-copy .hero-actions {
  margin-top: 30px;
}

.showroom-page .cinema-hero-copy .button-primary,
.showroom-page .cinema-contact .button-primary {
  min-height: 48px;
  padding: 0 19px;
  border-radius: 4px;
  color: #111;
  background: var(--cinema-accent);
  font-size: 12px;
}

.showroom-page .cinema-hero-copy .button-secondary {
  min-height: 48px;
  padding: 0 19px;
  border-radius: 4px;
  border-color: rgba(241, 239, 232, .34);
  color: var(--cinema-paper);
  background: rgba(5, 5, 5, .18);
  backdrop-filter: blur(10px);
}

.cinema-hero-copy .hero-disclaimer {
  margin-top: 17px;
  color: rgba(241, 239, 232, .48);
  font-size: 11px;
}

.showroom-page .cinema-hero-case {
  position: absolute;
  z-index: 7;
  right: max(32px, calc((100vw - 1480px) / 2));
  bottom: 116px;
  width: min(300px, 24vw);
  display: grid;
  gap: 7px;
  padding-top: 15px;
  border-top: 1px solid rgba(241, 239, 232, .42);
  color: var(--cinema-paper);
}

.cinema-hero-case small,
.cinema-hero-case em,
.cinema-hero-case b {
  display: block;
  font-style: normal;
}

.cinema-hero-case small {
  color: var(--cinema-accent);
  font-size: 10px;
  letter-spacing: .16em;
}

.cinema-hero-case strong {
  margin-top: 5px;
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 560;
  letter-spacing: -.05em;
}

.cinema-hero-case em {
  color: rgba(241, 239, 232, .58);
  font-size: 12px;
}

.cinema-hero-case b {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 650;
}

.showroom-page .cinema-hero-controls {
  position: absolute;
  z-index: 10;
  right: max(32px, calc((100vw - 1480px) / 2));
  top: 50%;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
}

.showroom-page .cinema-hero-controls button {
  width: 54px;
  height: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(241, 239, 232, .52);
  background: transparent;
}

.cinema-hero-controls button span {
  width: 20px;
  font-size: 10px;
  text-align: left;
}

.cinema-hero-controls button i {
  width: 22px;
  height: 1px;
  background: rgba(241, 239, 232, .36);
  transition: width .24s ease, background .24s ease;
}

.showroom-page .cinema-hero-controls button.active {
  color: var(--cinema-paper);
  background: transparent;
}

.cinema-hero-controls button.active i {
  width: 34px;
  background: var(--cinema-accent);
}

.cinema-hero-facts {
  position: absolute;
  z-index: 8;
  right: max(32px, calc((100vw - 1480px) / 2));
  bottom: 30px;
  display: flex;
  gap: 24px;
  color: rgba(241, 239, 232, .52);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Product-type index */
.cinema-index {
  width: min(1480px, calc(100% - 64px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 20px auto 0;
  border-top: 1px solid var(--cinema-line);
  border-bottom: 1px solid var(--cinema-line);
}

.cinema-index a {
  position: relative;
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 26px;
  border-right: 1px solid var(--cinema-line);
  text-decoration: none;
  transition: color .22s ease, background .22s ease;
}

.cinema-index a:last-child { border-right: 0; }
.cinema-index a:hover { color: var(--cinema-black); background: var(--cinema-paper); }

.cinema-index a > span {
  color: var(--cinema-accent);
  font-size: 10px;
  letter-spacing: .12em;
}

.cinema-index a:hover > span { color: #667500; }

.cinema-index strong {
  font-size: clamp(17px, 1.55vw, 23px);
  font-weight: 560;
  letter-spacing: -.035em;
}

.cinema-index small {
  color: var(--cinema-dim);
  font-size: 11px;
}

.cinema-index i {
  position: absolute;
  right: 22px;
  bottom: 22px;
  font-style: normal;
  font-size: 14px;
}

/* Editorial shelves and image-led cards */
.showroom-page .cinema-shelf,
.showroom-page .cinema-collaboration,
.showroom-page .cinema-contact {
  width: min(1480px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.showroom-page .cinema-shelf {
  margin-top: 138px;
  scroll-margin-top: 84px;
}

.showroom-page .cinema-featured { margin-top: 150px; }

.showroom-page .cinema-shelf-heading {
  align-items: start;
  margin-bottom: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--cinema-line);
}

.cinema-shelf-heading .section-kicker,
.cinema-collaboration .section-kicker,
.cinema-contact .section-kicker {
  color: var(--cinema-accent);
  font-size: 10px;
  letter-spacing: .16em;
}

.showroom-page .cinema-shelf-heading h2 {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 560;
  line-height: .96;
  letter-spacing: -.06em;
}

.cinema-shelf-note {
  width: min(390px, 34vw);
  display: grid;
  gap: 13px;
  padding-top: 3px;
}

.cinema-shelf-side {
  width: min(420px, 36vw);
  display: grid;
  justify-items: end;
  gap: 18px;
}

.cinema-shelf-side .cinema-shelf-note {
  width: 100%;
}

.shelf-navigation {
  display: flex;
  gap: 7px;
}

.shelf-navigation button,
.spotlight-arrow {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 239, 232, .24);
  border-radius: 50%;
  color: var(--cinema-paper);
  background: rgba(9, 9, 9, .62);
  font-size: 16px;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.shelf-navigation button:hover,
.shelf-navigation button:focus-visible,
.spotlight-arrow:hover,
.spotlight-arrow:focus-visible {
  color: var(--cinema-black);
  border-color: var(--cinema-accent);
  background: var(--cinema-accent);
  transform: scale(1.04);
}

.cinema-shelf-note span {
  color: rgba(241, 239, 232, .44);
  font-size: 10px;
  letter-spacing: .14em;
}

.showroom-page .cinema-shelf-note p {
  max-width: none;
  color: var(--cinema-muted);
  font-size: 13px;
  line-height: 1.72;
  text-align: left;
}

.showroom-page .cinema-track {
  gap: clamp(17px, 2vw, 30px);
  margin: 0;
  padding: 0 0 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(241, 239, 232, .24) transparent;
  cursor: grab;
  touch-action: pan-x pan-y;
  overscroll-behavior-inline: contain;
}

.showroom-page .cinema-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.showroom-page .cinema-track::-webkit-scrollbar { height: 3px; }
.showroom-page .cinema-track::-webkit-scrollbar-track { background: transparent; }
.showroom-page .cinema-track::-webkit-scrollbar-thumb { background: rgba(241, 239, 232, .24); }

.showroom-page .cinema-track .cinema-card {
  width: clamp(310px, 29vw, 430px);
  min-width: clamp(310px, 29vw, 430px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  scroll-snap-align: start;
}

.showroom-page .cinema-track .cinema-card-variant-1 {
  width: clamp(340px, 33vw, 500px);
  min-width: clamp(340px, 33vw, 500px);
}

.showroom-page .shelf-track-featured .cinema-card {
  width: clamp(520px, 58vw, 860px);
  min-width: clamp(520px, 58vw, 860px);
}

.showroom-page .shelf-track-featured .cinema-card:nth-child(even) {
  width: clamp(470px, 49vw, 720px);
  min-width: clamp(470px, 49vw, 720px);
}

/* Selected product coverflow. Depth is used only to clarify selection. */
.spotlight-section {
  width: min(1480px, calc(100% - 64px));
  margin: 150px auto 0;
  scroll-margin-top: 84px;
}

.spotlight-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 70px;
  align-items: end;
  padding-top: 18px;
  border-top: 1px solid var(--cinema-line);
}

.spotlight-heading .section-kicker { color: var(--cinema-accent); }

.spotlight-heading h2 {
  margin: 16px 0 0;
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 560;
  line-height: .93;
  letter-spacing: -.065em;
}

.spotlight-heading h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
}

.spotlight-heading > p {
  margin: 0 0 5px;
  color: var(--cinema-muted);
  font-size: 13px;
  line-height: 1.75;
}

.spotlight-shell {
  position: relative;
  height: clamp(430px, 48vw, 690px);
  margin-top: 48px;
  perspective: 1500px;
}

.spotlight-stage {
  position: absolute;
  inset: 0 76px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.spotlight-card {
  --spot-x: 0%;
  --spot-z: 0px;
  --spot-rotate: 0deg;
  --spot-scale: 1;
  position: absolute;
  z-index: 1;
  top: 3%;
  left: 50%;
  width: min(62vw, 900px);
  height: 88%;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(241, 239, 232, .14);
  border-radius: 8px;
  color: var(--cinema-paper);
  background: #151514;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .45);
  opacity: 1;
  transform: translateX(calc(-50% + var(--spot-x))) translateZ(var(--spot-z)) rotateY(var(--spot-rotate)) scale(var(--spot-scale));
  transform-style: preserve-3d;
  transform-origin: center;
  transition: transform .62s cubic-bezier(.2,.75,.2,1), opacity .42s ease, filter .42s ease, z-index 0s linear .15s;
}

.spotlight-card[data-position="-1"] { --spot-x: -42%; --spot-z: -180px; --spot-rotate: 13deg; --spot-scale: .86; z-index: 4; filter: brightness(.65) saturate(.76); }
.spotlight-card[data-position="1"] { --spot-x: 42%; --spot-z: -180px; --spot-rotate: -13deg; --spot-scale: .86; z-index: 4; filter: brightness(.65) saturate(.76); }
.spotlight-card[data-position="-2"] { --spot-x: -70%; --spot-z: -330px; --spot-rotate: 20deg; --spot-scale: .7; z-index: 2; opacity: .44; filter: brightness(.46) saturate(.65); }
.spotlight-card[data-position="2"] { --spot-x: 70%; --spot-z: -330px; --spot-rotate: -20deg; --spot-scale: .7; z-index: 2; opacity: .44; filter: brightness(.46) saturate(.65); }
.spotlight-card[data-position="-3"],
.spotlight-card[data-position="3"] { --spot-z: -520px; --spot-scale: .58; opacity: 0; pointer-events: none; }
.spotlight-card.active { z-index: 7; filter: none; }

.spotlight-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.spotlight-card.active:hover img { transform: scale(1.018); }

.spotlight-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(4,4,4,.88));
}

.spotlight-card-index,
.spotlight-card-label {
  position: absolute;
  z-index: 2;
}

.spotlight-card-index {
  top: 19px;
  right: 21px;
  color: rgba(241, 239, 232, .75);
  font-size: 10px;
  letter-spacing: .15em;
}

.spotlight-card-label {
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 6px;
  text-align: left;
}

.spotlight-card-label small {
  color: var(--cinema-accent);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.spotlight-card-label strong {
  font-size: clamp(30px, 3.5vw, 54px);
  font-weight: 570;
  line-height: .95;
  letter-spacing: -.055em;
}

.spotlight-card-label em {
  color: rgba(241, 239, 232, .68);
  font-size: 13px;
  font-style: normal;
}

.spotlight-card:not(.active) .spotlight-card-label { opacity: 0; }

.spotlight-arrow {
  position: absolute;
  z-index: 12;
  top: 50%;
  transform: translateY(-50%);
}

.spotlight-arrow:hover,
.spotlight-arrow:focus-visible { transform: translateY(-50%) scale(1.04); }
.spotlight-arrow-prev { left: 0; }
.spotlight-arrow-next { right: 0; }

.spotlight-meta {
  min-height: 105px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
  padding-top: 23px;
  border-top: 1px solid var(--cinema-line);
}

.spotlight-meta > div {
  display: grid;
  grid-template-columns: 76px minmax(210px, 320px) minmax(260px, 470px);
  gap: 22px;
  align-items: start;
}

.spotlight-meta span {
  color: var(--cinema-accent);
  font-size: 10px;
  letter-spacing: .13em;
}

.spotlight-meta strong {
  font-size: 18px;
  font-weight: 580;
}

.spotlight-meta p {
  margin: 0;
  color: var(--cinema-muted);
  font-size: 13px;
  line-height: 1.65;
}

.spotlight-open {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(241, 239, 232, .28);
  border-radius: 4px;
  color: var(--cinema-paper);
  background: transparent;
  font-size: 12px;
}

.spotlight-open span { margin-left: 8px; }
.spotlight-open:hover { color: var(--cinema-black); border-color: var(--cinema-accent); background: var(--cinema-accent); }

.showroom-page .cinema-card:hover,
.showroom-page .cinema-track .cinema-card:hover,
.showroom-page .cinema-track .cinema-card:focus-within {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.cinema-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.cinema-card-art {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0;
  border-radius: 4px;
  background: #171716;
}

.cinema-card-variant-1 .cinema-card-art { aspect-ratio: 4 / 3; }
.cinema-card-variant-2 .cinema-card-art { aspect-ratio: 16 / 11; }
.cinema-card-featured .cinema-card-art { aspect-ratio: 16 / 9; }

.cinema-card-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,3,3,.08), transparent 48%, rgba(3,3,3,.72));
  transition: background .24s ease;
}

.cinema-card-art img,
.cinema-art-fallback {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform .52s cubic-bezier(.2,.65,.2,1), filter .3s ease;
  -webkit-user-drag: none;
  user-select: none;
}

.cinema-card-link:hover .cinema-card-art img,
.cinema-card-link:focus-visible .cinema-card-art img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.cinema-card-link:hover .cinema-card-art::after,
.cinema-card-link:focus-visible .cinema-card-art::after {
  background: linear-gradient(180deg, rgba(3,3,3,.03), transparent 38%, rgba(3,3,3,.84));
}

.cinema-card-number,
.cinema-card-status,
.cinema-card-enter {
  position: absolute;
  z-index: 2;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cinema-card-number {
  top: 17px;
  left: 18px;
  color: var(--cinema-paper);
}

.cinema-card-status {
  top: 17px;
  right: 18px;
  color: rgba(241, 239, 232, .72);
}

.cinema-card-enter {
  right: 18px;
  bottom: 17px;
  color: var(--cinema-paper);
  opacity: 0;
  transform: translateY(7px);
  transition: opacity .22s ease, transform .22s ease;
}

.cinema-card-enter i { color: var(--cinema-accent); font-style: normal; }

.cinema-card-link:hover .cinema-card-enter,
.cinema-card-link:focus-visible .cinema-card-enter {
  opacity: 1;
  transform: translateY(0);
}

.cinema-card-caption {
  display: grid;
  grid-template-columns: minmax(130px, .62fr) minmax(180px, 1fr);
  gap: 24px;
  padding: 17px 0 0;
}

.cinema-card-heading small {
  display: block;
  margin-bottom: 8px;
  color: var(--cinema-dim);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cinema-card-heading h3 {
  margin: 0;
  color: var(--cinema-paper);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 570;
  letter-spacing: -.05em;
}

.cinema-card-copy {
  padding-top: 1px;
}

.cinema-card-copy strong {
  display: block;
  margin-bottom: 7px;
  color: var(--cinema-paper);
  font-size: 13px;
  font-weight: 580;
}

.cinema-card-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--cinema-muted);
  font-size: 12px;
  line-height: 1.62;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Commercial explanation, not internal methodology */
.cinema-collaboration {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(60px, 10vw, 170px);
  margin-top: 170px;
  padding: 62px 0 74px;
  border-top: 1px solid var(--cinema-line);
  border-bottom: 1px solid var(--cinema-line);
}

.cinema-collaboration h2 {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 560;
  line-height: .98;
  letter-spacing: -.06em;
}

.cinema-steps { display: grid; }

.cinema-steps > div {
  display: grid;
  grid-template-columns: 42px 150px minmax(0, 1fr);
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--cinema-line);
}

.cinema-steps > div:first-child { padding-top: 4px; }
.cinema-steps > div:last-child { border-bottom: 0; }

.cinema-steps span {
  color: var(--cinema-accent);
  font-size: 10px;
  letter-spacing: .1em;
}

.cinema-steps strong {
  font-size: 15px;
  font-weight: 580;
}

.cinema-steps p {
  margin: 0;
  color: var(--cinema-muted);
  font-size: 13px;
  line-height: 1.68;
}

.showroom-page .cinema-contact {
  min-height: 430px;
  align-items: end;
  margin-top: 120px;
  padding: 64px;
  border: 1px solid rgba(20, 20, 19, .12);
  border-radius: 4px;
  color: #151514;
  background: var(--cinema-paper);
}

.showroom-page .cinema-contact .section-kicker { color: #657300; }

.showroom-page .cinema-contact h2 {
  max-width: 870px;
  margin: 17px 0 0;
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 580;
  line-height: .92;
  letter-spacing: -.07em;
}

.showroom-page .cinema-contact p {
  max-width: 480px;
  margin-top: 22px;
  color: #63635d;
  font-size: 14px;
  line-height: 1.72;
}

.showroom-page .cinema-contact .button-primary {
  color: var(--cinema-paper);
  background: #151514;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .showroom-page .cinema-nav { width: calc(100% - 42px); }
  .cinema-nav .nav-links a:nth-child(2),
  .cinema-nav .nav-links a:nth-child(3),
  .cinema-nav .nav-links a:nth-child(4),
  .cinema-nav .nav-links a:nth-child(5) { display: none; }
  .cinema-hero-copy { left: 32px; width: min(680px, 72vw); }
  .showroom-page .cinema-hero-case,
  .showroom-page .cinema-hero-controls,
  .cinema-hero-facts { right: 32px; }
  .showroom-page .cinema-hero-case { width: 260px; }
  .cinema-index,
  .showroom-page .cinema-shelf,
  .spotlight-section,
  .showroom-page .cinema-collaboration,
  .showroom-page .cinema-contact { width: calc(100% - 42px); }
  .cinema-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cinema-index a:nth-child(2) { border-right: 0; }
  .cinema-index a:nth-child(-n+2) { border-bottom: 1px solid var(--cinema-line); }
  .cinema-collaboration { grid-template-columns: 1fr; gap: 60px; }
  .spotlight-card { width: min(72vw, 760px); }
  .spotlight-meta > div { grid-template-columns: 68px 240px minmax(220px, 1fr); }
}

@media (max-width: 720px) {
  .showroom-page .cinema-nav {
    width: calc(100% - 28px);
    height: 62px;
  }

  .cinema-nav .brand { font-size: 11px; }
  .cinema-nav .brand span { display: none; }
  .cinema-nav .nav-links { display: flex; gap: 0; }
  .cinema-nav .nav-links a { display: none; }
  .cinema-nav .nav-links .nav-contact { display: block; }

  .showroom-page .cinema-hero {
    min-height: 820px;
    height: 100svh;
    max-height: 900px;
  }

  .showroom-page .cinema-hero-slide img {
    object-position: 58% top;
    filter: saturate(.82) contrast(1.02) brightness(.65);
  }

  .cinema-hero-scrim {
    background:
      linear-gradient(180deg, rgba(5,5,5,.35), rgba(5,5,5,.18) 28%, rgba(5,5,5,.92) 68%, rgba(5,5,5,.98)),
      linear-gradient(90deg, rgba(5,5,5,.42), transparent);
  }

  .cinema-hero-copy {
    left: 20px;
    right: 20px;
    bottom: 98px;
    width: auto;
  }

  .cinema-hero-copy .eyebrow { font-size: 9px; }

  .showroom-page .cinema-hero-copy h1 {
    margin: 18px 0 20px;
    font-size: clamp(46px, 14.3vw, 62px);
    line-height: .91;
  }

  .showroom-page .cinema-hero-copy p {
    max-width: 430px;
    font-size: 15px;
    line-height: 1.62;
  }

  .cinema-hero-copy .hero-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .showroom-page .cinema-hero-copy .button-primary,
  .showroom-page .cinema-hero-copy .button-secondary {
    min-height: 44px;
    padding: 0 14px;
  }

  .cinema-hero-copy .hero-disclaimer { font-size: 10px; }
  .showroom-page .cinema-hero-case { display: none; }

  .showroom-page .cinema-hero-controls {
    top: 82px;
    right: 18px;
    display: flex;
    transform: none;
  }

  .showroom-page .cinema-hero-controls button { width: 42px; }
  .cinema-hero-controls button i { width: 14px; }
  .cinema-hero-controls button.active i { width: 22px; }

  .cinema-hero-facts {
    right: auto;
    bottom: 26px;
    left: 20px;
    gap: 14px;
    font-size: 8px;
  }

  .cinema-index,
  .showroom-page .cinema-shelf,
  .spotlight-section,
  .showroom-page .cinema-collaboration,
  .showroom-page .cinema-contact { width: calc(100% - 28px); }

  .cinema-index {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .cinema-index a {
    min-height: 88px;
    padding: 18px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--cinema-line);
  }

  .cinema-index a:nth-child(-n+2) { border-bottom: 1px solid var(--cinema-line); }
  .cinema-index a:last-child { border-bottom: 0; }
  .cinema-index i { right: 15px; bottom: 18px; }

  .showroom-page .cinema-shelf,
  .showroom-page .cinema-featured,
  .spotlight-section { margin-top: 100px; }

  .showroom-page .cinema-shelf-heading {
    display: block;
    margin-bottom: 26px;
  }

  .showroom-page .cinema-shelf-heading h2 {
    margin-top: 13px;
    font-size: clamp(37px, 11vw, 50px);
  }

  .cinema-shelf-note {
    width: auto;
    margin-top: 20px;
  }

  .cinema-shelf-side {
    width: 100%;
    justify-items: start;
    margin-top: 20px;
  }

  .shelf-navigation { display: none; }

  .spotlight-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .spotlight-heading h2 { font-size: clamp(43px, 12vw, 58px); }

  .spotlight-shell {
    height: 430px;
    margin-top: 30px;
  }

  .spotlight-stage { inset: 0 24px; overflow: visible; }

  .spotlight-card {
    top: 7%;
    width: 78vw;
    height: 82%;
    border-radius: 6px;
  }

  .spotlight-card[data-position="-1"] { --spot-x: -31%; --spot-z: -180px; --spot-rotate: 10deg; --spot-scale: .78; }
  .spotlight-card[data-position="1"] { --spot-x: 31%; --spot-z: -180px; --spot-rotate: -10deg; --spot-scale: .78; }
  .spotlight-card[data-position="-2"],
  .spotlight-card[data-position="2"] { opacity: 0; pointer-events: none; }

  .spotlight-card-label { right: 18px; bottom: 18px; left: 18px; }
  .spotlight-card-label strong { font-size: 34px; }
  .spotlight-arrow { width: 40px; height: 40px; }
  .spotlight-arrow-prev { left: -4px; }
  .spotlight-arrow-next { right: -4px; }

  .spotlight-meta {
    display: grid;
    gap: 20px;
    padding-top: 18px;
  }

  .spotlight-meta > div {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 8px 14px;
  }

  .spotlight-meta p { grid-column: 2; }
  .spotlight-open { width: 100%; }

  .showroom-page .cinema-track .cinema-card,
  .showroom-page .cinema-track .cinema-card-variant-1,
  .showroom-page .shelf-track-featured .cinema-card,
  .showroom-page .shelf-track-featured .cinema-card:nth-child(even) {
    width: 86vw;
    min-width: 86vw;
  }

  .cinema-card-caption {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .cinema-card-heading h3 { font-size: 26px; }
  .cinema-card-copy p { font-size: 12px; }
  .cinema-card-enter { opacity: 1; transform: none; }

  .cinema-collaboration {
    gap: 48px;
    margin-top: 110px;
    padding: 44px 0 52px;
  }

  .cinema-collaboration h2 { font-size: clamp(40px, 12vw, 54px); }

  .cinema-steps > div {
    grid-template-columns: 30px 1fr;
    gap: 9px 14px;
  }

  .cinema-steps p { grid-column: 2; }

  .showroom-page .cinema-contact {
    min-height: 430px;
    display: block;
    margin-top: 70px;
    padding: 32px 24px;
  }

  .showroom-page .cinema-contact h2 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .showroom-page .cinema-contact p { margin: 22px 0 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .showroom-page *,
  .showroom-page *::before,
  .showroom-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
