:root {
  --bg: #000;
  --orange: #ff6a00;
  --muted: #5c5c5c;
  --text: #f2f2f2;
  --dim: #9a9a9a;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.top {
  padding: 1.75rem 2rem 0;
  max-width: 1100px;
  margin: 0 auto;
}

.logo img {
  display: block;
  height: 56px;
  width: auto;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18vh 2rem 4rem;
}


.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lede {
  margin: 0;
  max-width: 34rem;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--dim);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.pill {
  border: 1px solid #2a2a2a;
  color: var(--dim);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
}

.foot {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.foot .mark {
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 640px) {
  .top { padding: 1.25rem 1.25rem 0; }
  .logo img { height: 40px; }
  .hero { padding: 12vh 1.25rem 3rem; }
}

.story {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
}

.story h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.story-note {
  margin: 0 0 1.75rem;
  color: var(--dim);
  max-width: 40rem;
  line-height: 1.5;
  font-size: 0.98rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.25rem;
}
.story-grid > .card {
  grid-column: span 2; /* steps 1–3: three across */
}
.story-grid > .card:nth-child(4),
.story-grid > .card:nth-child(5) {
  grid-column: span 3; /* steps 4–5: full two-column row */
}

.card {
  background: #0a0a0a;
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  overflow: hidden;
}

.card img,
.card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #111;
}

.card .meta {
  padding: 0.9rem 1rem 1.1rem;
}

.card .step {
  margin: 0 0 0.35rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 650;
}

.card p {
  margin: 0;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .story { padding: 1rem 1.25rem 3.5rem; }
  .story-grid { grid-template-columns: 1fr; }
  .story-grid > .card,
  .story-grid > .card:nth-child(4),
  .story-grid > .card:nth-child(5) { grid-column: auto; }
}

.top-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mini-nav {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.mini-nav a {
  color: var(--dim);
  text-decoration: none;
  font-size: 0.9rem;
}

.mini-nav a.on,
.mini-nav a:hover {
  color: var(--orange);
}

.catalog-mock {
  padding: 1.1rem 1rem 0.4rem;
  min-height: 180px;
}

.catalog-label {
  margin: 0 0 0.75rem;
  color: var(--dim);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.brand {
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text);
}

.swatches {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.swatches i {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: block;
  border: 1px solid rgba(255,255,255,0.08);
}

.sku-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sku-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid #1c1c1c;
  color: var(--text);
  font-size: 0.95rem;
}

.sku-list li:last-child { border-bottom: 0; }

.story-band {
  border-top: 1px solid #1a1a1a;
  padding-top: 3.5rem;
}

.division-mark {
  margin-bottom: 1.25rem;
}

.division-mark img {
  display: block;
  height: 42px;
  width: auto;
  margin-bottom: 0.85rem;
}

.story-actions {
  margin: 0 0 1.75rem;
}

.vision-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog {
  border-top: 1px solid #1a1a1a;
  padding-top: 3.5rem;
}

.cat-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
}

.cat-tab {
  appearance: none;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  color: var(--dim);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
  cursor: default;
}

.cat-tab.on {
  border-color: var(--orange);
  color: var(--orange);
}

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

.product {
  background: #0a0a0a;
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-shot {
  background: #fff;
  padding: 1.1rem 1.1rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.product-shot img {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  aspect-ratio: auto;
}

.product-body {
  padding: 0.85rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.product-brand {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 650;
}

.product h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.product-blurb {
  margin: 0.15rem 0 0;
  color: #b5b5b5;
  font-size: 0.84rem;
  line-height: 1.45;
}

.product-price {
  margin: 0.55rem 0 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-note {
  margin: 0.1rem 0 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-spec {
  margin: 0 0 0.65rem;
  color: var(--dim);
  font-size: 0.86rem;
  line-height: 1.4;
}

.product-pick {
  appearance: none;
  margin-top: auto;
  align-self: flex-start;
  background: transparent;
  border: 1px solid #2a2a2a;
  color: var(--text);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  cursor: default;
}

.product-pick:hover {
  border-color: var(--orange);
  color: var(--orange);
}

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

@media (max-width: 720px) {
  .vision-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .division-mark img { height: 34px; }
}

html { scroll-behavior: smooth; }

.site-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.site-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.site-explain {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.site-point {
  background: #0a0a0a;
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  padding: 1rem 1.05rem 1.15rem;
}

.site-point .step {
  margin: 0 0 0.35rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-point h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.site-point p {
  margin: 0;
  color: var(--dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

.sun-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  color: var(--dim);
  font-size: 0.86rem;
  padding: 0.35rem 0 0.5rem;
}

.sun-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd27a, #ff6a00 70%);
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.45);
}

.sun-sep { color: #333; }

.exterior-swap {
  position: relative;
  background: #111;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.exterior-swap .ext-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exterior-swap .ext-tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.75s ease;
  pointer-events: none;
}

.exterior-swap[data-color="charcoal"] .ext-tint[data-tint="charcoal"],
.exterior-swap[data-color="sage"] .ext-tint[data-tint="sage"] {
  opacity: 1;
}

.ext-chips {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.ext-chip {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ddd;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.ext-chip.on {
  border-color: var(--orange);
  color: var(--orange);
}

@media (max-width: 900px) {
  .site-explain { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-grid { grid-template-columns: 1fr; }
}


.film .film-frame {
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
}

.film-frame video {
  display: block;
  width: 100%;
  max-height: 72vh;
  background: #000;
}








.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.85fr);
  gap: 1.75rem 2rem;
  align-items: center;
}

.hero-with-film .hero-copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
}

.hero-media {
  margin: 0;
  max-width: none;
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}

.hero-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}


@media (max-width: 900px) {
  .hero-top {
    grid-template-columns: 1fr;
  }
  .hero-media {
    max-width: 480px;
  }
}

.hero-with-film {
  padding-top: 14vh;
  padding-bottom: 5.75rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #141414;
}

.hero-with-film .actions {
  margin-top: 2.35rem;
}

#create.story {
  padding-top: 3.75rem;
}

@media (max-width: 640px) {
  .hero-with-film {
    padding-top: 10vh;
    padding-bottom: 4.25rem;
    margin-bottom: 2rem;
  }
}


.interior-swap {
  position: relative;
  background: #111;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.interior-swap .int-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.75s ease;
}

.interior-swap .int-frame.on {
  opacity: 1;
}


.bath-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bath-final {
  grid-column: 1 / -1;
}

.bath-final img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: transparent;
}

.bath-grid .card img {
  background: #0e0e0e;
}

.bath-grid .product-shot {
  background: #f4f4f4;
}

.bath-cat-shot {
  min-height: 220px;
  width: 100%;
  background: #fff;
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bath-cat-shot img {
  max-height: 210px;
  width: auto;
  max-width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
}

@media (max-width: 720px) {
  .bath-grid { grid-template-columns: 1fr; }
  .bath-final { grid-column: auto; }
}


.vr-stage {
  position: relative;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

.vr-stage canvas {
  display: block;
  width: 100%;
  height: auto;
  cursor: crosshair;
  vertical-align: top;
}

.vr-hint {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ddd;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.vr-hud {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: min(260px, 78%);
  background: rgba(12, 12, 14, 0.88);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 0.85rem 0.9rem 0.95rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  color: #f2f2f2;
}

.vr-hud-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.vr-hud-brand {
  font-weight: 650;
  letter-spacing: 0.02em;
  font-size: 0.98rem;
}

.vr-hud-close {
  appearance: none;
  background: transparent;
  border: 0;
  color: #9a9a9a;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.15rem;
}

.vr-hud-sub {
  margin: 0.25rem 0 0.75rem;
  color: #8a8a8a;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vr-swatches {
  display: grid;
  gap: 0.35rem;
}

.vr-swatch {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 0.4rem 0.55rem;
  color: #e8e8e8;
  font-size: 0.86rem;
  cursor: pointer;
  text-align: left;
}

.vr-swatch i {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: block;
  border: 1px solid rgba(255,255,255,0.12);
  flex: 0 0 auto;
}

.vr-swatch.on {
  border-color: var(--orange);
  color: #fff;
}

.vr-hud-status {
  margin: 0.75rem 0 0;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 650;
}

@media (max-width: 640px) {
  .vr-hud {
    top: auto;
    bottom: 0.75rem;
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
  }
}


.vrhome .division-mark img {
  height: 42px;
  width: auto;
}

.vr-film {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
  vertical-align: top;
}


.vr-still {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.vr-hud[hidden] { display: none; }

.vr-still {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.vr-cue {
  position: absolute;
  z-index: 4;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.62);
  border: 1px solid rgba(255,255,255,0.16);
  color: #f3f3f3;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  pointer-events: none;
  backdrop-filter: blur(8px);
  animation: vr-cue-pulse 2.4s ease-in-out infinite;
}

.vr-cue.is-gone {
  opacity: 0;
  animation: none;
  transition: opacity 0.35s ease;
}

@keyframes vr-cue-pulse {
  0%, 100% { opacity: 0.88; }
  50% { opacity: 1; }
}

.vr-hud {
  z-index: 5;
}


.vr-swatches-dead .vr-swatch {
  cursor: default;
  pointer-events: none;
  opacity: 0.85;
}


.bath-grid .bath-cat-shot img {
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
}


.close-ladder {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
}

.close-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.close-line {
  margin: 1.6rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid #222;
  color: #c9c9c9;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 550;
}

@media (max-width: 720px) {
  .close-grid { grid-template-columns: 1fr; }
}


.vr-head-lockup {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
  margin: 0 0 1.1rem;
}

.vr-head-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.vr-head-lockup .division-mark {
  margin-bottom: 0.55rem;
}

.vr-head-lockup h2 {
  margin: 0;
}

.vr-headset-cutout {
  flex: 0 0 auto;
  height: 168px;
  width: auto;
  max-width: 260px;
  margin-top: 0;
  object-fit: contain;
  object-position: top right;
  background: transparent !important;
  box-shadow: none;
  border: 0;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

@media (max-width: 720px) {
  .vr-head-lockup {
    flex-direction: column;
    align-items: flex-start;
  }
  .vr-headset-cutout {
    height: 140px;
    max-width: min(92vw, 240px);
    align-self: flex-end;
  }
}


.samples .sample-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 1.4rem;
}
.sample-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}
.sample-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  overflow: hidden;
}
.sample-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sample-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
}
.sample-meta {
  padding: 1rem 1.1rem 1.15rem;
}
.sample-meta h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.sample-meta p {
  margin: 0 0 0.75rem;
  opacity: 0.82;
  font-size: 0.95rem;
  line-height: 1.45;
}
.sample-link {
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 820px) {
  .samples .sample-grid { grid-template-columns: 1fr; }
}


.story-tagline {
  margin: 1.5rem 0 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  opacity: 0.95;
}


.vr-home-title {
  line-height: 1.35;
}
.vr-nearly-stack {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding-bottom: 0.28em;
  vertical-align: baseline;
}
.vr-nearly-stack .vr-virtually {
  position: absolute;
  left: 50%;
  top: 95%;
  transform: translateX(-50%);
  margin-top: 0;
  font-size: 0.52em;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.72;
  line-height: 0.6em;
  white-space: nowrap;
}


.vr-demo-block {
  margin-top: 2.75rem;
}
.vr-demo-block-next {
  margin-top: 3.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.vr-demo-lead {
  margin: 0 0 0.85rem;
}
.vr-demo-block .vr-stage {
  margin-top: 0;
}


.practice .practice-ladder {
  margin-top: 0.2rem;
}
