:root {
  --shop-black: #0b0d10;
  --ink: #15110d;
  --cream: #fff1d3;
  --paper: #fff9ed;
  --red: #d83b3b;
  --blue: #1e5aa8;
  --chrome: #cfd7df;
  --amber: #f0b85a;
  --glass: #9fd7dc;
  --muted: #695f52;
  --line: rgba(21, 17, 13, 0.16);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  --display: 'Bebas Neue', Impact, sans-serif;
  --body: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--shop-black);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a, input, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  background: var(--cream);
  color: var(--ink);
  padding: .7rem 1rem;
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shopfront {
  min-height: 100svh;
  padding: clamp(16px, 3vw, 34px);
  display: grid;
  grid-template-rows: auto minmax(340px, 1fr) auto auto;
  gap: clamp(14px, 2vw, 22px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px) 0 0 / 44px 44px,
    radial-gradient(circle at 16% 12%, rgba(216,59,59,.3), transparent 24rem),
    radial-gradient(circle at 80% 18%, rgba(30,90,168,.26), transparent 28rem),
    linear-gradient(180deg, #131923 0%, var(--shop-black) 58%, #050607 100%);
}
.streetlight {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18%;
  height: 42%;
  background: radial-gradient(ellipse at 50% 100%, rgba(240,184,90,.28), transparent 64%);
  z-index: -1;
  max-width: 100%;
}
.fascia {
  background: linear-gradient(180deg, #ffedc5, var(--cream));
  border: clamp(5px, .8vw, 10px) solid #070707;
  box-shadow: var(--shadow), inset 0 -12px 0 rgba(0,0,0,.08);
  padding: clamp(16px, 3vw, 34px) clamp(16px, 4vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fascia::before, .fascia::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fascia::before { background: repeating-linear-gradient(90deg, transparent 0 46px, rgba(0,0,0,.045) 46px 50px); }
.fascia::after { border: 2px solid rgba(0,0,0,.12); inset: 12px; }
.kicker {
  margin: 0 0 .4rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 800;
  font-size: clamp(.72rem, 1.4vw, .88rem);
  color: var(--red);
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.8rem, 16vw, 16rem);
  line-height: .78;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.spirit {
  margin: .65rem 0 0;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.window-stage {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  align-self: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, .8fr);
  gap: clamp(16px, 2.5vw, 28px);
  min-width: 0;
}
.window-copy, .pole-card {
  border: 4px solid rgba(255,241,211,.88);
  background: linear-gradient(135deg, rgba(159,215,220,.94), rgba(255,249,237,.9));
  box-shadow: var(--shadow);
  min-width: 0;
}
.window-copy {
  padding: clamp(22px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.window-copy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(11,13,16,.14) 0 9px, transparent 9px 36px);
  transform: translateY(-22%);
  transition: transform .8s ease;
}
.js .shopfront:hover .window-copy::before { transform: translateY(-8%); }
.address {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.frontline {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.25rem, 6.5vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 900;
}
.proof-rail {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: clamp(20px, 3vw, 34px);
}
.proof-rail span {
  background: rgba(255,249,237,.88);
  border: 2px solid rgba(21,17,13,.22);
  padding: .72rem 1rem;
  font-weight: 900;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.pole-card {
  min-height: 340px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.8), transparent 10rem),
    linear-gradient(135deg, #111822, #26384d);
}
.pole {
  width: min(34vw, 150px);
  max-width: 72%;
  aspect-ratio: 1 / 2.55;
  border: 10px solid #f6f7f7;
  border-radius: 999px;
  background: repeating-linear-gradient(135deg, var(--red) 0 20px, #fff 20px 40px, var(--blue) 40px 60px, #fff 60px 80px);
  box-shadow: inset 0 0 22px rgba(0,0,0,.26), 0 24px 60px rgba(0,0,0,.42);
}
.blade {
  position: absolute;
  width: min(180px, 38%);
  height: 12px;
  border-radius: 999px;
  background: var(--chrome);
  box-shadow: 0 8px 18px rgba(0,0,0,.32);
}
.blade-one { left: 7%; top: 20%; transform: rotate(-18deg); }
.blade-two { right: 8%; bottom: 22%; transform: rotate(16deg); }
.chair-icon {
  position: absolute;
  bottom: 14%;
  left: 50%;
  width: min(170px, 46%);
  aspect-ratio: 1.25 / 1;
  transform: translateX(-50%);
  border: 10px solid rgba(255,241,211,.9);
  border-radius: 45% 45% 22% 22%;
  border-bottom-width: 18px;
}
.floor-nav, .door-actions {
  width: min(100%, 980px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
}
.floor-nav a, .quiet-action, .strong-action, .submit {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.floor-nav a {
  background: #171717;
  color: var(--cream);
  border: 2px solid rgba(255,241,211,.44);
  padding: .82rem 1.25rem;
  box-shadow: inset 0 -5px 0 rgba(255,255,255,.08);
}
.floor-nav a:hover, .quiet-action:hover, .strong-action:hover, .submit:hover { transform: translateY(-2px); }
.quiet-action {
  border: 2px solid rgba(255,241,211,.68);
  color: var(--cream);
  padding: .8rem 1.25rem;
}
.strong-action, .submit {
  border: 2px solid var(--amber);
  background: var(--amber);
  color: #130d05;
  padding: .8rem 1.35rem;
}

.chairline, .mirror-note, .door {
  background: var(--paper);
  padding: clamp(54px, 8vw, 110px) clamp(16px, 4vw, 64px);
}
.chairline-heading {
  max-width: 980px;
  margin: 0 auto clamp(30px, 5vw, 62px);
}
h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 6.6rem);
  line-height: .92;
  letter-spacing: -.06em;
}
.chair-track {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: clamp(14px, 2.5vw, 22px);
  position: relative;
}
.chair-track::before {
  content: '';
  position: absolute;
  left: clamp(26px, 5vw, 64px);
  top: 0;
  bottom: 0;
  width: 10px;
  border-radius: 999px;
  background: repeating-linear-gradient(180deg, var(--red) 0 22px, #fff 22px 44px, var(--blue) 44px 66px, #fff 66px 88px);
  opacity: .9;
}
.chair-station {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(0, 1fr);
  gap: clamp(14px, 3vw, 38px);
  align-items: stretch;
  padding-left: clamp(54px, 8vw, 112px);
  min-width: 0;
}
.chair-button {
  width: 100%;
  min-height: 150px;
  border: 3px solid #171717;
  background: #fff;
  color: var(--ink);
  box-shadow: 9px 9px 0 #171717;
  padding: 1rem;
  text-align: left;
  display: grid;
  align-content: space-between;
  cursor: pointer;
}
.chair-button.is-active {
  background: linear-gradient(135deg, var(--ink), #243040);
  color: var(--cream);
  border-color: var(--red);
}
.chair-no {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .78;
}
.chair-label {
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.35rem);
}
.station-copy {
  border: 2px solid var(--line);
  border-left: 10px solid var(--red);
  background: #fff;
  padding: clamp(20px, 4vw, 38px);
  display: grid;
  align-content: center;
  min-width: 0;
}
.station-copy h3 {
  margin: 0 0 .55rem;
  font-size: clamp(1.45rem, 3.2vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.station-copy p { margin: 0; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.2rem); }

.mirror-note {
  background: linear-gradient(180deg, #f4ead9, #fff9ed);
}
.mirror-panel {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
}
.mirror-glass {
  min-height: 440px;
  border-radius: 999px 999px 36px 36px;
  border: 12px solid #171717;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(159,215,220,.55)),
    radial-gradient(circle at 34% 26%, rgba(255,255,255,.95), transparent 7rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mirror-sheen, .mirror-line {
  position: absolute;
  inset: 12%;
  border-radius: inherit;
  border: 2px solid rgba(255,255,255,.72);
}
.mirror-line {
  inset: auto 18% 18% 18%;
  height: 6px;
  border: 0;
  background: var(--red);
  box-shadow: 0 16px 0 var(--blue), 0 32px 0 var(--red);
}
.note-copy { min-width: 0; }
.service-note {
  margin: clamp(20px, 3vw, 30px) 0;
  padding: clamp(18px, 3vw, 28px);
  background: #fff;
  border-left: 10px solid var(--blue);
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
}
.review-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.review-strip strong, .review-strip span, .visit-rules div {
  background: var(--ink);
  color: var(--cream);
  border-radius: 22px;
  padding: .86rem 1rem;
}
.review-strip strong { background: var(--red); }
.visit-rules {
  max-width: 1180px;
  margin: clamp(26px, 5vw, 54px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.visit-rules div {
  min-width: 0;
  min-height: 130px;
  display: grid;
  gap: .35rem;
  align-content: start;
}
.visit-rules strong { font-size: 1.12rem; }
.visit-rules span { color: #e9dfcf; }

.door {
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(180deg, #111923, #08090c);
  color: var(--cream);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: clamp(18px, 4vw, 48px);
  align-items: stretch;
}
.door .kicker { color: var(--amber); }
.door-map, .enquiry {
  min-width: 0;
  border: 3px solid rgba(255,241,211,.26);
  background: rgba(255,241,211,.08);
  box-shadow: var(--shadow);
}
.door-map {
  padding: clamp(24px, 5vw, 58px);
  display: grid;
  align-content: center;
}
.door-map p:not(.kicker) {
  max-width: 760px;
  color: #e6dccc;
  font-size: clamp(1.1rem, 2vw, 1.36rem);
}
.door-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.2rem;
}
.enquiry {
  padding: clamp(20px, 3vw, 34px);
  display: grid;
  gap: .72rem;
}
.enquiry h3 {
  margin: 0 0 .2rem;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: .9;
  font-family: var(--display);
  letter-spacing: .02em;
}
.enquiry label { font-weight: 900; }
.enquiry input, .enquiry textarea {
  width: 100%;
  max-width: 100%;
  border: 2px solid rgba(255,241,211,.36);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  padding: .9rem 1rem;
  min-height: 46px;
}
.enquiry textarea { resize: vertical; min-height: 132px; }
.submit { width: fit-content; min-width: 160px; }
.form-status { min-height: 1.5rem; margin: 0; color: var(--amber); font-weight: 900; }
.threshold {
  background: #050607;
  color: var(--cream);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(16px, 4vw, 64px);
  border-top: 1px solid rgba(255,241,211,.18);
}
.threshold a { font-weight: 900; text-decoration: none; }

@media (max-width: 1024px) {
  .window-stage, .mirror-panel, .door { grid-template-columns: 1fr; }
  .pole-card { min-height: 260px; }
  .mirror-glass { min-height: 340px; max-width: 520px; width: 100%; margin: 0 auto; }
  .visit-rules { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .shopfront { padding: 12px; grid-template-rows: auto auto auto auto; }
  .fascia { padding: 18px 12px; }
  .spirit { font-size: .9rem; }
  .window-copy { padding: 22px 16px; }
  .frontline { font-size: clamp(2.15rem, 12vw, 4.2rem); letter-spacing: -.055em; }
  .proof-rail span { width: 100%; justify-content: center; text-align: center; }
  .floor-nav, .door-actions, .door-buttons { align-items: stretch; }
  .floor-nav a, .door-actions a, .door-buttons a { width: 100%; }
  .chairline, .mirror-note, .door { padding: 48px 14px; }
  .chair-track::before { left: 19px; width: 7px; }
  .chair-station { grid-template-columns: 1fr; padding-left: 42px; gap: 10px; }
  .chair-button { min-height: 118px; box-shadow: 6px 6px 0 #171717; }
  .station-copy { padding: 20px; border-left-width: 7px; }
  .mirror-glass { min-height: 260px; border-width: 8px; }
  .review-strip strong, .review-strip span { width: 100%; }
  .submit { width: 100%; }
}
@media (max-width: 390px) {
  h1 { font-size: clamp(4rem, 22vw, 5rem); }
  h2 { font-size: clamp(2rem, 12vw, 3.4rem); }
  .frontline { font-size: 2.05rem; }
  .pole { width: 112px; }
  .door-map, .enquiry { padding: 18px 14px; }
  .threshold { display: grid; justify-items: start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
