:root {
  --black: #050505;
  --ink: #151411;
  --muted: #706b63;
  --paper: #f3efe7;
  --stone: #d4cec3;
  --signal: #b51e1e;
  --white: #ffffff;
  --line: rgba(21, 20, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

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

.storefront-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 70px;
  padding: 0 clamp(18px, 4vw, 38px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0));
}

.brand {
  justify-self: center;
  font: 900 clamp(22px, 4vw, 34px) / 1 Arial Black, Arial, sans-serif;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links.right {
  justify-content: flex-end;
}

.storefront-hero {
  position: relative;
  min-height: min(940px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.storefront-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.storefront-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.22) 54%, rgba(0, 0, 0, 0.44)),
    linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding: 120px clamp(18px, 6vw, 72px) clamp(34px, 8vw, 86px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-copy h2,
.location-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 800px;
  font-size: clamp(58px, 12vw, 148px);
  line-height: 0.86;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2.1vw, 24px);
  line-height: 1.36;
}

.hero-actions,
.address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.text-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.button {
  color: var(--black);
  background: var(--white);
}

.text-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.storefront-page main {
  display: grid;
  gap: 0;
}

.address-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 5vw, 72px);
  padding: clamp(38px, 8vw, 92px) clamp(18px, 6vw, 72px);
  background: var(--black);
  color: var(--white);
}

.address-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.address-card strong {
  font-size: clamp(28px, 5vw, 52px);
  line-height: 0.96;
}

.address-card p,
.address-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.address-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.address-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 0.92;
}

.find-store-journey {
  position: relative;
  height: 650svh;
  background: #050505;
  color: var(--white);
}

.journey-sticky {
  --journey-progress: 0;
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.journey-sticky.is-dragging {
  cursor: grabbing;
}

.journey-scene,
.journey-layer,
.location-overlay,
.journey-vignette {
  position: absolute;
  inset: 0;
}

.journey-scene {
  overflow: hidden;
}

.journey-layer {
  background-position: center;
  background-size: cover;
  will-change: opacity, transform;
}

.journey-fitting {
  background-image: url("assets/pizdon-find-fitting-room-v3.png");
  background-position: calc(50% + (var(--look-x, 0) * 4%)) calc(50% + (var(--look-y, 0) * 3%));
}

.journey-corridor {
  opacity: 0;
  background-image: url("assets/pizdon-find-mirror-corridor-v3.png");
  background-position: calc(50% + (var(--look-x, 0) * 5%)) calc(50% + (var(--look-y, 0) * 3%));
}

.journey-floor {
  opacity: 0;
  background-image: url("assets/pizdon-find-sales-floor-v3.png");
  background-position: calc(50% + (var(--look-x, 0) * 6%)) calc(50% + (var(--look-y, 0) * 4%));
}

.journey-product-wall {
  opacity: 0;
  background-image: url("assets/pizdon-find-product-wall-v4.png");
  background-position: calc(50% + (var(--look-x, 0) * 7%)) calc(50% + (var(--look-y, 0) * 4%));
}

.journey-product-table {
  opacity: 0;
  background-image: url("assets/pizdon-find-display-table-v4.png");
  background-position: calc(50% + (var(--look-x, 0) * 7%)) calc(50% + (var(--look-y, 0) * 4%));
}

.journey-close-rack {
  opacity: 0;
  background-image: url("assets/pizdon-find-close-rack-v4.png");
  background-position: calc(50% + (var(--look-x, 0) * 8%)) calc(50% + (var(--look-y, 0) * 5%));
}

.journey-front {
  opacity: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.16)),
    url("assets/pizdon-find-street-exit-v3.png");
  background-position: calc(50% + (var(--look-x, 0) * 5%)) calc(56% + (var(--look-y, 0) * 3%));
}

.journey-location {
  opacity: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.04) 58%, rgba(0, 0, 0, 0.34)),
    url("assets/pizdon-find-location-table-v3.png");
  background-position: calc(50% + (var(--look-x, 0) * 4%)) calc(50% + (var(--look-y, 0) * 3%));
  will-change: opacity, transform;
}

.location-overlay {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.journey-hotspots {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.journey-hotspot {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--white);
  background: rgba(181, 30, 30, 0.74);
  box-shadow: 0 0 0 8px rgba(181, 30, 30, 0.18), 0 0 32px rgba(181, 30, 30, 0.54);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.journey-hotspot::before {
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 999px;
  background: currentColor;
}

.journey-hotspot span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  min-width: max-content;
  padding: 9px 11px;
  color: var(--black);
  background: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.journey-hotspot.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.journey-hotspot:hover,
.journey-hotspot:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: var(--signal);
  outline: none;
  transform: translate(-50%, -50%) scale(1.14);
}

.journey-hotspot.wall.tee {
  left: calc(50% + (var(--look-x, 0) * -6%) + 5%);
  top: calc(50% + (var(--look-y, 0) * -4%) + 6%);
}

.journey-hotspot.wall.shell {
  left: calc(50% + (var(--look-x, 0) * -6%) - 13%);
  top: calc(50% + (var(--look-y, 0) * -4%) + 3%);
}

.journey-hotspot.wall.beanie {
  left: calc(50% + (var(--look-x, 0) * -6%) + 21%);
  top: calc(50% + (var(--look-y, 0) * -4%) - 20%);
}

.journey-hotspot.table.lineup {
  left: calc(50% + (var(--look-x, 0) * -6%) - 12%);
  top: calc(50% + (var(--look-y, 0) * -4%) + 12%);
}

.journey-hotspot.table.jacket {
  left: calc(50% + (var(--look-x, 0) * -6%) + 16%);
  top: calc(50% + (var(--look-y, 0) * -4%) + 6%);
}

.journey-hotspot.rack.coat {
  left: calc(50% + (var(--look-x, 0) * -7%) - 25%);
  top: calc(50% + (var(--look-y, 0) * -4%) + 2%);
}

.journey-hotspot.rack.cargo {
  left: calc(50% + (var(--look-x, 0) * -7%) + 18%);
  top: calc(50% + (var(--look-y, 0) * -4%) + 25%);
}

.map-grid {
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(24deg, transparent 46%, rgba(0, 0, 0, 0.2) 47%, rgba(0, 0, 0, 0.2) 51%, transparent 52%) 0 0 / 290px 180px,
    linear-gradient(114deg, transparent 46%, rgba(0, 0, 0, 0.22) 47%, rgba(0, 0, 0, 0.22) 51%, transparent 52%) 0 0 / 260px 170px,
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.72) 49%, rgba(255, 255, 255, 0.72) 52%, transparent 53%) 0 0 / 190px 100%;
  opacity: 0.72;
  transform: rotate(-8deg) scale(1.12);
}

.map-block {
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    rgba(64, 60, 54, 0.14);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
}

.block-a {
  top: 16%;
  left: 10%;
  width: 24%;
  height: 28%;
}

.block-b {
  top: 13%;
  right: 16%;
  width: 27%;
  height: 34%;
}

.block-c {
  right: 8%;
  bottom: 13%;
  width: 30%;
  height: 30%;
}

.block-d {
  left: 18%;
  bottom: 12%;
  width: 28%;
  height: 32%;
}

.map-street {
  position: absolute;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(5, 5, 5, 0.7);
  background: rgba(255, 255, 255, 0.58);
  font-size: clamp(12px, 1.5vw, 18px);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.map-street.prince {
  top: 48%;
  left: 12%;
  transform: rotate(-7deg);
}

.map-street.greene {
  top: 33%;
  left: 50%;
  transform: rotate(78deg);
}

.map-street.mercer {
  right: 18%;
  bottom: 29%;
  transform: rotate(78deg);
}

.map-pin {
  position: absolute;
  right: clamp(28px, 8vw, 112px);
  bottom: clamp(92px, 16vh, 172px);
  display: grid;
  gap: 6px;
  min-width: 230px;
  padding: 18px 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.82);
  box-shadow: 0 0 0 1px rgba(181, 30, 30, 0.34), 0 22px 80px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(14px);
}

.map-pin::after {
  position: absolute;
  right: 44px;
  bottom: -18px;
  width: 18px;
  height: 18px;
  content: "";
  background: rgba(0, 0, 0, 0.82);
  transform: rotate(45deg);
}

.map-pin span {
  color: var(--signal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.map-pin strong {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1;
}

.map-pin small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-vignette {
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 0%, transparent 48%, rgba(0, 0, 0, 0.46) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), transparent 44%, rgba(0, 0, 0, 0.16)),
    linear-gradient(to top, rgba(0, 0, 0, 0.74), transparent 36%);
}

.journey-hud {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  min-height: 100svh;
  width: min(760px, 100%);
  padding: 110px clamp(18px, 6vw, 72px) clamp(32px, 7vw, 72px);
  pointer-events: none;
}

.journey-hud h2 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.9;
}

.journey-hud p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.4;
}

.journey-progress {
  width: min(520px, 100%);
  height: 4px;
  margin-top: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.journey-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
}

.journey-stage-rail {
  display: flex;
  gap: 7px;
  margin-top: 18px;
}

.journey-stage-rail span {
  width: 34px;
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
}

.journey-stage-rail span.is-active {
  background: var(--signal);
  box-shadow: 0 0 18px rgba(181, 30, 30, 0.54);
}

.journey-hud dl {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.journey-hud dl div {
  min-width: 156px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(12px);
}

.journey-hud dt {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-hud dd {
  margin: 6px 0 0;
  font-size: 15px;
  font-weight: 900;
}

.journey-look-note {
  position: absolute;
  right: clamp(18px, 4vw, 46px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 4;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-shop-note {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 4vw, 42px);
  z-index: 5;
  padding: 10px 12px;
  color: var(--black);
  background: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.journey-shop-note.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 760px;
}

.section-split.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.section-image {
  min-height: 620px;
  background: var(--black);
}

.section-image img {
  height: 100%;
  object-fit: cover;
}

.section-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(36px, 7vw, 82px);
  background: var(--paper);
}

.section-copy.dark {
  color: var(--white);
  background: #10100f;
}

.section-copy h2,
.location-card h2 {
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.92;
}

.section-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.section-copy.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.layout-grid article,
.milestone-grid article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.section-copy.dark .layout-grid article {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.layout-grid span,
.milestone-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
}

.layout-grid strong,
.milestone-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.layout-grid p,
.milestone-grid p {
  font-size: 14px;
}

.location-card {
  display: grid;
  gap: 22px;
  padding: clamp(40px, 7vw, 86px) clamp(18px, 6vw, 72px);
  background: #d9d3c8;
}

.location-card p {
  max-width: 840px;
  margin: 0;
  color: #4d4943;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.46;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.disclaimer {
  padding: 18px clamp(18px, 6vw, 72px) 120px;
  color: #6e685f;
  background: #d9d3c8;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .storefront-nav,
  .address-band,
  .section-split,
  .section-split.reverse,
  .milestone-grid {
    grid-template-columns: 1fr;
  }

  .brand,
  .nav-links,
  .nav-links.right {
    justify-self: start;
  }

  .storefront-nav {
    position: absolute;
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

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

  .section-split.reverse .section-image {
    order: -1;
  }

  .find-store-journey {
    height: 600svh;
  }

  .journey-hud {
    padding-top: 150px;
  }

  .journey-look-note {
    display: none;
  }

  .journey-shop-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    text-align: center;
    transform: translateY(8px);
  }

  .journey-shop-note.is-visible {
    transform: translateY(0);
  }

  .map-pin {
    right: 18px;
    bottom: 92px;
    min-width: 190px;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: clamp(52px, 18vw, 86px);
  }

  .hero-actions,
  .address-actions {
    display: grid;
  }

  .section-image {
    min-height: 420px;
  }

  .journey-hud {
    align-content: center;
    padding-top: 120px;
    padding-bottom: 26px;
  }

  .journey-hud h2 {
    font-size: clamp(42px, 16vw, 74px);
  }

  .journey-hud p:not(.eyebrow) {
    font-size: 15px;
  }

  .journey-hud dl {
    display: grid;
  }

  .journey-hud dl div {
    min-width: 0;
  }

  .map-street {
    font-size: 10px;
  }

  .map-pin {
    min-width: 132px;
    padding: 12px;
  }

  .map-pin strong {
    font-size: 16px;
  }
}
