:root {
  --bg: #050407;
  --bg-deep: #020103;
  --surface: #111016;
  --surface-soft: #171022;
  --surface-warm: #110b19;
  --surface-ink: rgba(5,4,7,.78);
  --purple: #4B148C;
  --purple-hot: #7B2BFF;
  --magenta: #C13BFF;
  --green: #7AC943;
  --green-hot: #A6FF3D;
  --cream: #F7F2EA;
  --text: #F7F2EA;
  --ink: #F7F2EA;
  --muted: #B8B0C4;
  --muted-dark: #B8B0C4;
  --border: rgba(255,255,255,.13);
  --border-dark: rgba(247,242,234,.16);
  --shadow: 0 28px 86px rgba(0,0,0,.5);
  --paint-shadow: 0 0 32px rgba(123,43,255,.32), 0 18px 46px rgba(0,0,0,.42);
  --neon-ring: 0 0 0 1px rgba(166,255,61,.18), 0 0 28px rgba(123,43,255,.36), inset 0 0 22px rgba(193,59,255,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(123,43,255,.18), transparent 32rem),
    radial-gradient(circle at 82% 18%, rgba(193,59,255,.12), transparent 26rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
body.gate-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--green-hot); outline-offset: 3px; }

.skip-link {
  position: absolute;
  top: -80px;
  left: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--green-hot);
  color: #050407;
  font-weight: 900;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section-pad { padding: 76px 0; }
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--green-hot);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.02; margin: 0; letter-spacing: 0; }
h1, h2 { font-family: "Archivo Black", Impact, "Arial Black", sans-serif; text-transform: uppercase; }
h1, h2 { overflow-wrap: break-word; }
h1 { font-size: clamp(3.05rem, 6vw, 5rem); max-width: 920px; text-shadow: 0 0 24px rgba(139,44,255,.35); }
h2 { font-size: clamp(2.18rem, 5.2vw, 4.55rem); }
h3 { font-size: 1.15rem; }
p { color: var(--muted); margin: 1rem 0 0; }
.lead { font-size: clamp(1.05rem, 2vw, 1.24rem); max-width: 720px; color: #e9e1d3; }
.micro, .fine-print { font-size: .88rem; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .9rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 900;
  font-size: .95rem;
  text-transform: uppercase;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--green-hot), var(--green));
  color: #050407;
  border-color: rgba(166,255,61,.82);
  box-shadow: 0 0 30px rgba(166,255,61,.24), 0 16px 40px rgba(0,0,0,.34);
}
.btn-primary:hover { box-shadow: 0 0 38px rgba(166,255,61,.34), 0 18px 48px rgba(0,0,0,.42); }
.btn-secondary {
  background: rgba(123,43,255,.18);
  color: var(--text);
  border-color: rgba(193,59,255,.58);
  box-shadow: 0 0 22px rgba(123,43,255,.12);
}
.btn-quiet, .btn-ghost { color: var(--cream); border-color: rgba(139,44,255,.5); }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.55rem; }

.wordmark {
  display: inline-flex;
  align-items: center;
  margin-left: clamp(-26px, -1.7vw, -14px);
  color: var(--cream);
  font-weight: 900;
  line-height: 1;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.brand-logo {
  display: block;
  width: clamp(288px, 28vw, 382px);
  height: 82px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(139,44,255,.62);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(139,44,255,.28), rgba(255,255,255,.03));
  color: var(--green-hot);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1rem;
}
.wordmark-text {
  display: grid;
  gap: .08rem;
  line-height: 1.02;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.32rem;
}
.wordmark-text small {
  font-family: Inter, system-ui, sans-serif;
  font-size: .67rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--green-hot);
}
.wordmark.vcard-text-wordmark {
  background: rgba(5,4,7,.72);
  border-color: rgba(139,44,255,.42);
}
.footer-logo {
  width: min(270px, 100%);
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 70% 20%, rgba(139,44,255,.32), transparent 34%),
    radial-gradient(circle at 26% 72%, rgba(166,255,61,.1), transparent 24%),
    linear-gradient(rgba(5,4,7,.7), rgba(5,4,7,.96)),
    url("../backgrounds/hero-purple-mountain-bg.webp") center/cover;
}
.age-gate.is-active { display: flex; }
.age-card {
  width: calc(100% - 64px);
  max-width: 560px;
  padding: clamp(22px, 6vw, 32px);
  background: rgba(17,16,22,.96);
  border: 1px solid rgba(139,44,255,.42);
  border-radius: 8px;
  box-shadow: var(--shadow), 0 0 54px rgba(123,43,255,.22);
  position: relative;
  overflow: hidden;
}
.age-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, transparent, var(--magenta), var(--green-hot), transparent);
  opacity: .82;
}
.age-card h1 {
  max-width: 100%;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  overflow-wrap: anywhere;
}
.age-card p { max-width: 100%; overflow-wrap: anywhere; }
.age-actions { display: grid; gap: .75rem; margin-top: 1.4rem; }
.age-card .btn { width: 100%; min-width: 0; }
.age-logo {
  width: 112px;
  height: 112px;
  margin-bottom: 1.3rem;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 28px rgba(139,44,255,.42));
}

@media (max-width: 480px) {
  .age-card h1 { font-size: clamp(2rem, 10vw, 2.6rem); }
  .age-card .wordmark { align-items: flex-start; }
  .age-card .brand-logo { height: 50px; max-width: min(190px, 100%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5,4,7,.78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  width: min(1240px, calc(100% - 28px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
}
.site-nav a {
  position: relative;
  padding-bottom: .14rem;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--text); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.18rem;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-hot), var(--green-hot));
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .18s ease, transform .18s ease;
}
.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: .9;
  transform: scaleX(1);
}
.site-nav .nav-badge::after { display: none; }
.nav-badge {
  padding: .38rem .62rem;
  border: 1px solid rgba(166,255,61,.5);
  border-radius: 999px;
  color: var(--green-hot) !important;
}
.header-cta {
  padding: .9rem 1.35rem;
  background: linear-gradient(135deg, var(--green-hot), var(--green));
  color: #050407;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(166,255,61,.22), 0 12px 38px rgba(0,0,0,.36);
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(123,43,255,.42), transparent 30%),
    linear-gradient(90deg, rgba(5,4,7,.98) 0%, rgba(5,4,7,.82) 48%, rgba(5,4,7,.32) 100%),
    url("../backgrounds/hero-purple-mountain-bg.webp") center/cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 62% 26%, rgba(139,44,255,.28), transparent 18%),
    radial-gradient(circle at 28% 78%, rgba(166,255,61,.1), transparent 20%),
    linear-gradient(180deg, rgba(5,4,7,.04), rgba(5,4,7,.38));
  animation: smokeDrift 11s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5,4,7,.92));
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(310px, .66fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100svh - 170px);
  padding: 52px 0 46px;
}
.hero-copy { max-width: 780px; }
.hero h1 span {
  display: block;
  color: var(--green-hot);
  text-shadow: 0 0 24px rgba(166,255,61,.22), 0 6px 0 rgba(75,20,140,.5);
}
.hero-art {
  display: grid;
  place-items: center;
  min-height: 500px;
}
.hero-art img {
  width: min(100%, 560px);
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  filter: drop-shadow(0 0 26px rgba(139,44,255,.5)) drop-shadow(0 26px 58px rgba(0,0,0,.62));
  animation: floatBadge 6.8s ease-in-out infinite alternate;
}
.hero-logo-stage {
  min-height: 440px;
  padding: 34px;
  border: 1px solid rgba(193,59,255,.3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 44%, rgba(166,255,61,.08), transparent 44%),
    linear-gradient(145deg, rgba(5,4,7,.32), rgba(5,4,7,.76));
  box-shadow: 0 22px 90px rgba(0,0,0,.24), inset 0 0 42px rgba(139,44,255,.12);
}
.hero-logo-stage img {
  width: min(82%, 410px);
  max-height: 520px;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 46%, rgba(0,0,0,.72) 64%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, #000 46%, rgba(0,0,0,.72) 64%, transparent 80%);
}
.hero-card {
  margin-top: 2rem;
  max-width: 660px;
  padding: 1rem;
  border: 1px solid rgba(139,44,255,.38);
  border-radius: 8px;
  background: rgba(17,16,22,.78);
  box-shadow: var(--shadow);
}
.compliance-line {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.35rem;
}
.compliance-line span, .page-kicker span {
  padding: .5rem .68rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(139,44,255,.12);
  font-size: .86rem;
  font-weight: 900;
}
.trust-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background:
    linear-gradient(90deg, rgba(5,4,7,.98), rgba(27,19,39,.96), rgba(5,4,7,.98));
  border-top: 1px solid rgba(139,44,255,.32);
  border-bottom: 1px solid rgba(139,44,255,.32);
}
.trust-strip article {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  min-height: 170px;
  padding: 1.45rem 1.2rem 1.6rem;
  background: rgba(5,4,7,.9);
  border-left: 1px solid rgba(139,44,255,.42);
}
.trust-strip article:first-child { border-left: 0; }
.trust-strip img {
  width: 62px;
  height: 62px;
  margin-bottom: .78rem;
  padding: 10px;
  border: 1px solid rgba(193,59,255,.5);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(166,255,61,.12), rgba(5,4,7,.94) 60%);
  box-shadow: var(--neon-ring);
}
.trust-strip strong { display: block; color: var(--cream); font-size: 1.02rem; }
.trust-strip span { display: block; margin-top: .22rem; color: var(--muted); font-size: .9rem; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 56px;
  background:
    radial-gradient(circle at 76% 18%, rgba(139,44,255,.28), transparent 28%),
    linear-gradient(135deg, rgba(5,4,7,.96) 0%, rgba(17,16,22,.88) 58%, rgba(2,1,3,.96) 100%),
    url("../backgrounds/hero-purple-mountain-bg.webp") center/cover;
  border-bottom: 1px solid var(--border);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 36px;
  align-items: center;
}
.page-hero h1 { font-size: clamp(3rem, 7vw, 5.8rem); }
.page-hero p { max-width: 720px; font-size: 1.06rem; }
.page-hero-card {
  min-height: 330px;
  border: 1px solid rgba(139,44,255,.42);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5,4,7,.24), rgba(5,4,7,.76)),
    url("../backgrounds/hero-purple-mountain-bg.webp") center/cover;
  box-shadow: var(--shadow);
}
.page-hero-card.brand-card {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(139,44,255,.36), transparent 64%),
    #050407;
}
.page-hero-card.brand-card img {
  width: min(78%, 360px);
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 24px rgba(139,44,255,.34));
}
.page-kicker { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.25rem; }

.split { display: grid; grid-template-columns: .94fr 1.06fr; gap: 44px; align-items: center; }
.reverse { grid-template-columns: 1fr .95fr; }
.surface-light {
  background:
    radial-gradient(circle at 8% 0%, rgba(139,44,255,.2), transparent 34%),
    radial-gradient(circle at 88% 92%, rgba(166,255,61,.05), transparent 28%),
    var(--surface-warm);
  color: var(--text);
}
.surface-light p { color: var(--muted); }
.surface-light .eyebrow { color: var(--green-hot); }
.soft-section { background: var(--surface-soft); }
.section-head { max-width: 820px; text-align: center; }
.section-head p { margin-left: auto; margin-right: auto; }

.category-grid, .content-grid, .delivery-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.category-grid article, .content-card, .delivery-step {
  position: relative;
  overflow: hidden;
  min-height: 185px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(123,43,255,.16), rgba(255,255,255,.025));
}
.delivery-step p { overflow-wrap: anywhere; }
.surface-light .delivery-step {
  border-color: var(--border-dark);
  background:
    linear-gradient(145deg, rgba(123,43,255,.14), rgba(255,255,255,.045));
}
.category-grid span, .delivery-step span {
  color: var(--green-hot);
  font-weight: 900;
  font-size: .82rem;
}
.surface-light .delivery-step span { color: #050407; }
.category-grid h3, .delivery-step h3 { margin-top: 32px; }
.process-poster {
  display: block;
  margin-top: 28px;
  border: 1px solid rgba(193,59,255,.46);
  border-radius: 8px;
  overflow: hidden;
  background: #050407;
  box-shadow: 0 0 42px rgba(123,43,255,.2), 0 22px 68px rgba(0,0,0,.38);
}
.process-poster img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.delivery-step::before {
  content: "";
  position: absolute;
  inset: 12px auto auto 18px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(193,59,255,.55);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(166,255,61,.13), transparent 62%);
  box-shadow: var(--neon-ring);
}
.delivery-step span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-hot), var(--green));
}

.menu-panel {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 28px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(139,44,255,.2), rgba(255,255,255,.04));
  border: 1px solid rgba(139,44,255,.4);
  border-radius: 8px;
}
.embed-placeholder {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: rgba(5,4,7,.72);
  border: 1px dashed rgba(139,44,255,.58);
  border-radius: 8px;
}
.embed-placeholder span {
  color: var(--green-hot);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: 0;
}
.embed-placeholder strong { margin-top: .4rem; font-size: 1.45rem; }
.embed-placeholder p { max-width: 560px; }

.note-panel {
  padding: 24px;
  border: 1px solid rgba(139,44,255,.34);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(139,44,255,.16), rgba(255,255,255,.04));
}
.note-panel h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
.content-grid { grid-template-columns: repeat(3, 1fr); }
.content-card h3 { margin-bottom: .6rem; }
.content-card p { margin-top: .5rem; }
.brand-showcase {
  display: grid;
  place-items: center;
  min-height: 320px;
}
.brand-showcase img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--paint-shadow);
}
.category-section {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(193,59,255,.16), transparent 34%),
    linear-gradient(180deg, rgba(139,44,255,.12), rgba(5,4,7,.98)),
    #050407;
}
.category-section::before,
.faq::before,
.site-footer::before {
  content: "";
  display: block;
  height: 18px;
  background:
    linear-gradient(90deg, transparent, rgba(193,59,255,.72), rgba(166,255,61,.68), rgba(193,59,255,.72), transparent);
  opacity: .42;
}
.product-head h2 {
  font-size: clamp(2.05rem, 4.2vw, 3.55rem);
}
.product-category-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.product-category-grid a {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  background: #050407;
  border-color: rgba(139,44,255,.38);
  border: 1px solid rgba(139,44,255,.58);
  border-radius: 8px;
  box-shadow: var(--paint-shadow);
  transition: transform .18s ease, border-color .18s ease;
}
.product-category-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(166,255,61,.7);
}
.product-category-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  opacity: .92;
  filter: saturate(1.12) contrast(1.04);
}
.product-category-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 44%, rgba(5,4,7,.88) 100%),
    radial-gradient(circle at 30% 100%, rgba(139,44,255,.34), transparent 48%);
}
.product-category-grid strong {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  z-index: 1;
  color: var(--cream);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(.82rem, 1.05vw, 1.08rem);
  line-height: .95;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0,0,0,.72);
  overflow-wrap: anywhere;
}

.about-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 45%, rgba(139,44,255,.32), transparent 28%),
    url("../dividers/pnt-divider-neon-leaf.webp") center top/980px auto no-repeat,
    linear-gradient(135deg, #050407 0%, #0b0610 52%, #050407 100%);
}
.about-band::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 18px;
  background: linear-gradient(90deg, transparent, rgba(139,44,255,.72), transparent);
  opacity: .45;
}
.about-grid {
  display: grid;
  grid-template-columns: .82fr 1fr .74fr;
  gap: 34px;
  align-items: center;
}
.about-medallion {
  position: relative;
  aspect-ratio: 1;
  border: 2px solid rgba(139,44,255,.72);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--paint-shadow);
}
.about-medallion > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.06);
}
.about-medallion::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 34%, rgba(5,4,7,.66) 100%);
}
.about-badge {
  position: absolute;
  right: -5%;
  bottom: -5%;
  z-index: 1;
  width: 42%;
  filter: drop-shadow(0 0 18px rgba(139,44,255,.5));
}
.about-copy h2 span,
.cta-band h2 span {
  display: block;
  color: var(--green-hot);
}
.about-copy .btn { margin-top: 1.25rem; }
.about-values {
  display: grid;
  gap: 20px;
  padding-left: 26px;
  border-left: 1px solid rgba(139,44,255,.5);
}
.about-values article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.about-values img {
  grid-row: span 2;
  filter: drop-shadow(0 0 20px rgba(139,44,255,.3));
}
.about-values strong {
  color: var(--green-hot);
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
}
.about-values span {
  color: var(--muted);
  font-size: .94rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 42px 0;
  background:
    linear-gradient(90deg, rgba(5,4,7,.96), rgba(5,4,7,.68) 48%, rgba(5,4,7,.28)),
    url("../generated/pnt-cta-order-banner.webp") center/cover,
    #171022;
}
.cta-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(240px, .55fr);
  gap: 28px;
  align-items: center;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}
.cta-band p {
  margin-top: .4rem;
  color: #f4ecdf;
}
.cta-band .btn-primary {
  background: linear-gradient(135deg, var(--green-hot), var(--green));
  color: #050407;
  border-color: rgba(166,255,61,.82);
}
.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.temporary-menu-hero .page-hero-grid { grid-template-columns: .92fr .78fr; }
.fallback-note {
  margin-top: .95rem;
  color: #f4ecdf;
  font-weight: 800;
}
.fallback-note strong { color: var(--green-hot); }
.temporary-menu-preview {
  padding: 10px;
  border: 1px solid rgba(139,44,255,.34);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  box-shadow: var(--shadow);
}
.temporary-menu-preview img {
  width: 100%;
  height: min(62vh, 560px);
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
}
.temporary-menu-alert { background: #0a0610; }
.notice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
}
.notice-card {
  padding: 22px;
  border: 1px solid rgba(139,44,255,.34);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
}
.notice-card strong { color: var(--cream); font-size: 1.1rem; }
.fallback-card {
  display: grid;
  gap: .75rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(166,255,61,.12), transparent 38%),
    linear-gradient(145deg, rgba(139,44,255,.22), rgba(255,255,255,.055));
}
.fallback-card span,
.connected-store-actions span {
  color: var(--green-hot);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.fallback-card p { margin: 0; }
.fallback-card .btn { justify-self: start; }
.menu-photo-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feature-grid { align-items: stretch; }
.flower-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.menu-photo-card {
  overflow: hidden;
  border: 1px solid rgba(16,32,25,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 18px 44px rgba(16,32,25,.1);
}
.section-pad:not(.surface-light) .menu-photo-card {
  border-color: var(--border);
  background: rgba(255,255,255,.045);
}
.menu-photo-card a {
  display: grid;
  height: 100%;
  color: inherit;
}
.menu-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #06100e;
}
.menu-photo-card span {
  display: block;
  padding: .82rem .9rem;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.25;
}
.section-pad:not(.surface-light) .menu-photo-card span { color: var(--cream); }
.menu-photo-card.is-featured { grid-column: span 2; }
.menu-photo-card.is-featured img { aspect-ratio: 16 / 10; }
.delivery-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
}
.support-actions { display: grid; gap: 10px; }
.surface-light .support-actions .btn-secondary,
.surface-light .support-actions .btn-quiet {
  border-color: var(--border-dark);
  color: var(--text);
  background: rgba(139,44,255,.14);
}
.temporary-menu-callout {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(139,44,255,.34);
  border-radius: 8px;
  background: rgba(5,4,7,.78);
}
.temporary-menu-callout h3 { font-size: 1.35rem; }
.temporary-menu-callout .cta-row { margin-top: 1rem; }
.menu-page-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.menu-page-nav a {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(139,44,255,.38);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(139,44,255,.18), rgba(255,255,255,.045));
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.menu-page-nav a.is-featured {
  border-color: rgba(166,255,61,.64);
  background:
    radial-gradient(circle at 92% 10%, rgba(166,255,61,.16), transparent 34%),
    linear-gradient(145deg, rgba(139,44,255,.32), rgba(255,255,255,.06));
  box-shadow: 0 0 32px rgba(166,255,61,.1), 0 18px 50px rgba(0,0,0,.18);
}
.menu-page-nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(166,255,61,.58);
  background:
    linear-gradient(145deg, rgba(139,44,255,.28), rgba(255,255,255,.07));
}
.menu-page-nav strong {
  display: block;
  color: var(--cream);
  font-size: 1.2rem;
}
.menu-page-nav span {
  display: block;
  margin-top: .4rem;
  color: var(--muted);
  font-weight: 800;
}
.menu-jump-bar {
  position: sticky;
  top: 92px;
  z-index: 30;
  padding: 9px 0;
  background: rgba(5,4,7,.9);
  border-bottom: 1px solid rgba(139,44,255,.28);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.menu-jump-bar .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.menu-jump-bar .container::-webkit-scrollbar { display: none; }
.menu-jump-bar a {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .58rem .82rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255,255,255,.055);
  font-size: .88rem;
  font-weight: 900;
}
.menu-jump-bar a:hover {
  border-color: rgba(166,255,61,.58);
  background: rgba(139,44,255,.16);
}
.menu-helper { padding: 28px 0; }
.menu-page,
#delivery-info {
  scroll-margin-top: 148px;
}
.helper-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.helper-grid article {
  padding: 18px;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
}
.helper-grid span {
  display: inline-flex;
  margin-bottom: .55rem;
  color: var(--green-hot);
  font-size: .8rem;
  font-weight: 900;
}
.helper-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
}
.helper-grid p {
  margin-top: .4rem;
  font-size: .94rem;
}
.menu-page-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: end;
}
.menu-page-header > div {
  min-width: 0;
}
.source-thumb {
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(139,44,255,.26);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: var(--ink);
  font-weight: 900;
  font-size: .86rem;
  text-align: center;
}
.source-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
}
.menu-table-wrap {
  margin-top: 26px;
  overflow-x: auto;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
}
.menu-page:not(.surface-light) .menu-table-wrap {
  border-color: rgba(139,44,255,.3);
  background: rgba(255,255,255,.045);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.menu-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--ink);
}
.menu-table caption {
  padding: 1.05rem 1rem;
  text-align: left;
  font-weight: 900;
  color: var(--ink);
  background: rgba(139,44,255,.16);
}
.menu-table th,
.menu-table td {
  padding: .86rem .8rem;
  border-top: 1px solid var(--border-dark);
  text-align: left;
  white-space: nowrap;
}
.menu-table thead th {
  background: rgba(139,44,255,.24);
  color: var(--ink);
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.menu-table tbody th { font-weight: 900; }
.menu-table tbody tr:hover {
  background: rgba(139,44,255,.12);
}
.menu-table .best-guess {
  background: rgba(139,44,255,.1);
}
.menu-table .best-guess th span {
  display: inline-block;
  margin-left: .35rem;
  color: var(--green-hot);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.dark-table { color: var(--text); background: rgba(5,4,7,.88); }
.dark-table th,
.dark-table td { border-color: var(--border); }
.dark-table thead th { background: rgba(139,44,255,.2); color: var(--cream); }
.dark-table caption { color: var(--cream); background: rgba(255,255,255,.055); }
.dark-table tbody tr:hover { background: rgba(139,44,255,.12); }
.manager-special {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: var(--ink);
}
.manager-special h3 { font-size: 1.25rem; }
.manager-special ul { margin: 12px 0 0; padding-left: 1.2rem; color: var(--muted); font-weight: 800; }
.product-card-grid,
.specials-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.product-card,
.specials-list article {
  min-height: 150px;
  padding: 0;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(139,44,255,.16), rgba(255,255,255,.045));
  overflow: hidden;
}
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #050407;
  filter: saturate(1.08) contrast(1.04);
}
.product-card > div {
  padding: 18px;
}
.specials-list article { padding: 20px; }
.product-card span {
  color: var(--green-hot);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.product-card h3,
.specials-list h3 {
  margin-top: .55rem;
  color: var(--ink);
  font-size: 1.2rem;
}
.product-card strong,
.specials-list strong {
  display: block;
  margin-top: 1rem;
  color: var(--ink);
  font-size: 1.35rem;
}
.specials-list article {
  border-color: rgba(139,44,255,.34);
  background: rgba(255,255,255,.055);
}
.specials-list h3,
.specials-list strong { color: var(--cream); }

.live-menu {
  border-top: 1px solid var(--border-dark);
  scroll-margin-top: 138px;
  background:
    radial-gradient(circle at 12% 8%, rgba(193,59,255,.18), transparent 28%),
    linear-gradient(180deg, #110b19, #050407);
}
.connected-store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
  margin-top: 1rem;
}
.connected-store-actions .btn {
  min-height: 42px;
  padding: .72rem 1rem;
  font-size: .82rem;
}
.public-menu-controls {
  display: grid;
  gap: .7rem;
  align-content: start;
}
.public-menu-controls label,
.public-order-form label {
  display: grid;
  gap: .35rem;
  color: var(--muted-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.public-menu-controls select,
.public-order-form input,
.public-order-form select,
.public-order-form textarea {
  width: 100%;
  border: 1px solid rgba(16,32,25,.18);
  border-radius: 8px;
  padding: .78rem .85rem;
  background: #F7F2EA;
  color: #050407;
  font: inherit;
}
.public-menu-status {
  margin: 0;
  color: var(--muted-dark);
  font-weight: 800;
}
.public-menu-status[data-tone="success"] { color: var(--green-hot); }
.public-menu-status[data-tone="error"] { color: #ff8a6d; }
.live-preview-button {
  opacity: .72;
}
.staff-test-badge {
  justify-self: start;
  border: 1px solid rgba(166,255,61,.46);
  border-radius: 999px;
  padding: .38rem .62rem;
  background: rgba(139,44,255,.18);
  color: var(--green-hot);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.live-menu-grid {
  display: grid;
  gap: 26px;
  margin-top: 24px;
}
.live-menu-filter {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: none;
}
.live-menu-filter::-webkit-scrollbar { display: none; }
.live-menu-filter button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: .58rem .86rem;
  border: 1px solid rgba(193,59,255,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: var(--cream);
  font: inherit;
  font-size: .86rem;
  font-weight: 900;
  cursor: pointer;
}
.live-menu-filter button.is-active {
  border-color: rgba(166,255,61,.7);
  background: linear-gradient(135deg, var(--green-hot), var(--green));
  color: #050407;
}
.live-menu-filter span { opacity: .74; }
.live-menu-category {
  display: grid;
  gap: 14px;
}
.live-menu-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(193,59,255,.22);
}
.live-menu-category-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}
.live-menu-category-heading span {
  color: var(--muted-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.live-menu-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.live-menu-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(139,44,255,.44);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 0%, rgba(166,255,61,.08), transparent 35%),
    linear-gradient(180deg, rgba(139,44,255,.18), rgba(255,255,255,.045)),
    #08060c;
  box-shadow: var(--paint-shadow);
  transition: transform .18s ease, border-color .18s ease;
}
.live-menu-card:hover {
  transform: translateY(-2px);
  border-color: rgba(166,255,61,.62);
}
.live-menu-media {
  aspect-ratio: 4 / 3;
  background: #050407;
  border-bottom: 1px solid rgba(139,44,255,.28);
}
.live-menu-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.04);
}
.live-menu-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
  gap: .65rem;
}
.live-menu-placeholder img {
  width: 78px;
  height: 78px;
  opacity: .72;
  filter: drop-shadow(0 0 18px rgba(139,44,255,.35));
}
.live-menu-card > div:last-child {
  display: grid;
  gap: .45rem;
  padding: 16px;
}
.live-menu-card span {
  color: var(--green-hot);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.live-menu-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.18;
}
.live-menu-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.live-menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .75rem;
  align-items: baseline;
}
.live-menu-card strong {
  color: var(--ink);
  font-size: 1.16rem;
}
.live-menu-card em {
  color: var(--green-hot);
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}
.live-menu-empty {
  display: grid;
  gap: .85rem;
  grid-column: 1 / -1;
  border: 1px solid rgba(139,44,255,.3);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255,255,255,.055);
  color: var(--ink);
}
.live-menu-empty h3,
.live-menu-empty p {
  margin: 0;
}
.live-menu-empty p {
  margin-top: .45rem;
  color: var(--muted);
}
.live-menu-empty .btn { justify-self: start; }
.live-menu-empty span {
  color: var(--green-hot);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.live-menu-card-actions {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 8px;
  align-items: end;
  margin-top: .35rem;
}
.live-menu-card-actions input {
  width: 100%;
  border: 1px solid rgba(139,44,255,.28);
  border-radius: 8px;
  padding: .7rem .55rem;
  background: #F7F2EA;
  color: #050407;
  font: inherit;
}
.live-menu-add {
  width: 100%;
  background: linear-gradient(135deg, var(--green-hot), var(--green));
  color: #050407;
  border-color: rgba(166,255,61,.65);
}
.live-menu-add:disabled {
  opacity: .56;
  cursor: not-allowed;
}
.public-order-shell {
  margin-top: 22px;
}
.public-order-success {
  margin-bottom: 14px;
  border: 1px solid rgba(166,255,61,.4);
  border-radius: 8px;
  padding: 18px;
  background: rgba(122,201,67,.14);
  color: var(--cream);
}
.public-order-success h3,
.public-order-success p {
  margin: 0;
}
.public-order-success p {
  margin-top: .45rem;
}
.public-order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(166,255,61,.06), transparent 28%),
    linear-gradient(145deg, rgba(123,43,255,.16), rgba(255,255,255,.045));
  box-shadow: 0 22px 72px rgba(0,0,0,.28);
}
.public-order-form h3,
.public-order-form .wide,
.public-order-form button {
  grid-column: 1 / -1;
}
.public-order-form h3,
.public-order-intro {
  margin: 0;
}
.public-order-intro {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}
.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.order-builder {
  display: grid;
  gap: 12px;
}
.order-builder h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}
.order-builder-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px auto;
  gap: 12px;
  align-items: end;
}
.order-builder-controls button {
  grid-column: auto;
  min-height: 47px;
  color: #050407;
  border-color: rgba(166,255,61,.65);
}
.order-lines {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(139,44,255,.22);
  border-radius: 8px;
  background: rgba(5,4,7,.55);
}
.order-lines .muted {
  margin: 0;
}
.order-lines-list {
  display: grid;
  gap: 8px;
}
.order-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(139,44,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
}
.order-line div {
  display: grid;
  gap: .2rem;
}
.order-line strong {
  color: var(--ink);
}
.order-line span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}
.order-line label {
  display: block;
}
.order-line input {
  min-width: 0;
  padding: .62rem .68rem;
}
.order-line button {
  grid-column: auto;
  padding: .66rem .78rem;
  color: #050407;
  border-color: rgba(166,255,61,.65);
}
.order-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 8px;
  border-top: 1px solid rgba(139,44,255,.24);
  color: var(--ink);
  font-weight: 900;
}
.form-note {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}
.checkbox-line {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: .65rem;
  color: var(--ink);
  font-size: .94rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}
.checkbox-line input {
  width: auto;
  margin-top: .2rem;
}

.compliance-panel {
  padding: 28px;
  border: 1px solid rgba(139,44,255,.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(5,4,7,.88), rgba(75,20,140,.68)),
    url("../backgrounds/hero-purple-mountain-bg.webp") center/cover;
  box-shadow: var(--shadow);
}
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.mini-grid span {
  padding: .95rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  color: var(--cream);
  font-weight: 800;
}

.form-card, .contact-card, .hours-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
}
.form-card label {
  display: grid;
  gap: .4rem;
  margin-bottom: 1rem;
  color: var(--cream);
  font-weight: 800;
}
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  min-height: 48px;
  padding: .8rem .9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #06100e;
  color: var(--text);
  font: inherit;
}
.form-card textarea { min-height: 132px; resize: vertical; }
.form-card input::placeholder,
.form-card textarea::placeholder { color: #87938a; }
.visit-grid { display: grid; grid-template-columns: .98fr 1.02fr; gap: 28px; align-items: start; }
.hours-card dl { margin: 1.2rem 0 0; }
.hours-card div { display: flex; justify-content: space-between; gap: 1rem; padding: .72rem 0; border-bottom: 1px solid var(--border); }
.hours-card dt { font-weight: 900; }
.hours-card dd { margin: 0; color: var(--muted); text-align: right; }

.faq {
  position: relative;
  background:
    radial-gradient(circle at 80% 10%, rgba(193,59,255,.12), transparent 28rem),
    #0a0610;
}
.faq-list { max-width: 900px; margin-top: 26px; }
details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  margin-bottom: 10px;
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 1.1rem;
  font-weight: 900;
  list-style: none;
  min-height: 58px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--green-hot); }
details[open] summary::after { content: "-"; }
details p { padding: 0 1.1rem 1.1rem; margin: 0; }

.site-footer {
  position: relative;
  padding: 44px 0 92px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 14% 20%, rgba(123,43,255,.16), transparent 28rem),
    linear-gradient(180deg, #08050c, var(--bg-deep));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .9fr .9fr;
  gap: 24px;
}
.footer-disclaimer {
  display: block;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}
.site-footer a {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: rgba(139,44,255,.65);
  text-underline-offset: 4px;
}

.mobile-cta {
  position: fixed;
  z-index: 45;
  left: 14px;
  right: 14px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 6px;
  background: rgba(5,4,7,.82);
  border: 1px solid rgba(193,59,255,.28);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0,0,0,.42), 0 1px 0 rgba(255,255,255,.08) inset;
  opacity: 0;
  transform: translateY(calc(100% + 22px));
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}
@supports ((backdrop-filter: blur(16px)) or (-webkit-backdrop-filter: blur(16px))) {
  .mobile-cta {
    background: rgba(5,4,7,.72);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }
}
.mobile-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-cta.is-minimized { transform: translateY(4px); }
.mobile-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  min-height: 42px;
  padding: .55rem .42rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  background: rgba(255,255,255,.075);
  color: var(--cream);
  font-weight: 900;
  font-size: .9rem;
  line-height: 1;
}
.mobile-cta a.is-primary {
  background: linear-gradient(135deg, var(--green-hot), var(--green));
  border-color: rgba(166,255,61,.7);
  color: #050407;
}

@media (max-width: 900px) {
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
  .section-pad { padding: 58px 0; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 86px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(5,4,7,.98);
    border: 1px solid var(--border);
    border-radius: 8px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .75rem; }
  .wordmark-text { font-size: 1.1rem; }
  .brand-mark { width: 38px; height: 38px; }
  .wordmark { margin-left: -18px; }
  .brand-logo { width: min(288px, 74vw); height: 70px; }
  .nav-wrap { min-height: 86px; }
  .hero {
    background:
      radial-gradient(circle at 78% 18%, rgba(123,43,255,.34), transparent 30%),
      linear-gradient(180deg, rgba(5,4,7,.84) 0%, rgba(5,4,7,.72) 42%, rgba(5,4,7,.96) 100%),
      url("../backgrounds/hero-purple-mountain-bg-mobile.webp") center/cover;
  }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; padding: 54px 0; }
  .hero-art { min-height: 0; margin-top: 8px; }
  .hero-logo-stage { min-height: 230px; padding: 22px; }
  .hero-art img { width: min(86vw, 460px); }
  .hero-logo-stage img { width: min(74vw, 300px); max-height: 420px; }
  .hero::after { height: 90px; }
  .trust-strip, .page-hero-grid, .temporary-menu-hero .page-hero-grid, .split, .reverse, .menu-panel, .visit-grid, .footer-grid, .content-grid, .delivery-grid, .notice-grid, .delivery-support, .menu-page-header, .about-grid, .cta-band-grid { grid-template-columns: 1fr; }
  .trust-strip article { padding: 1rem; }
  .trust-strip article { border-left: 0; border-top: 1px solid rgba(139,44,255,.34); }
  .trust-strip article:first-child { border-top: 0; }
  .about-values { padding-left: 0; border-left: 0; }
  .category-grid, .flower-grid { grid-template-columns: 1fr 1fr; }
  .menu-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card-grid, .specials-list, .live-menu-category-grid { grid-template-columns: 1fr 1fr; }
  .live-menu-card-actions,
  .order-builder-controls,
  .order-line {
    grid-template-columns: 1fr;
  }
  .order-line {
    align-items: stretch;
  }
  .order-line button {
    width: 100%;
  }
  .helper-grid { grid-template-columns: 1fr; }
  .source-thumb { max-width: 260px; }
}

@media (max-width: 560px) {
  body { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
  .container { width: min(100% - 24px, 1120px); }
  .section-pad { padding: 48px 0; }
  h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .hero h1 { font-size: clamp(2.75rem, 12vw, 4.25rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.35rem); }
  .page-hero h1 { font-size: clamp(2.85rem, 13vw, 4rem); }
  .page-hero-card { min-height: 220px; }
  .cta-row, .age-actions { grid-template-columns: 1fr; }
  .cta-row .btn { width: 100%; }
  .category-grid, .mini-grid, .menu-photo-grid, .flower-grid, .menu-page-nav, .product-card-grid, .specials-list, .live-menu-category-grid, .public-order-form { grid-template-columns: 1fr; }
  .product-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-category-grid img { aspect-ratio: 1 / 1; }
  .about-medallion { max-width: 330px; margin: 0 auto; }
  .cta-badges { display: grid; }
  .live-menu-category-heading {
    align-items: start;
    flex-direction: column;
  }
  .menu-photo-card.is-featured { grid-column: span 1; }
  .menu-photo-card.is-featured img { aspect-ratio: 4 / 3; }
  .temporary-menu-preview img { height: 360px; }
  .source-thumb {
    width: auto;
    max-width: max-content;
    display: inline-flex;
    padding: .7rem .9rem;
  }
  .source-thumb img { display: none; }
  .temporary-menu-hero { padding-top: 42px; padding-bottom: 42px; }
  .menu-page-nav a { min-height: 88px; padding: 16px; }
  .menu-jump-bar { top: 86px; }
  .menu-helper { padding: 20px 0; }
  .menu-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .menu-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }
  .menu-table caption {
    display: block;
    border: 1px solid var(--border-dark);
    border-radius: 8px 8px 0 0;
  }
  .dark-table caption { border-color: var(--border); }
  .menu-table thead { display: none; }
  .menu-table tbody {
    display: grid;
    gap: 10px;
  }
  .menu-table tr,
  .menu-table .best-guess {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,.78);
  }
  .dark-table tr {
    border-color: var(--border);
    background: rgba(255,255,255,.045);
  }
  .menu-table th,
  .menu-table td {
    padding: .68rem .5rem;
    white-space: normal;
    border-top: 1px solid var(--border-dark);
    text-align: center;
    font-size: .95rem;
  }
  .dark-table th,
  .dark-table td { border-color: var(--border); }
  .menu-table tbody th {
    grid-column: 1 / -1;
    padding: .82rem .85rem;
    border-top: 0;
    text-align: left;
    font-size: 1.02rem;
    background: rgba(255,255,255,.48);
  }
  .dark-table tbody th { background: rgba(255,255,255,.055); }
  .menu-table td::before {
    display: block;
    margin-bottom: .12rem;
    color: var(--green-hot);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
  }
  .dark-table td::before { color: var(--green-hot); }
  .menu-table td:nth-child(2)::before { content: "1g"; }
  .menu-table td:nth-child(3)::before { content: "3.5g"; }
  .menu-table td:nth-child(4)::before { content: "7g"; }
  .menu-table td:nth-child(5)::before { content: "14g"; }
  .menu-table td:nth-child(6)::before { content: "28g"; }
  .category-grid article, .delivery-step { min-height: 150px; }
  .category-grid h3, .delivery-step h3 { margin-top: 26px; }
  .menu-panel, .age-card, .hours-card, .form-card, .contact-card { padding: 20px; }
  .embed-placeholder { min-height: 270px; }
  .embed-placeholder strong { font-size: 1.2rem; }
  .hours-card div { display: grid; gap: .1rem; }
  .hours-card dd { text-align: left; }
}

@media (min-width: 901px) {
  body { padding-bottom: 0; }
  .mobile-cta { display: none; }
}

@media (min-width: 560px) {
  .age-card {
    flex-basis: 520px;
    width: 520px;
    max-width: calc(100vw - 32px);
  }
}

@keyframes floatBadge {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-8px) scale(1.015); }
}

@keyframes smokeDrift {
  from { opacity: .74; transform: translate3d(-8px, -4px, 0) scale(1.01); }
  to { opacity: .98; transform: translate3d(8px, 4px, 0) scale(1.04); }
}
