:root {
  --ink: #050507;
  --ink-soft: #0c0c12;
  --panel: #101019;
  --chrome: #cbd0da;
  --white: #f5f4ef;
  --muted: #a4a3ad;
  --violet: #7c3cff;
  --violet-bright: #9c72ff;
  --amber: #ffb000;
  --amber-hot: #ffcb52;
  --blue: #46c9ff;
  --line: rgba(255, 255, 255, 0.15);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --utility: "Courier New", Courier, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--body);
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

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

button {
  color: inherit;
}

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

::selection {
  color: var(--ink);
  background: var(--amber);
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: 88px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  padding: 0.8rem 1rem;
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

main {
  position: relative;
  overflow: clip;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 99;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.utility-label,
.eyebrow {
  font-family: var(--utility);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.utility-label {
  margin: 0 0 1rem;
  color: var(--amber);
  font-size: 0.7rem;
  line-height: 1.4;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--solid {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 0 0 rgba(255, 176, 0, 0);
}

.button--solid:hover {
  background: var(--amber-hot);
  box-shadow: 0 10px 34px rgba(255, 176, 0, 0.22);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(5, 5, 7, 0.34);
  backdrop-filter: blur(12px);
}

.button--glass:hover,
.button--quiet:hover {
  border-color: var(--violet-bright);
  background: rgba(124, 60, 255, 0.13);
}

.button--quiet {
  border-color: var(--line);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 60% 30%, rgba(124, 60, 255, 0.22), transparent 35%),
    rgba(3, 3, 5, 0.92);
  backdrop-filter: blur(24px);
  overscroll-behavior: contain;
}

.age-gate__panel {
  position: relative;
  width: min(100%, 680px);
  min-height: 430px;
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%),
    #0b0b11;
  box-shadow:
    0 0 90px rgba(124, 60, 255, 0.18),
    inset 0 0 45px rgba(255, 255, 255, 0.025);
}

.age-gate__panel::before,
.age-gate__panel::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--amber);
  pointer-events: none;
}

.age-gate__panel::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.age-gate__panel::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.age-gate h1 {
  max-width: 520px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.age-gate p:not(.utility-label) {
  max-width: 460px;
  margin: 1.5rem 0;
  color: #c7c6ce;
  line-height: 1.6;
}

.gate-mark {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 88px;
  height: 88px;
  transform: rotate(-8deg);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.42), rgba(255, 176, 0, 0.18));
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.gate-mark span {
  position: absolute;
  font-family: var(--display);
  font-size: 2.65rem;
  line-height: 1;
}

.gate-mark span:first-child {
  left: 0.75rem;
  top: 0.55rem;
  color: var(--amber);
}

.gate-mark span:last-child {
  right: 0.65rem;
  bottom: 0.6rem;
  color: var(--violet-bright);
}

.gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.85rem clamp(1rem, 4vw, 3.75rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(to bottom, rgba(5, 5, 7, 0.92), rgba(5, 5, 7, 0.65));
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wordmark__cube {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  transform: skewY(-5deg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, var(--violet), #372079 65%, var(--amber));
  box-shadow: 5px 5px 0 rgba(255, 176, 0, 0.16);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: #c4c3ca;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.45rem;
  height: 2px;
  background: var(--amber);
  transition: right 180ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover::after {
  right: 0;
}

.header-call {
  justify-self: end;
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  font-family: var(--utility);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-call span {
  color: var(--muted);
}

.header-call strong {
  color: var(--amber);
  font-size: 0.7rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 9rem clamp(1rem, 5vw, 5rem) 4rem;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 35%, rgba(124, 60, 255, 0.15), transparent 28%),
    var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0 0 0 42%;
  background-image:
    linear-gradient(90deg, var(--ink) 0%, rgba(5, 5, 7, 0.8) 12%, rgba(5, 5, 7, 0.08) 55%),
    linear-gradient(0deg, var(--ink) 0%, transparent 45%),
    url("../richland-glass-wall.jpg");
  background-position: center;
  background-size: cover;
  filter: contrast(1.13) saturate(0.78);
  transform: scale(1.035);
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 84px,
    rgba(255, 255, 255, 0.035) 85px
  );
}

.hero__prism {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(124, 60, 255, 0.12) 50%, rgba(255, 176, 0, 0.13));
  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.09),
    0 20px 55px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  animation: prism-drift 8s ease-in-out infinite alternate;
}

.hero__prism--one {
  width: min(20vw, 260px);
  aspect-ratio: 0.8;
  top: 19%;
  right: 9%;
  transform: rotate(16deg) skewY(-7deg);
  clip-path: polygon(50% 0, 100% 21%, 83% 100%, 18% 90%, 0 23%);
}

.hero__prism--two {
  width: min(14vw, 170px);
  aspect-ratio: 1;
  right: 30%;
  bottom: 15%;
  transform: rotate(-24deg);
  clip-path: polygon(16% 0, 100% 12%, 86% 100%, 0 78%);
  animation-delay: -2.5s;
}

.hero__scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, transparent 0 47%, rgba(70, 201, 255, 0.18) 50%, transparent 53%);
  background-size: 100% 180px;
  opacity: 0.18;
  mix-blend-mode: screen;
  animation: scan 10s linear infinite;
}

@keyframes prism-drift {
  to {
    translate: 0 -18px;
    rotate: 3deg;
  }
}

@keyframes scan {
  to {
    background-position: 0 720px;
  }
}

.hero__copy {
  width: min(980px, 78vw);
  position: relative;
  z-index: 5;
}

.eyebrow {
  display: flex;
  gap: 1.2rem;
  margin: 0 0 1.4rem;
  color: #c9c8d0;
  font-size: 0.68rem;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow span::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--amber);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.7rem, 10.5vw, 10.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.76;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 244, 239, 0.8);
  transform: translateX(7vw);
}

.hero__amber {
  color: var(--amber);
  font-size: 0.72em;
  line-height: 0.95;
  transform: translateX(2vw);
}

.hero__intro {
  width: min(590px, 80%);
  margin: 2.5rem 0 0 18vw;
  color: #c7c6cf;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 0 18vw;
}

.hero__rail {
  position: absolute;
  right: clamp(1rem, 3vw, 3rem);
  top: 50%;
  z-index: 5;
  display: flex;
  gap: 1.4rem;
  transform: translate(45%, -50%) rotate(90deg);
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--utility);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__rail span {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
}

.hero__rail span:not(:last-child)::after {
  content: "◆";
  color: var(--violet-bright);
  font-size: 0.5rem;
}

.scroll-cue {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: 2.3rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--utility);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 64px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform: translateX(-100%);
  animation: cue 1.6s ease infinite;
}

@keyframes cue {
  70%,
  100% {
    transform: translateX(100%);
  }
}

.tunnel {
  height: 480vh;
  background:
    linear-gradient(180deg, var(--ink), #0b0712 12%, #060608 88%),
    var(--ink);
}

.tunnel__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  perspective: 920px;
  perspective-origin: 50% 47%;
}

.tunnel__sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(124, 60, 255, 0.3) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255, 176, 0, 0.1) 50%, transparent 50.2%),
    radial-gradient(circle at 50% 48%, transparent 0 18%, rgba(124, 60, 255, 0.07) 19%, transparent 20% 31%, rgba(255, 255, 255, 0.035) 32%, transparent 33%);
  opacity: 0.62;
}

.tunnel__scene {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  isolation: isolate;
}

.tunnel-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(74vw, 1060px);
  height: min(64vh, 670px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(10, 10, 15, 0.93);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 45px 120px rgba(0, 0, 0, 0.72);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: opacity 120ms linear, transform 180ms ease-out;
}

.tunnel-frame::before,
.tunnel-frame::after {
  content: "";
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.tunnel-frame::before {
  inset: 0;
  border: 18px solid rgba(255, 255, 255, 0.025);
}

.tunnel-frame::after {
  left: 1rem;
  top: 1rem;
  width: 55px;
  height: 2px;
  background: var(--amber);
  box-shadow: calc(74vw - 90px) calc(min(64vh, 670px) - 34px) 0 var(--violet-bright);
}

.tunnel-frame__image {
  min-width: 0;
  overflow: hidden;
}

.tunnel-frame__asset {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  filter: saturate(0.72) contrast(1.12);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 400ms ease;
}

.tunnel-frame:hover .tunnel-frame__asset {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.05);
}

.tunnel-frame__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3.6vw, 3.6rem);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 32%),
    rgba(10, 10, 15, 0.88);
}

.tunnel-frame--violet .tunnel-frame__copy {
  box-shadow: inset 0 -8px 0 var(--violet);
}

.tunnel-frame--amber .tunnel-frame__copy {
  box-shadow: inset 0 -8px 0 var(--amber);
}

.tunnel-frame--blue .tunnel-frame__copy {
  box-shadow: inset 0 -8px 0 var(--blue);
}

.tunnel-frame--chrome .tunnel-frame__copy {
  box-shadow: inset 0 -8px 0 var(--chrome);
}

.frame-count {
  margin-bottom: auto;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
}

.tunnel-frame__copy > p:first-of-type {
  margin: 0 0 0.7rem;
  color: var(--amber);
  font-family: var(--utility);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tunnel-frame h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.84;
  text-transform: uppercase;
}

.tunnel-frame__copy > p:last-child {
  margin: 1.3rem 0 0;
  color: #b9b8c1;
  font-size: 0.9rem;
  line-height: 1.65;
}

.store-intro {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  width: min(80vw, 1120px);
  height: min(70vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.98) 0 42%, rgba(5, 5, 7, 0.38)),
    url("../richland-storefront.jpg") center / cover;
  box-shadow: 0 45px 130px rgba(0, 0, 0, 0.75);
  opacity: 0;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.store-intro::after {
  content: "ONE STORE / DETAILS PENDING";
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--utility);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.store-intro h2 {
  max-width: 780px;
  margin: 0 0 1.6rem;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7vw, 7.5rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.store-intro__badge {
  position: absolute;
  left: clamp(2rem, 6vw, 5rem);
  top: clamp(2rem, 6vw, 5rem);
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 176, 0, 0.5);
  background: rgba(5, 5, 7, 0.78);
  color: var(--amber);
  font-family: var(--utility);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-intro__copy {
  max-width: 580px;
  margin: -0.5rem 0 1.75rem;
  color: #ceccd3;
  font-size: 0.95rem;
  line-height: 1.65;
}

.tunnel__meter {
  position: absolute;
  left: clamp(1rem, 4vw, 4rem);
  right: clamp(1rem, 4vw, 4rem);
  bottom: 1.6rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.tunnel__meter span {
  display: block;
  width: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--amber));
  transition: width 90ms linear;
}

.why-section,
.locations-section,
.proof-section,
.shelf-section,
.faq-section {
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 4vw, 4.5rem);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.85;
  text-transform: uppercase;
  text-wrap: balance;
}

.why-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(124, 60, 255, 0.06), transparent 45%),
    #08080c;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.why-card {
  min-height: 420px;
  grid-column: span 4;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 3rem);
  overflow: hidden;
  background: #0b0b10;
  justify-content: flex-end;
}

.why-card:first-child {
  grid-column: span 8;
}

.why-card:nth-child(3),
.why-card:nth-child(4) {
  grid-column: span 6;
}

.why-card--image {
  justify-content: flex-end;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.97), rgba(5, 5, 7, 0.28)),
    url("../richland-hookah-wall.jpg") center / cover;
}

.why-card--image > div {
  max-width: 520px;
}

.why-card::after {
  content: "";
  position: absolute;
  right: -45%;
  bottom: -70%;
  width: 110%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  transition: transform 500ms ease, border-color 500ms ease;
}

.why-card:hover::after {
  transform: scale(0.84);
  border-color: rgba(124, 60, 255, 0.28);
}

.why-card--amber {
  background: var(--amber);
  color: var(--ink);
}

.why-card--amber p {
  color: rgba(5, 5, 7, 0.72);
}

.why-card--chrome {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(133, 138, 151, 0.82)),
    var(--chrome);
  color: var(--ink);
}

.why-card--chrome p {
  color: rgba(5, 5, 7, 0.68);
}

.why-card h3 {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 4.2rem);
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

.why-card p {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0;
  color: #c5c4cc;
  font-size: 1rem;
  line-height: 1.7;
}

.why-card.why-card--amber p,
.why-card.why-card--amber .why-card__signal {
  color: #2d260f;
}

.why-card.why-card--chrome p,
.why-card.why-card--chrome .why-card__signal {
  color: #282930;
}

.why-card__signal {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  font-family: var(--utility);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
}

.locations-section {
  background:
    radial-gradient(circle at 16% 60%, rgba(124, 60, 255, 0.14), transparent 28%),
    var(--ink);
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
}

.section-heading--split > p {
  margin: 0 0 0.4rem;
  color: #aaa9b2;
  font-size: 0.9rem;
  line-height: 1.65;
}

.location-lab {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.75fr);
  border: 1px solid var(--line);
  background: #09090d;
}

.location-map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-right: 1px solid rgba(5, 5, 7, 0.22);
  background: #e8e8e3;
}

.location-map__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: saturate(0.82) contrast(1.04);
}

.map-placeholder-note {
  position: absolute;
  left: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  z-index: 6;
  min-width: min(330px, calc(100% - 2rem));
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(5, 5, 7, 0.18);
  background: rgba(247, 246, 241, 0.94);
  box-shadow: 0 14px 40px rgba(5, 5, 7, 0.12);
  color: var(--ink);
  pointer-events: none;
}

.map-placeholder-note span,
.map-placeholder-note strong,
.map-placeholder-note small {
  display: block;
}

.map-placeholder-note span {
  margin-bottom: 0.45rem;
  color: #68666e;
  font-family: var(--utility);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-placeholder-note strong {
  font-size: 1rem;
}

.map-placeholder-note small {
  margin-top: 0.4rem;
  color: #6d6b72;
  font-size: 0.72rem;
}

.location-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 33%),
    #0c0c12;
}

.location-panel > .utility-label {
  margin-top: 0;
}

.location-panel h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 0.86;
  text-transform: uppercase;
}

.location-panel address {
  max-width: 400px;
  margin-top: 1.6rem;
  color: #c6c5cd;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.55;
}

.location-phone {
  width: fit-content;
  margin-top: 0.75rem;
  color: var(--amber);
  font-family: var(--utility);
  font-size: 1rem;
}

.location-hours {
  margin: 1.5rem 0 0;
  color: var(--white);
  font-family: var(--utility);
  font-size: 0.68rem;
  line-height: 1.6;
}

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

.proof-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 60%, rgba(124, 60, 255, 0.13), transparent 35%),
    #08080c;
}

.proof-section .section-heading {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.testimonial-shell {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.testimonial-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  height: clamp(430px, 48vw, 590px);
  perspective: 1200px;
  transform-style: preserve-3d;
  isolation: isolate;
}

.testimonial-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(70vw, 840px);
  height: min(36vw, 380px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(124, 60, 255, 0.12);
  filter: blur(80px);
  pointer-events: none;
}

.testimonial-orbit {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(78vw, 1080px);
  height: min(28vw, 300px);
  transform: translate(-50%, -50%) rotateX(68deg);
  border: 1px solid rgba(255, 176, 0, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 80px rgba(124, 60, 255, 0.16),
    inset 0 0 60px rgba(255, 176, 0, 0.06);
}

.testimonial-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(62vw, 760px);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 35%),
    rgba(13, 12, 20, 0.96);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transform-style: preserve-3d;
  transition:
    transform 620ms cubic-bezier(0.2, 0.75, 0.15, 1),
    opacity 420ms ease,
    border-color 320ms ease,
    filter 320ms ease;
}

.testimonial-card.is-active {
  z-index: 3;
  opacity: 1;
  border-color: rgba(255, 176, 0, 0.58);
  transform:
    translate(-50%, -50%)
    translateZ(110px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
}

.testimonial-card.is-next {
  z-index: 2;
  opacity: 0.48;
  filter: saturate(0.6);
  transform:
    translate(-50%, -50%)
    translate3d(58%, 18px, -180px)
    rotateY(-18deg)
    scale(0.84);
}

.testimonial-card.is-previous {
  z-index: 1;
  opacity: 0.38;
  filter: saturate(0.5);
  transform:
    translate(-50%, -50%)
    translate3d(-58%, 18px, -180px)
    rotateY(18deg)
    scale(0.84);
}

.testimonial-card .quote-mark {
  color: var(--violet-bright);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.7;
  transform: translateZ(42px);
}

.testimonial-card blockquote {
  margin: 0;
  transform: translateZ(34px);
}

.testimonial-card blockquote p {
  max-width: 650px;
  margin: 2rem 0 0;
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  line-height: 1.32;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.testimonial-controls > button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  background: #111018;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.testimonial-controls > button:hover {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--ink);
}

.testimonial-dots {
  display: flex;
  gap: 0.55rem;
}

.testimonial-dots button {
  position: relative;
  width: 28px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.testimonial-dots button::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  background: #403e49;
  transition: background 220ms ease;
}

.testimonial-dots button.is-active {
  width: 54px;
}

.testimonial-dots button.is-active::before {
  background: var(--amber);
}

.shelf-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  background:
    linear-gradient(110deg, rgba(124, 60, 255, 0.17), transparent 34%),
    #0a0910;
}

.shelf-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7.5vw, 8.4rem);
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-transform: uppercase;
}

.shelf-copy > p:not(.utility-label) {
  max-width: 560px;
  margin: 2rem 0;
  color: #aaa9b3;
  line-height: 1.65;
}

.direct-call {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 176, 0, 0.34);
  background: rgba(255, 176, 0, 0.04);
  transition: background 200ms ease, transform 200ms ease;
}

.direct-call:hover {
  background: rgba(255, 176, 0, 0.1);
  transform: translateX(6px);
}

.direct-call span {
  color: var(--muted);
  font-family: var(--utility);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.direct-call strong {
  color: var(--amber);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  letter-spacing: -0.025em;
}

.shelf-form {
  min-height: 680px;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(1.5rem, 4vw, 4rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 32%),
    #0d0d14;
}

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

.shelf-form label {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.shelf-form label > span {
  color: #aaa9b3;
  font-family: var(--utility);
  font-size: 0.61rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shelf-form input,
.shelf-form select,
.shelf-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.shelf-form textarea {
  min-height: 120px;
  resize: vertical;
}

.shelf-form input::placeholder,
.shelf-form textarea::placeholder {
  color: #6f6e78;
}

.shelf-form input:focus,
.shelf-form select:focus,
.shelf-form textarea:focus {
  border-color: var(--violet-bright);
  background: rgba(124, 60, 255, 0.06);
}

.shelf-form input:focus-visible,
.shelf-form select:focus-visible,
.shelf-form textarea:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.shelf-form select {
  appearance: auto;
  background-color: #15151c;
  color: var(--white);
}

.consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.75rem !important;
  margin-top: 0.45rem;
}

.consent input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--amber);
}

.consent span {
  line-height: 1.5;
}

.form-submit {
  align-self: flex-start;
  margin-top: auto;
}

.form-success {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.form-success h3 {
  max-width: 540px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.form-success > p:not(.utility-label) {
  max-width: 560px;
  color: #aaa9b3;
  line-height: 1.65;
}

.success-prism {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
  transform: rotate(45deg);
  border: 1px solid var(--amber);
  background: rgba(255, 176, 0, 0.09);
  color: var(--amber);
  font-size: 2rem;
}

.success-prism::first-letter {
  transform: rotate(-45deg);
}

.faq-section {
  background: #07070a;
}

.faq-list {
  max-width: 1040px;
  margin-left: auto;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.7rem 4rem 1.7rem 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber);
  font-family: var(--utility);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: -0.5rem 0 1.8rem;
  color: #aaa9b3;
  line-height: 1.7;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(3rem, 5vw, 5rem) clamp(1rem, 4vw, 4.5rem) 2rem;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(124, 60, 255, 0.17), transparent 28%),
    #050507;
}

.wordmark--footer {
  font-size: clamp(1.6rem, 3vw, 3rem);
}

.wordmark--footer .wordmark__cube {
  width: 58px;
  height: 58px;
  font-size: 1.25rem;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer__links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer__links a {
  width: fit-content;
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--amber);
}

.footer__legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: #5f5e67;
  font-family: var(--utility);
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    border: 1px solid var(--line);
    background: rgba(8, 8, 12, 0.97);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  }

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

  .site-nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero__copy {
    width: 88vw;
  }

  .hero__intro,
  .hero__actions {
    margin-left: 8vw;
  }

  .tunnel-frame {
    width: 86vw;
    grid-template-columns: 1fr 0.8fr;
  }

  .why-card,
  .why-card:first-child {
    grid-column: span 6;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .location-lab {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 560px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .location-map__embed {
    min-height: 560px;
  }

  .location-panel {
    min-height: 480px;
  }

  .testimonial-card {
    width: min(72vw, 700px);
  }

  .shelf-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .age-gate__panel {
    min-height: 0;
    padding: 2rem 1.5rem;
  }

  .gate-mark {
    position: relative;
    top: auto;
    right: auto;
    width: 66px;
    height: 66px;
    margin-bottom: 2rem;
  }

  .gate-mark span {
    font-size: 2rem;
  }

  .gate-actions {
    flex-direction: column;
  }

  .gate-actions .button {
    width: 100%;
  }

  .site-header {
    min-height: 68px;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding-top: 8rem;
    padding-bottom: 5.5rem;
  }

  .hero__image {
    inset: 0;
    opacity: 0.58;
    background-image:
      linear-gradient(180deg, rgba(5, 5, 7, 0.38), var(--ink) 80%),
      linear-gradient(90deg, rgba(5, 5, 7, 0.72), transparent),
      url("../richland-glass-wall.jpg");
  }

  .hero__copy {
    width: 100%;
  }

  .eyebrow {
    flex-direction: column;
    gap: 0.55rem;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 20vw, 7.2rem);
    line-height: 0.78;
  }

  .hero__outline,
  .hero__amber {
    transform: none;
  }

  .hero__intro {
    width: 100%;
    margin: 1.7rem 0 0;
  }

  .hero__actions {
    margin: 1.25rem 0 0;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__rail {
    display: none;
  }

  .scroll-cue {
    left: 1rem;
    right: auto;
    bottom: 1.6rem;
  }

  .hero__prism--one {
    width: 34vw;
    right: 2%;
  }

  .hero__prism--two {
    display: none;
  }

  .tunnel {
    height: auto;
    padding: 4rem 1rem;
  }

  .tunnel__sticky {
    position: relative;
    height: auto;
    overflow: visible;
    perspective: none;
  }

  .tunnel__scene {
    position: static;
    display: grid;
    gap: 1rem;
    transform-style: flat;
  }

  .tunnel-frame {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 560px;
    grid-template-columns: 1fr;
    grid-template-rows: 260px 1fr;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .tunnel-frame__copy {
    min-height: 300px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .frame-count {
    margin-bottom: 3rem;
  }

  .store-intro {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 620px;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .store-intro h2 {
    font-size: 3.4rem;
  }

  .tunnel__meter {
    display: none;
  }

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

  .why-card,
  .why-card:first-child,
  .why-card:nth-child(3),
  .why-card:nth-child(4) {
    grid-column: auto;
    min-height: 390px;
  }

  .location-map {
    min-height: 520px;
  }

  .location-map__embed {
    min-height: 520px;
  }

  .location-panel {
    min-height: 460px;
  }

  .location-panel > .utility-label {
    margin-top: 0;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-actions .button {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-stage {
    height: 440px;
  }

  .testimonial-card {
    width: calc(100% - 1rem);
    min-height: 330px;
    padding: 1.5rem;
  }

  .testimonial-card.is-next {
    opacity: 0.2;
    transform:
      translate(-50%, -50%)
      translate3d(14%, 14px, -160px)
      rotateY(-12deg)
      scale(0.88);
  }

  .testimonial-card.is-previous {
    opacity: 0.16;
    transform:
      translate(-50%, -50%)
      translate3d(-14%, 14px, -160px)
      rotateY(12deg)
      scale(0.88);
  }

  .testimonial-card .quote-mark {
    font-size: 4.5rem;
  }

  .testimonial-card blockquote p {
    margin-top: 1rem;
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }

  .testimonial-orbit {
    width: 118%;
    height: 220px;
  }

  .shelf-form {
    min-height: 0;
  }

  .form-submit {
    width: 100%;
    margin-top: 1rem;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer__legal {
    grid-column: auto;
  }

  .footer__legal {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .tunnel {
    height: auto;
    padding: 7rem clamp(1rem, 5vw, 5rem);
  }

  .tunnel__sticky {
    position: relative;
    height: auto;
    perspective: none;
    overflow: visible;
  }

  .tunnel__scene {
    position: static;
    display: grid;
    gap: 1.5rem;
  }

  .tunnel-frame,
  .store-intro {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 560px;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .store-intro {
    height: 620px;
  }

  .tunnel__meter {
    display: none;
  }

  .testimonial-stage {
    height: auto;
    min-height: 360px;
    perspective: none;
  }

  .testimonial-orbit,
  .testimonial-card:not(.is-active) {
    display: none;
  }

  .testimonial-card.is-active {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 340px;
    transform: none !important;
  }
}
