:root {
  --bg: #070605;
  --bg-2: #100d0a;
  --bg-3: #17130f;
  --bg-card: rgba(26, 20, 15, 0.72);
  --bronze: #c4a07a;
  --bronze-bright: #e0c4a4;
  --bronze-dim: #8d7056;
  --cream: #f3ece3;
  --white: #faf7f2;
  --muted: #a89886;
  --line: rgba(196, 160, 122, 0.2);
  --purple: #6b4fbb;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-display: "Bebas Neue", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-tagline: "Cinzel", "Cormorant Garamond", serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 100;
  background: var(--bronze);
  color: #1a120c;
  padding: 8px 12px;
  font-size: 13px;
}

.skip-link:focus {
  top: 16px;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 22px;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(7, 6, 5, 0.86);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo,
.hero-emblem,
.footer-logo {
  mix-blend-mode: lighten;
}

.brand-logo {
  width: 42px;
  height: auto;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  font-size: 18px;
  color: var(--white);
}

.brand-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 400;
}

.desktop-nav {
  margin-left: auto;
  display: none;
  gap: 28px;
}

.desktop-nav a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 236, 227, 0.78);
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: var(--bronze-bright);
}

.header-cta {
  display: none;
  margin-left: 8px;
  padding: 8px 14px;
  border: 1px solid var(--bronze);
  color: var(--bronze-bright);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.header-cta:hover {
  background: var(--bronze);
  color: #1a120c;
}

.menu-btn {
  margin-left: auto;
  width: 42px;
  height: 42px;
  background: none;
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  padding: 0;
}

.menu-btn span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s, width 0.3s;
}

.menu-btn span:nth-child(1) { width: 22px; }
.menu-btn span:nth-child(2) { width: 16px; }
.menu-btn span:nth-child(3) { width: 22px; }

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  width: 22px;
}
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 22px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(7, 6, 5, 0.96);
  display: grid;
  place-items: center;
  padding-top: var(--header-h);
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

.mobile-nav a:hover {
  color: var(--bronze);
}

body.menu-open {
  overflow: hidden;
}

/* Hero */
.hero {
  --hero-y: 0px;
  --hero-scale: 1;
  --hero-photo-scale: 1;
  --hero-opacity: 1;
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--header-h) + 12px) 24px 32px;
  overflow: hidden;
  text-align: center;
  background: #070605;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: scale(var(--hero-photo-scale));
  transform-origin: center;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.88) contrast(1.05);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(7, 6, 5, 0.52) 0%, rgba(7, 6, 5, 0.7) 48%, rgba(7, 6, 5, 0.9) 100%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.48) 0%, rgba(7, 6, 5, 0.4) 36%, rgba(7, 6, 5, 0.82) 100%);
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(196, 160, 122, 0.16), transparent 68%);
}

.hero-lockup {
  position: relative;
  z-index: 1;
  flex: 1;
  width: min(640px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.55);
  transform: translate3d(0, var(--hero-y), 0) scale(var(--hero-scale));
  opacity: var(--hero-opacity);
}

.hero-emblem {
  width: min(168px, 38vw);
  height: auto;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
  animation: emblemIn 1.6s var(--ease) 0.15s forwards;
}

.hero-wordmark,
.hero-rule,
.hero-place,
.hero-tagline,
.hero-actions,
.hero-pillars {
  opacity: 0;
  animation: riseIn 0.9s var(--ease) forwards;
}

.hero-wordmark { animation-delay: 0.85s; }
.hero-rule { animation-delay: 1s; }
.hero-place { animation-delay: 1.12s; }
.hero-tagline { animation-delay: 1.28s; }
.hero-actions { animation-delay: 1.7s; }
.hero-pillars { animation-delay: 1.95s; }

@keyframes emblemIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-wordmark {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 92px);
  letter-spacing: 0.18em;
  line-height: 0.9;
  color: var(--white);
  font-weight: 400;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 14px 0 0;
  color: var(--cream);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 0 18px rgba(0, 0, 0, 0.7);
}

.hero-rule span {
  width: 36px;
  height: 1px;
  background: var(--bronze-bright);
  opacity: 0.9;
}

.hero-place {
  margin: 22px 0 0;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: var(--cream);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 0 18px rgba(0, 0, 0, 0.7);
}

.hero-tagline {
  margin: 56px 0 0;
  font-family: var(--font-tagline);
  font-size: clamp(26px, 6vw, 46px);
  line-height: 1.25;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-tagline span {
  display: block;
  color: var(--white);
}

.hero-tagline .accent {
  color: var(--white);
  position: relative;
  display: inline-block;
  padding: 0 0.06em 0.22em;
}

.hero-tagline .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--bronze);
  box-shadow: 0 0 12px rgba(196, 160, 122, 0.32);
  transform: scaleX(0) rotate(-1deg);
  transform-origin: left center;
  animation: tagHighlight 0.9s var(--ease) 2.15s forwards;
}

@keyframes tagHighlight {
  to {
    transform: scaleX(1) rotate(-1deg);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

.hero-actions .btn {
  padding: 0 22px;
  min-height: 48px;
  border-radius: 8px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    filter 0.25s var(--ease);
}

.hero-actions .btn-gold:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 36px rgba(196, 160, 122, 0.35);
  background: #e0c19e;
  color: #0a0705;
  filter: none;
}

.hero-actions .btn-ghost:hover {
  transform: translateY(-3px) scale(1.04);
  background: rgba(196, 160, 122, 0.14);
  border-color: var(--bronze-bright);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.hero-pillars {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-top: 28px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--bronze);
}

.hero-pillars span {
  margin: 0 6px;
  opacity: 0.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, #e6cfae, #b8895e);
  color: #0e0a07;
  border: 0;
  font-weight: 700;
}

.btn-gold:hover {
  background: linear-gradient(180deg, #edd9bd, #c49a6c);
}

.hero-actions .btn-gold {
  background: #d4b08a;
  color: #0a0705;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-shadow: none;
}

.btn-ghost {
  border: 1px solid var(--bronze);
  color: var(--bronze-bright);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(196, 160, 122, 0.1);
}

.btn-purple {
  background: var(--purple);
  color: #fff;
  border: 0;
  font-weight: 600;
}

.btn-purple:hover {
  filter: brightness(1.08);
}

/* Strip */
.strip {
  --strip-y: 0px;
  --strip-scale: 1;
  --strip-opacity: 1;
  position: relative;
  z-index: 2;
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow-x: hidden;
}

.scroll-motion .hero-atmosphere,
.scroll-motion .hero-lockup,
.scroll-motion .strip {
  will-change: transform, opacity;
}

.scroll-motion .strip {
  transform: translate3d(0, var(--strip-y), 0) scale(var(--strip-scale));
  transform-origin: top center;
  opacity: var(--strip-opacity);
  box-shadow: 0 -28px 70px rgba(0, 0, 0, 0.46);
}

.strip-item {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  --strip-item-o: 0;
  --strip-item-x: -64px;
  opacity: var(--strip-item-o);
  transform: translate3d(var(--strip-item-x), 0, 0);
  background: transparent;
  transition:
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.strip-item:nth-child(even) {
  --strip-item-x: 64px;
}

.strip-item:last-child {
  border-bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
  .strip-item:hover {
    background: rgba(196, 160, 122, 0.07);
    box-shadow: inset 0 0 0 1px rgba(196, 160, 122, 0.28);
    animation: stripCardShake 0.55s ease-in-out;
  }
}

@keyframes stripCardShake {
  0%,
  100% {
    transform: translate3d(var(--strip-item-x), 0, 0) rotate(0deg);
  }
  18% {
    transform: translate3d(var(--strip-item-x), -4px, 0) rotate(-0.7deg);
  }
  36% {
    transform: translate3d(var(--strip-item-x), 3px, 0) rotate(0.55deg);
  }
  54% {
    transform: translate3d(var(--strip-item-x), -2px, 0) rotate(-0.4deg);
  }
  72% {
    transform: translate3d(var(--strip-item-x), 1px, 0) rotate(0.25deg);
  }
}

.scroll-motion .strip-item {
  will-change: transform, opacity;
}

@media (min-width: 860px) {
  .strip-item {
    --strip-item-x: -110px;
  }

  .strip-item:nth-child(even) {
    --strip-item-x: 110px;
  }
}

.strip-icon {
  width: 36px;
  height: 36px;
  color: var(--bronze);
}

.strip-icon svg,
.strip-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.strip-icon--ebay {
  width: 54px;
}

.strip-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

.strip-meta {
  font-size: 11px;
  color: var(--bronze);
  letter-spacing: 0.08em;
}

/* Sections */
.section {
  padding: 88px 0;
  position: relative;
  text-align: center;
}

.we-buy {
  background: var(--bg);
  overflow: visible;
  text-align: center;
}

.we-buy-pin {
  --we-buy-pin-top: calc(var(--header-h) + 8vh);
  --we-buy-stage-slot: 8.5rem;
  position: relative;
  height: 160vh;
  margin: 0 auto;
}

.storefront { background: var(--bg-2); }
.live { background: var(--bg); }
.about { background: var(--bg-2); }
.events { background: var(--bg); }
.faq { background: var(--bg-2); }
.contact {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196, 160, 122, 0.08), transparent 55%),
    var(--bg);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
}

.heading {
  margin: 0 0 28px;
  font-family: var(--font-sans);
  font-size: clamp(22px, 3.6vw, 32px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

.heading em {
  font-style: normal;
  color: var(--bronze);
  font-weight: 400;
}

.split {
  display: grid;
  gap: 40px;
}

.prose .heading {
  margin-bottom: 24px;
}

.prose {
  max-width: 38rem;
  margin-inline: auto;
}

.prose p {
  margin: 0 auto 16px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  max-width: 42ch;
}

.prose strong {
  color: var(--cream);
  font-weight: 500;
}

.prose .btn {
  margin-top: 10px;
}

.we-buy-stage {
  position: sticky;
  top: var(--we-buy-pin-top);
  z-index: 3;
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
  overflow: visible;
  min-height: var(--we-buy-stage-slot);
  padding: 8px 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.we-buy.is-headline-settled .we-buy-stage {
  overflow: visible;
}

.we-buy-heading {
  overflow: visible;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(28px, 7vw, 44px);
  max-width: 100%;
}

.we-buy-aftermath {
  position: sticky;
  top: calc(var(--we-buy-pin-top) + var(--we-buy-stage-slot));
  z-index: 2;
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
  margin-top: 4px;
  padding-bottom: 12px;
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.we-buy.is-headline-settled .we-buy-aftermath {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.we-buy .we-buy-prose {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.we-buy .we-buy-prose .we-buy-copy,
.we-buy .we-buy-prose p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.we-buy-line {
  display: block;
}

.we-buy-eyebrow,
.we-buy-line--slam,
.we-buy-line--follow,
.we-buy-copy {
  opacity: var(--we-buy-o, 0);
}

.we-buy-eyebrow {
  --we-buy-o: 0;
}

.we-buy-line--slam {
  --we-buy-o: 0;
  --we-buy-scale: 3.8;
  --we-buy-slam-y: 42vh;
  display: block;
  white-space: nowrap;
  transform: translate3d(0, var(--we-buy-slam-y), 0) scale(var(--we-buy-scale));
  transform-origin: center center;
  will-change: transform, opacity;
}

.we-buy-line--follow {
  --we-buy-o: 0;
  --we-buy-scale: 1.55;
  --we-buy-y: 36px;
  --we-buy-blur: 12px;
  --we-buy-track: 0.28em;
  display: block;
  white-space: nowrap;
  transform: translate3d(0, var(--we-buy-y), 0) scale(var(--we-buy-scale));
  filter: blur(var(--we-buy-blur));
  letter-spacing: var(--we-buy-track);
  transform-origin: center center;
  will-change: transform, opacity, filter, letter-spacing;
}

.we-buy-copy {
  --we-buy-o: 0;
  --we-buy-y: 16px;
  transform: translateY(var(--we-buy-y));
  will-change: transform, opacity;
  font-size: 17px;
  line-height: 1.65;
}

.scroll-motion .we-buy-line--slam,
.scroll-motion .we-buy-line--follow,
.scroll-motion .we-buy-copy {
  will-change: transform, opacity, filter, letter-spacing;
}

.we-buy-highlight--cash {
  position: relative;
  display: inline;
  color: var(--cream);
  transition: color 0.4s var(--ease);
}

.we-buy-cash {
  position: relative;
  display: inline-block;
  color: inherit;
  font-weight: 600;
}

.we-buy-highlight--cash.is-lit {
  animation: cashGlow 0.9s var(--ease) forwards;
}

.we-buy-highlight--cash.is-lit .we-buy-cash {
  animation: cashPop 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards;
}

@keyframes cashGlow {
  0% {
    color: var(--cream);
  }
  45% {
    color: var(--bronze-bright);
    text-shadow: 0 0 18px rgba(224, 196, 164, 0.35);
  }
  100% {
    color: var(--cream);
    text-shadow: 0 0 0 transparent;
  }
}

@keyframes cashPop {
  0% {
    transform: scale(1);
    color: inherit;
  }
  40% {
    transform: scale(1.12);
    color: var(--bronze-bright);
  }
  100% {
    transform: scale(1);
    color: var(--bronze-bright);
  }
}

.we-buy-highlight--unsure {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0.15em auto 0.55em;
  padding-block: 0.2em;
  color: var(--muted);
  transform: scale(1.28);
  transform-origin: center center;
  will-change: transform, opacity, color;
}

.we-buy-highlight--unsure.is-lit {
  animation: unsureReveal 1.2s cubic-bezier(0.22, 0.82, 0.24, 1) forwards;
}

@keyframes unsureReveal {
  0% {
    opacity: 0;
    color: var(--muted);
    transform: scale(1.35);
  }
  16% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    color: var(--white);
    transform: scale(1);
  }
}

.we-buy-highlight--cta {
  position: relative;
  isolation: isolate;
  border-radius: 10px;
  min-width: 200px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.2s,
    filter 0.2s;
}

.we-buy-highlight--cta:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(196, 160, 122, 0.28);
}

@media (min-width: 860px) {
  .we-buy-highlight--unsure {
    transform-origin: center center;
  }
}

.card-grid {
  display: grid;
  gap: 14px;
}

.info-card {
  padding: 22px 20px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, transform 0.25s;
}

.info-card:hover {
  border-color: rgba(196, 160, 122, 0.45);
  transform: translateY(-2px);
}

.info-icon {
  width: 32px;
  height: 32px;
  color: var(--bronze);
  margin: 0 auto 12px;
}

.info-icon svg {
  width: 100%;
  height: 100%;
}

.info-card h3 {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

.info-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

/* About signature (shop art) */
.about-signature {
  margin: 48px 0 0;
  padding: 0;
  border: 0;
  background: none;
  text-align: center;
}

.about-signature-img {
  display: block;
  width: 100%;
  max-width: min(420px, 72vw);
  height: auto;
  margin-inline: auto;
  border: 1px solid var(--line);
  filter: saturate(0.92) contrast(1.04);
}

/* Store */
.store-layout {
  display: grid;
  gap: 20px;
}

.store-copy {
  margin-bottom: 28px;
}

.city {
  margin: 0 0 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--bronze);
}

.store-copy p:last-child {
  color: var(--muted);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.store-gallery {
  margin-bottom: 28px;
}

.store-gallery-frame {
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg-3);
  overflow: hidden;
}

.store-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .store-gallery-track {
    scroll-behavior: auto;
  }
}

.store-gallery-track::-webkit-scrollbar {
  display: none;
}

.store-gallery-slide {
  margin: 0;
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.store-gallery-slide img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  max-height: 420px;
  object-fit: cover;
}

.store-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(7, 6, 5, 0.72);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.store-gallery-nav svg {
  width: 18px;
  height: 18px;
}

.store-gallery-nav:hover {
  background: rgba(7, 6, 5, 0.9);
  color: var(--bronze-bright);
  border-color: rgba(196, 160, 122, 0.45);
}

.store-gallery-nav:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}

.store-gallery-nav--prev {
  left: 10px;
}

.store-gallery-nav--next {
  right: 10px;
}

.store-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.store-gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid var(--bronze-dim);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.store-gallery-dot[aria-selected="true"] {
  background: var(--bronze);
  border-color: var(--bronze);
  transform: scale(1.15);
}

.store-gallery-dot:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}

.hours-card,
.map-card,
.coming-soon {
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 24px;
}

.hours-card h3 {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}

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

.hours li {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(196, 160, 122, 0.12);
  font-size: 14px;
  color: var(--cream);
}

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

.hours li span:last-child {
  color: var(--bronze-bright);
  letter-spacing: 0.04em;
}

.map-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 220px;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 30%, rgba(196, 160, 122, 0.12), transparent 55%),
    var(--bg-card);
  text-align: center;
}

.map-pin {
  width: 36px;
  height: 36px;
  color: var(--bronze);
}

.map-pin svg {
  width: 100%;
  height: 100%;
}

.map-addr {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.map-hint {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}

.map-card:hover {
  border-color: var(--bronze);
}

/* Live */
.live {
  text-align: center;
}

.live-prose {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.live-prose p {
  margin-left: auto;
  margin-right: auto;
}

.stream-ctas {
  display: grid;
  gap: 18px;
  margin-top: 44px;
  justify-content: center;
}

@media (min-width: 640px) {
  .live .stream-ctas {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 36rem;
    margin-inline: auto;
  }
}

.stars {
  margin: 0 0 10px;
  color: #e0b15a;
  font-size: 14px;
}

.stars span {
  color: var(--cream);
  margin-left: 6px;
  font-size: 13px;
  letter-spacing: 0;
}

/* Events */
.events {
  text-align: center;
}

.events-layout {
  display: grid;
  gap: 24px;
  max-width: 40rem;
  margin-inline: auto;
  justify-items: center;
}

.events .prose {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.events .prose p {
  margin-left: auto;
  margin-right: auto;
}

.coming-soon {
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.coming-icon {
  width: 42px;
  height: 42px;
  color: var(--bronze);
  margin-bottom: 12px;
}

.coming-icon svg {
  width: 100%;
  height: 100%;
}

.coming-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--white);
}

.coming-date {
  margin: 8px 0 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  font-size: 13px;
}

/* About */
.about-hero {
  position: relative;
  margin: 0 0 40px;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 28px 20px 36px;
  pointer-events: none;
}

.about-overlay .heading {
  text-align: center;
}

.about-intro {
  max-width: 36ch;
  color: var(--cream);
  font-weight: 300;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55);
}

.team-photo {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  overflow: hidden;
}

.team-photo-scene {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.45) brightness(0.38) contrast(1.08);
}

.team-photo-frame {
  position: absolute;
  z-index: 2;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: min(62%, 460px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(224, 196, 164, 0.85);
  box-shadow:
    0 0 0 8px rgba(7, 6, 5, 0.55),
    0 22px 60px rgba(0, 0, 0, 0.65);
}

.team-photo-portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.92) contrast(1.04);
}

.team-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 32%, rgba(7, 6, 5, 0.2) 0%, rgba(7, 6, 5, 0.62) 58%, rgba(7, 6, 5, 0.78) 100%);
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 42%,
      rgba(7, 6, 5, 0.45) 58%,
      rgba(7, 6, 5, 0.88) 78%,
      var(--bg-2) 100%
    );
}

.founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  margin-inline: auto;
}

.founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 18px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  text-align: center;
}

.founder--link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.founder--link:hover {
  border-color: rgba(196, 160, 122, 0.5);
}

.founder--link:hover .founder-handle {
  color: var(--bronze-bright);
}

.founder--link:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}

.mono {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  font-family: var(--font-serif);
  font-size: 18px;
  border-radius: 50%;
}

.founder-photo {
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.founder h3 {
  margin: 0;
  width: 100%;
  font-size: 20px;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
  text-align: center;
}

.founder p {
  margin: 4px 0 10px;
  width: 100%;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  text-align: center;
}

.founder-handle,
.founder a {
  width: 100%;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.founder a:hover {
  color: var(--bronze-bright);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s;
}

.faq-item[open] {
  border-color: rgba(196, 160, 122, 0.45);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--white);
  transition: color 0.2s;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.2em;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--bronze);
  transition: transform 0.25s var(--ease), color 0.2s;
}

.faq-item[open] summary::after {
  content: "–";
  color: var(--bronze-bright);
}

.faq-item summary:hover {
  color: var(--bronze-bright);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
}

.faq-item p + p {
  padding-top: 0;
  margin-top: -8px;
}

/* Contact */
.contact-inner {
  text-align: center;
}

.contact-inner .heading,
.contact-inner .eyebrow {
  text-align: center;
}

.contact-body {
  margin: -8px auto 28px;
  max-width: 46ch;
  color: var(--muted);
  font-weight: 300;
}

.ig-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: linear-gradient(180deg, #d4b48c, #b8895e);
  color: #1a120c;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.ig-cta:hover {
  filter: brightness(1.06);
}

.handles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 28px;
  margin-top: 32px;
}

.handle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 4px;
  color: inherit;
  border: 0;
  background: transparent;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  opacity: 0.92;
}

.handle-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.handle-icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: none;
}

.handle-icon--ebay img {
  width: 64px;
  height: 26px;
}

.handle-icon--whatnot img {
  width: 34px;
  height: 34px;
}

.handle-icon:hover {
  transform: translateY(-2px) scale(1.06);
  opacity: 1;
  border-color: transparent;
  background: transparent;
}

.handle-icon:hover img {
  opacity: 1;
  filter: none;
}

.handle-icon:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Footer */
.site-footer {
  padding: 48px 20px 64px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 44px;
  height: auto;
  margin: 0 auto 10px;
}

.footer-mark {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  font-size: 20px;
}

.footer-copy {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-card {
  width: min(420px, 100%);
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 32px 24px 20px;
  text-align: center;
}

.modal-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 28px;
}

.modal-card p {
  color: var(--muted);
  margin: 0 0 22px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-close {
  margin-top: 16px;
  background: none;
  border: 0;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.modal-close:hover {
  color: var(--cream);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.email-modal-card {
  width: min(440px, 100%);
  padding: 36px 28px 22px;
}

.email-modal-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.email-modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.email-modal-input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--cream);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.email-modal-input::placeholder {
  color: rgba(168, 152, 134, 0.7);
}

.email-modal-input:focus {
  border-color: rgba(196, 160, 122, 0.55);
  box-shadow: 0 0 0 3px rgba(196, 160, 122, 0.12);
}

.email-modal-input.is-invalid {
  border-color: rgba(196, 96, 86, 0.7);
}

.email-modal-submit {
  width: 100%;
}

.email-modal-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.email-modal-status {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.email-modal-status.is-error {
  color: #e2a49c;
}

.email-modal-status.is-success {
  color: var(--bronze-bright);
}

.email-modal.is-success .email-modal-form {
  display: none;
}

.email-modal.is-success .modal-close {
  margin-top: 8px;
}

body.email-modal-open {
  overflow: hidden;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Mobile type */
@media (max-width: 859px) {
  body {
    font-size: 18px;
    line-height: 1.65;
  }

  .brand-sub {
    font-size: 11px;
  }

  .hero-rule {
    font-size: 14px;
  }

  .hero-place {
    font-size: 13px;
  }

  .hero-tagline {
    font-size: clamp(32px, 8vw, 44px);
  }

  .btn {
    font-size: 14px;
  }

  .strip-label {
    font-size: 15px;
  }

  .strip-meta {
    font-size: 14px;
  }

  .eyebrow {
    font-size: 14px;
  }

  .heading {
    font-size: clamp(24px, 5.5vw, 30px);
  }

  .prose {
    max-width: 26rem;
  }

  .prose p,
  .store-copy p:last-child,
  .contact-body {
    font-size: 18px;
    line-height: 1.65;
    max-width: 32ch;
  }

  .info-card h3,
  .hours-card h3 {
    font-size: 15px;
  }

  .info-card p,
  .hours li,
  .map-addr {
    font-size: 16px;
  }

  .city,
  .map-hint {
    font-size: 14px;
  }

  .stars {
    font-size: 16px;
  }

  .stars span,
  .coming-date {
    font-size: 15px;
  }

  .about-overlay {
    padding: 28px 20px 24px;
  }

  .about-overlay .heading {
    margin-top: 44px;
  }

  .team-photo-frame {
    top: 10%;
  }

  .about-intro {
    font-size: 17px;
    line-height: 1.6;
    max-width: 32ch;
  }

  .founder h3 {
    font-size: 21px;
  }

  .founder p {
    font-size: 14px;
  }

  .founder a,
  .founder-handle,
  .ig-cta {
    font-size: 15px;
  }

  .footer-copy,
  .modal-close {
    font-size: 14px;
  }

  .we-buy-pin {
    --we-buy-pin-top: calc(var(--header-h) + 6vh);
    --we-buy-stage-slot: 11rem;
    /* Grow with cards/copy so sticky content can't paint over storefront */
    height: auto;
    min-height: 0;
    padding-bottom: 48px;
  }

  .we-buy-stage {
    min-height: var(--we-buy-stage-slot);
    overflow: visible;
  }

  /* Keep body in flow on mobile so the sticky stack fits the viewport */
  .we-buy-aftermath {
    position: relative;
    top: auto;
    z-index: auto;
  }

  .we-buy.section {
    padding-bottom: 64px;
  }

  .we-buy-line--slam {
    --we-buy-scale: 2.6;
    --we-buy-slam-y: 28px;
  }

  .we-buy-line--follow {
    --we-buy-scale: 1.2;
    --we-buy-y: 18px;
    --we-buy-blur: 8px;
    --we-buy-track: 0.18em;
  }

  .we-buy-heading {
    font-size: clamp(30px, 8.5vw, 40px);
  }

  .store-gallery-slide img {
    aspect-ratio: auto;
    max-height: none;
    height: auto;
    object-fit: contain;
  }

  .events.section {
    padding-bottom: 36px;
  }

  .about.section {
    padding-top: 36px;
  }
}

/* Desktop */
@media (min-width: 860px) {
  .menu-btn {
    display: none;
  }

  .desktop-nav,
  .header-cta {
    display: flex;
  }

  .hero {
    min-height: 100svh;
    padding: calc(var(--header-h) + 20px) 24px 40px;
  }

  .hero-emblem {
    width: 220px;
  }

  .hero-wordmark {
    font-size: clamp(72px, 8vw, 110px);
  }

  .hero-rule {
    font-size: 17px;
    letter-spacing: 0.34em;
    margin-top: 18px;
  }

  .hero-rule span {
    width: 56px;
  }

  .hero-place {
    font-size: 15px;
    letter-spacing: 0.3em;
    margin-top: 18px;
  }

  .hero-tagline {
    margin-top: 64px;
    font-size: clamp(36px, 4.2vw, 52px);
  }

  .hero-actions {
    margin-top: 48px;
    gap: 16px;
  }

  .hero-actions .btn {
    min-height: 56px;
    min-width: 220px;
    padding: 0 32px;
    font-size: 14px;
    letter-spacing: 0.18em;
  }

  .hero-pillars {
    padding-top: 36px;
    font-size: 12px;
  }

  .strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .strip-item {
    border-bottom: 0;
    border-right: 1px solid var(--line);
    justify-items: center;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 20px;
    gap: 12px;
  }

  .strip-item:last-child {
    border-right: 0;
  }

  .strip-icon {
    width: 48px;
    height: 48px;
  }

  .strip-icon--ebay {
    width: 72px;
  }

  .strip-label {
    font-size: 16px;
    letter-spacing: 0.2em;
  }

  .strip-meta {
    font-size: 14px;
    letter-spacing: 0.1em;
  }

  /* Desktop type scale — match We Buy body across sections */
  .eyebrow {
    font-size: 13px;
  }

  .heading {
    font-size: clamp(30px, 3.2vw, 42px);
  }

  .prose p,
  .we-buy-copy,
  .store-copy p:last-child,
  .contact-body,
  .about-intro,
  .live .live-prose p,
  .events .prose p {
    font-size: 20px;
    line-height: 1.7;
  }

  .we-buy .we-buy-prose .we-buy-copy,
  .we-buy .we-buy-prose p {
    font-size: 20px;
    max-width: 50ch;
  }

  .city {
    font-size: 15px;
  }

  .hours-card h3 {
    font-size: 15px;
  }

  .hours li {
    font-size: 17px;
  }

  .map-addr {
    font-size: 17px;
    line-height: 1.55;
  }

  .map-hint {
    font-size: 13px;
  }

  .stars {
    font-size: 16px;
  }

  .stars span {
    font-size: 15px;
  }

  .faq-item summary {
    font-size: 17px;
  }

  .faq-item p {
    font-size: 16px;
    line-height: 1.65;
  }

  .coming-title {
    font-size: 36px;
  }

  .coming-date {
    font-size: 15px;
  }

  .split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 56px;
  }

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

  .we-buy-pin {
    --we-buy-pin-top: calc(var(--header-h) + 16vh);
    --we-buy-stage-slot: 7.5rem;
    height: auto;
    padding-bottom: 64px;
  }

  .we-buy.section {
    padding-bottom: 24px;
  }

  .storefront.section {
    padding-top: 48px;
  }

  .we-buy-stage {
    margin-bottom: 0;
    overflow: visible;
    min-height: var(--we-buy-stage-slot);
  }

  .we-buy.is-headline-settled .we-buy-stage {
    overflow: visible;
  }

  .we-buy {
    overflow: visible;
  }

  .we-buy-heading {
    font-size: clamp(36px, 4.5vw, 56px);
    overflow: visible;
  }

  .we-buy-line--slam {
    --we-buy-scale: 4.4;
    --we-buy-slam-y: 0px;
    white-space: nowrap;
  }

  .we-buy-line--follow {
    --we-buy-scale: 1.45;
    --we-buy-y: 28px;
    --we-buy-blur: 14px;
    --we-buy-track: 0.34em;
  }

  .we-buy .we-buy-prose {
    text-align: center;
    max-width: 46rem;
    margin-inline: auto;
  }

  .we-buy .we-buy-prose .we-buy-copy,
  .we-buy .we-buy-prose p {
    margin-left: auto;
    margin-right: auto;
    max-width: 46ch;
  }

  .about-signature {
    margin-top: 64px;
  }

  .about-signature-img {
    max-width: 480px;
  }

  .we-buy .we-buy-highlight--cta {
    min-width: 280px;
    min-height: 52px;
    padding-inline: 36px;
    font-size: 13px;
  }

  .store-layout {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .store-gallery-slide img {
    max-height: 480px;
  }

  .events-layout {
    grid-template-columns: 1fr;
    align-items: center;
    max-width: 40rem;
    margin-inline: auto;
    justify-items: center;
    gap: 36px;
  }

  .events .prose {
    max-width: 40rem;
    margin-inline: auto;
    text-align: center;
  }

  .events .prose .heading,
  .events .prose .eyebrow {
    text-align: center;
  }

  .events .prose p {
    margin-left: auto;
    margin-right: auto;
    max-width: 42ch;
    text-align: center;
  }

  .events .coming-soon {
    width: min(100%, 28rem);
  }

  .founders {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }

  .founder,
  .founder--link {
    text-align: center;
    padding: 28px 16px;
  }

  .founder h3,
  .founder p,
  .founder-handle {
    text-align: center;
  }

  .founder h3 {
    font-size: 26px;
    letter-spacing: 0.01em;
  }

  .founder p {
    font-size: 12px;
  }

  .founder-handle {
    font-size: 14px;
  }

  .section {
    padding: 112px 0;
  }

  .we-buy {
    text-align: center;
  }

  .we-buy .we-buy-prose {
    margin-inline: auto;
  }

  .we-buy .we-buy-prose .we-buy-copy,
  .we-buy .we-buy-prose p {
    margin-left: auto;
    margin-right: auto;
  }

  .prose {
    max-width: none;
    margin-inline: 0;
  }

  .live .live-prose {
    max-width: 48rem;
    margin-inline: auto;
    text-align: center;
  }

  .live .live-prose p {
    margin-left: auto;
    margin-right: auto;
    max-width: 52ch;
    text-align: center;
  }

  .prose p {
    margin-left: 0;
    margin-right: 0;
    max-width: 50ch;
  }

  .info-icon {
    margin-left: 0;
    margin-right: auto;
  }

  .info-card {
    text-align: left;
  }

  .modal-actions {
    flex-direction: row;
    justify-content: center;
  }

  .about-hero {
    margin-bottom: 56px;
  }

  .team-photo-scene {
    max-height: min(78vh, 900px);
    width: 100%;
    object-fit: cover;
    object-position: center 18%;
  }

  .team-photo-frame {
    top: 12%;
    width: min(42%, 420px);
  }

  .about-overlay {
    padding: 48px 40px 56px;
  }

  .about-intro {
    max-width: 48ch;
    font-size: 17px;
  }
}

/* Landscape phones / small tablets: left-align content without forcing desktop grids */
@media (orientation: landscape) and (min-width: 640px) and (max-width: 859px) {
  .we-buy {
    text-align: center;
  }

  .events {
    text-align: center;
  }

  .live {
    text-align: center;
  }

  .prose {
    max-width: 38rem;
  }

  .live .live-prose {
    margin-inline: auto;
    text-align: center;
  }

  .events .prose {
    margin-inline: auto;
    text-align: center;
  }

  .prose p {
    margin-left: 0;
    margin-right: 0;
    max-width: 44ch;
  }

  .live .live-prose p,
  .events .prose p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .info-icon {
    margin-left: 0;
    margin-right: auto;
  }

  .info-card {
    text-align: left;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-emblem,
  .hero-wordmark,
  .hero-rule,
  .hero-place,
  .hero-tagline,
  .hero-actions,
  .hero-pillars,
  .reveal,
  .strip-item,
  .we-buy-eyebrow,
  .we-buy-line--slam,
  .we-buy-line--follow,
  .we-buy-copy,
  .we-buy-aftermath {
    opacity: 1;
    transform: none;
    filter: none;
    letter-spacing: inherit;
  }

  .we-buy-pin {
    height: auto;
  }

  .we-buy-cash {
    color: var(--bronze-bright);
  }

  .we-buy-highlight--unsure {
    color: var(--white);
    transform: none;
  }

  .hero-tagline .accent::after {
    transform: scaleX(1) rotate(-1deg);
  }
}
