:root {
  --ink: #0b0e12;
  --navy: #171f2b;
  --wall: #243043;
  --panel: #10151d;
  --glass: rgba(255, 255, 255, .08);
  --line: rgba(255, 255, 255, .15);
  --cream: #f5ead7;
  --muted: #b8c0c8;
  --gold: #d9ae62;
  --cognac: #c87335;
  --green: #6f8d68;
  --teal: #1cc7bc;
  --red: #ff423d;
  --orange: #ff8a24;
  --yellow: #ffe45e;
  --blue: #3ab7ff;
  --shadow: 0 26px 80px rgba(0, 0, 0, .38);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    radial-gradient(circle at 80% 12%, rgba(28, 199, 188, .24), transparent 23rem),
    radial-gradient(circle at 8% 24%, rgba(255, 66, 61, .18), transparent 21rem),
    linear-gradient(135deg, #080a0d 0%, #172131 48%, #0c1016 100%);
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

img[data-image="shop-storefront"] {
  object-position: center 36% !important;
}

img[data-image="shop-lounge"] {
  object-position: center 48% !important;
}

img[data-image="shop-gallery-wall"],
img[data-image="shop-hookah-neon"],
img[data-image="shop-checkout-counter"] {
  object-position: center 44% !important;
}

img[data-image="shop-display-case"],
img[data-image="shop-vape-case"] {
  object-position: center 50% !important;
}

img[data-image="shop-flower-jars"] {
  object-position: center 28% !important;
}

img[data-image="chilla-smoke-interior"] {
  object-position: center 52% !important;
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem clamp(1rem, 4vw, 3rem);
  background: rgba(11, 14, 18, .78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  text-decoration: none;
}

.brand picture {
  display: block;
  width: clamp(9rem, 16vw, 15rem);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 5.2rem;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(236, 27, 121, .38)) drop-shadow(0 0 20px rgba(28, 199, 188, .22));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.site-nav a {
  min-height: 2.5rem;
  padding: .65rem .8rem;
  color: rgba(245, 234, 215, .78);
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.site-nav a.active,
.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.header-vip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: .72rem .95rem;
  color: #0b0e12;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-color: rgba(255, 228, 94, .8);
  border: 1px solid rgba(255, 228, 94, .8);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(255, 138, 36, .28);
  font-size: .84rem;
  font-weight: 950;
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
}

.header-vip-button:hover,
.header-vip-button.active {
  color: #0b0e12;
  background: linear-gradient(135deg, #fff06f, #ff9b35);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: 0 0 34px rgba(255, 138, 36, .38), 0 0 22px rgba(28, 199, 188, .18);
}

.menu-toggle {
  display: none;
}

main {
  overflow: hidden;
}

.hero,
.split-band,
.product-routes,
.cards,
.cta-band,
.trust-strip,
.review-band,
.page-hero {
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(21rem, 1.05fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  min-height: calc(100vh - 5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 24rem;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 36, .12), rgba(28, 199, 188, .18), transparent);
  filter: blur(28px);
}

.hero-copy,
.hero-media {
  position: relative;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 12ch;
  margin: .2rem 0 1rem;
  font-size: clamp(3.1rem, 7vw, 7.6rem);
  line-height: .86;
  letter-spacing: 0;
}

.hero-copy p,
.page-hero p,
.section-title p:last-child {
  max-width: 44rem;
  color: rgba(245, 234, 215, .76);
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 3rem;
  padding: .82rem 1.05rem;
  color: var(--cream);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: .5rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 228, 94, .72);
  box-shadow: 0 0 28px rgba(255, 138, 36, .22);
}

.btn.primary {
  color: #0b0e12;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-color: rgba(255, 228, 94, .8);
}

.btn.ghost {
  background: rgba(255, 255, 255, .07);
}

.hero-media {
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -1rem;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(217, 174, 98, .32), rgba(28, 199, 188, .18)),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: .75rem;
  box-shadow: 0 0 60px rgba(28, 199, 188, .16);
}

.hero-media picture,
.visit-band picture,
.bites-hero picture {
  display: block;
}

.hero-media img,
.visit-band img,
.bites-hero img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: .55rem;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-media > picture > img {
  aspect-ratio: 4 / 3;
  object-position: center center;
}

.hero-stamp {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: .85rem;
  align-items: center;
  max-width: 22rem;
  padding: .8rem;
  background: rgba(11, 14, 18, .82);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: .6rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 30px rgba(0, 0, 0, .45);
}

.hero-stamp picture {
  display: block;
  width: 6.5rem;
}

.hero-stamp picture img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 0 16px rgba(236, 27, 121, .36));
}

.hero-stamp strong {
  font-size: .95rem;
  line-height: 1.2;
}

.marquee {
  display: flex;
  gap: 1.3rem;
  overflow: hidden;
  padding: .95rem 0;
  color: var(--cream);
  background: #07090c;
  border-block: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 0 40px rgba(58, 183, 255, .08);
}

.marquee span {
  flex: 0 0 auto;
  font-size: clamp(1.25rem, 2.6vw, 2.15rem);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.marquee span:nth-child(3n + 1) {
  color: var(--yellow);
  text-shadow: 0 0 18px rgba(255, 228, 94, .34);
}

.marquee span:nth-child(3n + 2) {
  color: var(--teal);
  text-shadow: 0 0 18px rgba(28, 199, 188, .34);
}

.marquee span:nth-child(3n) {
  color: var(--orange);
  text-shadow: 0 0 18px rgba(255, 138, 36, .34);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(20rem, 1.08fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(36, 48, 67, .92), rgba(14, 18, 25, .96)),
    var(--navy);
  border-block: 1px solid var(--line);
}

.section-title h2,
.cta-band h2 {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: .9;
  letter-spacing: 0;
}

.stat-grid,
.cards,
.admin-stats,
.admin-grid {
  display: grid;
  gap: 1rem;
}

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

.stat-grid div,
.card,
.admin-card,
.review-card,
.lead-form,
.age-panel,
.social-pop,
.login-panel,
.admin-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: .6rem;
  box-shadow: var(--shadow);
}

.stat-grid div,
.card,
.admin-card {
  padding: 1.25rem;
}

.stat-grid strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: .9;
  text-shadow: 0 0 22px rgba(255, 228, 94, .22);
}

.stat-grid span,
.trust-strip span {
  color: rgba(245, 234, 215, .75);
  font-weight: 760;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(14, 18, 25, .82), rgba(36, 48, 67, .9)),
    var(--wall);
  border-block: 1px solid var(--line);
}

.trust-strip div {
  padding: 1rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .55rem;
}

.trust-strip strong {
  display: block;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.05;
}

.trust-strip div:first-child {
  border-color: rgba(217, 174, 98, .42);
  box-shadow: 0 0 36px rgba(217, 174, 98, .12);
}

.trust-strip span {
  display: block;
  margin-top: .42rem;
}

.product-routes {
  display: grid;
  grid-template-columns: minmax(17rem, .8fr) repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.product-routes article {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: .65rem;
}

.product-routes picture,
.product-routes img,
.graphic-tile {
  width: 100%;
}

.product-routes img,
.graphic-tile {
  aspect-ratio: 1.15;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: .45rem;
  object-fit: cover;
  background: var(--panel);
}

.graphic-tile {
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 66, 61, .3), rgba(28, 199, 188, .28)),
    var(--wall);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 950;
  text-shadow: 0 0 18px rgba(255, 138, 36, .5);
}

.review-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .65fr);
  gap: 1rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(28, 199, 188, .16), rgba(200, 115, 53, .18)),
    #0d1118;
}

.review-card {
  padding: 1.25rem;
}

.review-card h3 {
  margin: 0 0 .7rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: .94;
}

.review-card p,
.card p {
  color: rgba(245, 234, 215, .72);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(20rem, .86fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 6rem) max(1.25rem, 5vw);
  background:
    linear-gradient(135deg, rgba(7, 9, 12, .78), rgba(28, 199, 188, .12)),
    var(--ink);
  border-bottom: 1px solid var(--line);
}

.contact-hero > * {
  min-width: 0;
}

.contact-copy h1 {
  max-width: 13ch;
  margin: .2rem 0 1rem;
  color: #fff;
  font-size: clamp(3rem, 6.6vw, 7rem);
  line-height: .86;
  letter-spacing: 0;
}

.contact-copy p {
  max-width: 45rem;
  color: rgba(245, 234, 215, .76);
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
}

.contact-photo-card,
.contact-card,
.contact-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: .65rem;
  box-shadow: var(--shadow);
}

.contact-photo-card {
  overflow: hidden;
}

.contact-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.contact-photo-card div {
  display: grid;
  gap: .25rem;
  padding: 1rem;
  background: rgba(7, 9, 12, .72);
}

.contact-photo-card strong {
  color: var(--yellow);
  font-size: 1.25rem;
}

.contact-photo-card span {
  color: rgba(245, 234, 215, .78);
  font-weight: 780;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
}

.contact-card {
  display: grid;
  align-content: start;
  gap: .65rem;
  min-height: 17rem;
  padding: 1.25rem;
}

.contact-card.featured {
  border-color: rgba(217, 174, 98, .38);
  box-shadow: 0 22px 70px rgba(217, 174, 98, .12);
}

.contact-card h2 {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: .94;
}

.contact-card p {
  margin: 0;
  color: rgba(245, 234, 215, .72);
}

.mini-actions,
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(19rem, .72fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(2rem, 5vw, 4rem);
  padding: clamp(1.25rem, 4vw, 2rem);
  background:
    linear-gradient(135deg, rgba(36, 48, 67, .78), rgba(7, 9, 12, .86)),
    var(--panel);
}

.contact-strip {
  margin-top: 1rem;
}

.contact-strip span {
  padding: .5rem .7rem;
  color: var(--cream);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 900;
}

.contact-form {
  position: relative;
  background: rgba(5, 7, 10, .5);
}

.contact-photo-strip {
  display: grid;
  grid-template-columns: 1.15fr .92fr .92fr;
  gap: 1rem;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem);
}

.contact-photo-strip figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .65rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.contact-photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.contact-photo-strip figure:first-child img {
  aspect-ratio: 16 / 10;
}

.contact-photo-strip figcaption {
  position: absolute;
  left: .7rem;
  right: .7rem;
  bottom: .7rem;
  padding: .45rem .6rem;
  color: #fff;
  background: rgba(5, 7, 10, .72);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .45rem;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.shop-gallery {
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(135deg, rgba(7, 9, 12, .94), rgba(36, 48, 67, .78)),
    var(--panel);
  border-block: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1.4rem;
}

.gallery-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .65rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.gallery-grid figure.feature {
  grid-column: span 2;
}

.gallery-grid figure.portrait {
  grid-row: span 2;
}

.gallery-grid picture,
.gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.gallery-grid figure.portrait img {
  aspect-ratio: 3 / 4;
  object-position: center 44%;
}

.gallery-grid figcaption {
  position: absolute;
  left: .7rem;
  right: .7rem;
  bottom: .7rem;
  padding: .45rem .6rem;
  color: #fff;
  background: rgba(5, 7, 10, .72);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .45rem;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem);
}

.product-photo-strip figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .65rem;
}

.product-photo-strip picture,
.product-photo-strip img {
  display: block;
  width: 100%;
}

.product-photo-strip img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.product-photo-strip figcaption {
  padding: .75rem;
  color: var(--cream);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vip-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(27rem, .78fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.vip-hero h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 6vw, 6.2rem);
}

.vip-card {
  min-width: 0;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: .65rem;
  box-shadow: var(--shadow);
}

.reward-row {
  display: grid;
  grid-template-columns: minmax(7.4rem, .34fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.reward-row:last-child {
  border-bottom: 0;
}

.reward-row strong,
.vip-tier {
  color: var(--yellow);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: .9;
  text-shadow: 0 0 20px rgba(255, 228, 94, .22);
}

.reward-row span,
.vip-card span {
  min-width: 0;
  color: rgba(245, 234, 215, .72);
  font-weight: 780;
}

.vip-form {
  max-width: 34rem;
  margin-top: 1.2rem;
}

.vip-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.profile-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(18rem, .65fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(135deg, rgba(217, 174, 98, .16), rgba(28, 199, 188, .1)),
    #0a0d12;
  border-block: 1px solid var(--line);
}

.profile-panel h2 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: .92;
}

.profile-panel p:not(.eyebrow) {
  max-width: 42rem;
}

.profile-form {
  width: 100%;
}

.vip-dashboard .vip-card {
  display: grid;
  align-content: start;
  gap: .7rem;
}

.vip-dashboard .vip-card.wide {
  grid-column: span 2;
}

.notice-card {
  grid-column: 1 / -1;
}

.inline-claim-form {
  margin-top: .55rem;
}

.inline-claim-form .btn {
  width: 100%;
  justify-content: center;
}

.pending-pill {
  display: inline-flex;
  width: fit-content;
  padding: .45rem .65rem;
  color: #0b0e12 !important;
  background: var(--yellow);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tier-toggle {
  width: fit-content;
  padding: .6rem .8rem;
  color: #0b0e12;
  background: var(--yellow);
  border: 0;
  border-radius: .45rem;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.tier-panel {
  display: grid;
  gap: .7rem;
  padding-top: .15rem;
}

.tier-panel p {
  margin: 0;
  color: var(--cream);
  font-weight: 850;
}

.tier-list {
  display: grid;
  gap: .45rem;
}

.tier-list span {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .55rem .65rem;
  color: rgba(245, 234, 215, .78);
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .45rem;
}

.tier-list span.active {
  color: #0b0e12;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.tier-list strong {
  color: inherit;
}

.vip-program {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(18rem, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(135deg, rgba(28, 199, 188, .12), rgba(255, 138, 36, .13)),
    #0d1118;
  border-block: 1px solid var(--line);
}

.vip-levels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}

.vip-levels article {
  min-height: 9rem;
  padding: 1rem;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: .65rem;
}

.vip-levels strong {
  display: block;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: .95;
}

.vip-levels span {
  display: block;
  margin-top: .5rem;
  color: rgba(245, 234, 215, .72);
  font-weight: 850;
}

.vip-cards {
  padding-top: clamp(3rem, 6vw, 6rem);
}

.perk-list {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(245, 234, 215, .76);
}

.perk-list li + li {
  margin-top: .45rem;
}

.text-link {
  color: var(--yellow);
  font-weight: 950;
  text-underline-offset: .2em;
}

.page-hero {
  min-height: 45vh;
  display: grid;
  align-content: center;
}

.page-hero.compact h1 {
  max-width: 15ch;
}

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

.card h2 {
  margin: 0 0 .5rem;
  color: #fff;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background:
    linear-gradient(90deg, rgba(255, 138, 36, .2), rgba(28, 199, 188, .13)),
    #07090c;
  border-block: 1px solid var(--line);
}

.cta-band .eyebrow {
  color: var(--yellow);
}

.bites-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .75fr);
  gap: 2rem;
  align-items: center;
}

.accent-red {
  border-color: rgba(255, 66, 61, .32);
}

.accent-orange {
  border-color: rgba(255, 138, 36, .32);
}

.accent-blue {
  border-color: rgba(58, 183, 255, .32);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.pill-row span {
  padding: .5rem .75rem;
  color: var(--cream);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  font-weight: 850;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}

.area-links a {
  color: var(--yellow);
  font-weight: 900;
  text-underline-offset: .22em;
}

.lead-form {
  display: grid;
  gap: .9rem;
  padding: 1.2rem;
}

label {
  display: grid;
  gap: .35rem;
  color: var(--cream);
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  padding: .8rem;
  color: var(--cream);
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: .45rem;
  font: inherit;
}

.password-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
}

.password-field input {
  border-radius: .45rem 0 0 .45rem;
}

.password-toggle {
  padding: 0 .85rem;
  color: #0b0e12;
  background: var(--yellow);
  border: 1px solid rgba(255, 255, 255, .2);
  border-left: 0;
  border-radius: 0 .45rem .45rem 0;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--yellow) 50%) calc(100% - 1.05rem) 54% / .45rem .45rem no-repeat,
    linear-gradient(135deg, var(--yellow) 50%, transparent 50%) calc(100% - .75rem) 54% / .45rem .45rem no-repeat,
    rgba(0, 0, 0, .28);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(18rem, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(2.4rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
  color: var(--cream);
  background: #07090c;
  border-top: 1px solid var(--line);
}

.footer-brand picture {
  display: block;
  width: min(13rem, 70vw);
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(236, 27, 121, .3));
}

.footer-brand strong,
.footer-links strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.site-footer p {
  margin: .3rem 0;
  color: rgba(245, 234, 215, .7);
}

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

.footer-links {
  display: grid;
  gap: .35rem;
  align-content: start;
  font-weight: 850;
}

.footer-links a,
.footer-socials a {
  color: rgba(245, 234, 215, .74);
  text-decoration: none;
}

.footer-links a:hover,
.footer-socials a:hover {
  color: var(--yellow);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
  font-weight: 900;
}

.legal {
  grid-column: 1 / -1;
  max-width: 78rem;
  color: rgba(245, 234, 215, .55);
  font-size: .82rem;
}

.policy-content {
  display: grid;
  gap: 1rem;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem);
}

.policy-card {
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: .65rem;
}

.policy-card h2 {
  margin: 0 0 .45rem;
  color: #fff;
}

.policy-card p {
  margin: 0;
  color: rgba(245, 234, 215, .74);
}

.age-gate,
.social-pop {
  position: fixed;
  z-index: 60;
}

.age-gate {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 6, 8, .86);
  backdrop-filter: blur(10px);
}

.age-panel,
.social-pop {
  max-width: 31rem;
  padding: 1.35rem;
}

.age-panel h2,
.social-pop h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: .92;
}

.social-pop {
  right: 1rem;
  bottom: 1rem;
}

.icon-close {
  float: right;
  width: 2rem;
  aspect-ratio: 1;
  color: var(--cream);
  background: rgba(255, 66, 61, .78);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: .4rem;
  font-weight: 950;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.admin-screen {
  min-height: 100vh;
  padding: clamp(1rem, 4vw, 3rem);
  background: var(--ink);
}

.login-panel,
.admin-shell {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 1.25rem;
}

.login-panel {
  max-width: 26rem;
}

.login-panel h1,
.admin-head h1 {
  margin: 0 0 1rem;
}

.form-error {
  color: var(--red);
  font-weight: 850;
}

.notice {
  display: inline-block;
  padding: .7rem .9rem;
  color: #0b0e12;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: .45rem;
  font-weight: 900;
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-stats div {
  padding: 1rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .55rem;
}

.admin-stats strong {
  display: block;
  color: var(--yellow);
  font-size: 2.4rem;
}

.admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.admin-card.wide {
  grid-column: 1 / -1;
}

.tax-filter {
  display: flex;
  gap: .8rem;
  align-items: end;
  margin: 1rem 0;
}

.tax-filter label {
  min-width: min(100%, 18rem);
}

.tax-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
  margin: 1rem 0;
}

.tax-grid div {
  padding: .95rem;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .55rem;
}

.tax-grid strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: .95;
}

.tax-grid span {
  color: rgba(245, 234, 215, .72);
  font-weight: 820;
}

.tax-table {
  display: grid;
  overflow-x: auto;
}

.tax-table > div {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) minmax(10rem, .9fr) minmax(9rem, .6fr) minmax(8rem, .45fr);
  gap: .8rem;
  min-width: 44rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.tax-table-head {
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.request-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(8rem, .45fr) auto;
  gap: .8rem;
  align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.request-row:last-child {
  border-bottom: 0;
}

.request-row strong,
.request-row span {
  display: block;
}

.request-row span {
  color: rgba(245, 234, 215, .72);
  font-size: .92rem;
  font-weight: 780;
}

@media (max-width: 960px) {
  .hero,
  .split-band,
  .product-routes,
  .bites-hero,
  .vip-hero,
  .vip-dashboard,
  .trust-strip,
  .review-band,
  .site-footer,
  .contact-hero,
  .contact-panel,
  .vip-program {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .contact-photo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .vip-levels {
    grid-template-columns: 1fr 1fr;
  }

  .cards,
  .vip-dashboard,
  .admin-stats,
  .admin-grid,
  .tax-grid,
  .profile-panel {
    grid-template-columns: 1fr 1fr;
  }

  .product-routes .section-title {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .site-header {
    align-items: center;
  }

  .brand picture {
    width: 11rem;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 2.5rem;
    padding: .5rem .7rem;
    color: var(--cream);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: .45rem;
    font-weight: 950;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem;
    background: rgba(11, 14, 18, .96);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1,
  .page-hero h1,
  .contact-copy h1 {
    font-size: 3rem;
  }

  .vip-hero h1 {
    font-size: 3.15rem;
  }

  .cards,
  .stat-grid,
  .vip-dashboard,
  .admin-stats,
  .admin-grid,
  .profile-panel,
  .request-row,
  .tax-grid,
  .contact-grid,
  .contact-photo-strip,
  .vip-levels {
    grid-template-columns: 1fr;
  }

  .tax-filter {
    align-items: stretch;
    flex-direction: column;
  }

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

  .reward-row {
    grid-template-columns: minmax(4.5rem, .28fr) minmax(0, 1fr);
  }

  .reward-row strong {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .vip-dashboard .vip-card.wide {
    grid-column: auto;
  }

  .gallery-grid,
  .gallery-grid figure.feature,
  .gallery-grid figure.portrait,
  .product-photo-strip {
    grid-template-columns: 1fr;
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid img,
  .gallery-grid figure.portrait img {
    aspect-ratio: 4 / 3;
  }

  .hero-media > picture > img,
  .contact-photo-card img,
  .contact-photo-strip img,
  .product-photo-strip img {
    max-height: 62vh;
    object-fit: cover;
  }

  .hero-media > picture > img,
  .contact-photo-card img {
    object-position: center 42%;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stamp,
  .social-pop {
    position: static;
    margin-top: 1rem;
  }
}
