:root {
  --ink: #14110e;
  --forest: #1c2a20;
  --pine: #24352a;
  --cream: #f6f1e6;
  --paper: #fffaf2;
  --cream-dim: #6f6758;
  --sunset-red: #c62828;
  --sunset-orange: #e85d04;
  --gold: #c9a227;
  --lime: #c5d63a;
  --max: 72rem;
  --radius: 1.25rem;
  --tap: 2.75rem;
  --font: "Bricolage Grotesque", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
#in-town { scroll-margin-top: 0.75rem; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--lime);
  color: var(--ink);
  padding: 0.5rem 0.8rem;
  z-index: 40;
}
.skip:focus { top: 0.75rem; }

.sunset-bar {
  height: calc(0.38rem + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: linear-gradient(90deg, #7a1a18, var(--sunset-red) 30%, var(--sunset-orange) 62%, var(--gold));
}

.promo-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 0.55rem;
  padding: 0.7rem 1rem;
  min-height: var(--tap);
  background: var(--lime);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.25;
}
.promo-banner:hover,
.promo-banner:focus-visible {
  filter: brightness(1.06);
}
.promo-banner .deal-code {
  background: var(--ink);
  color: var(--lime);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  background: rgba(246, 241, 230, 0.96);
  border-bottom: 1px solid rgba(20, 17, 14, 0.08);
  backdrop-filter: blur(10px);
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  min-width: 0;
  flex: 1;
}
.brand img {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.brand-name {
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.1;
}
.brand-name span {
  display: block;
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap);
  min-width: var(--tap);
  min-height: var(--tap);
  padding: 0;
  border: 1px solid rgba(20, 17, 14, 0.18);
  background: var(--paper);
  border-radius: 0.6rem;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.nav-toggle-bars {
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  transition: transform 0.16s ease, top 0.16s ease;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] { background: var(--ink); color: var(--cream); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 21;
  flex-direction: column;
  gap: 0;
  padding: 0.35rem 1rem 0.85rem;
  background: var(--paper);
  border-bottom: 1px solid rgba(20, 17, 14, 0.08);
  box-shadow: 0 12px 24px rgba(20, 17, 14, 0.08);
}
.nav.open { display: flex; }
.nav a {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-height: var(--tap);
  padding: 0 0.2rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(20, 17, 14, 0.06);
}
.nav a:last-child { border-bottom: 0; }
.nav a[aria-current="page"] { font-weight: 700; }

.site-header .header-order { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  min-height: var(--tap);
  border: 2px solid transparent;
}
.btn-primary { background: var(--sunset-orange); color: #1a0c02; }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-ghost { border-color: rgba(246, 241, 230, 0.4); color: var(--cream); }
.btn-ghost-dark { border-color: rgba(20, 17, 14, 0.2); color: var(--ink); }

.hero {
  position: relative;
  isolation: isolate;
  color: var(--cream);
  min-height: 22.5rem;
  padding: 2.4rem 1rem 2.2rem;
  display: flex;
  align-items: flex-end;
  background: #121c16 url("assets/shop-outside.jpg") 62% 42% / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 12, 10, 0.22) 0%, rgba(10, 12, 10, 0.42) 42%, rgba(10, 12, 10, 0.82) 100%),
    linear-gradient(90deg, rgba(10, 12, 10, 0.58) 0%, rgba(10, 12, 10, 0.22) 62%, rgba(10, 12, 10, 0.12) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}
.kicker {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin: 0 0 0.5rem;
}
.hero h1,
.page-hero h1 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.85rem, 8vw, 3.6rem);
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
.hero h1 { text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45); }
.lede {
  margin: 0.8rem 0 0;
  max-width: 38rem;
  color: rgba(246, 241, 230, 0.82);
  font-size: 1.02rem;
}
.hero-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.15rem;
}
.hero-actions .btn { width: 100%; }
.hero .lede,
.hero .hero-actions { max-width: 34rem; }

.page-hero {
  background: var(--forest);
  color: var(--cream);
  padding: 1.8rem 1rem 1.7rem;
}
.page-hero .lede { color: rgba(246, 241, 230, 0.8); }
.page-hero-inner { max-width: var(--max); margin: 0 auto; }

.section { padding: 2.2rem 1rem; }
.section.tight { padding-top: 0; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.45rem, 5vw, 2.25rem);
  margin: 0 0 0.6rem;
}
.section-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.muted { color: var(--cream-dim); margin: 0 0 1rem; }
.dark-section { background: var(--forest); color: var(--cream); }
.dark-section .muted { color: rgba(246, 241, 230, 0.72); }

.reviews-embed {
  min-height: 8rem;
  overflow: visible;
  position: relative;
  z-index: 3;
}
.reviews-embed .ti-widget {
  max-width: 100%;
}
.reviews-embed .ti-disclaimer {
  z-index: 4;
}

.cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.cats > .cat:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.cat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 8.8rem;
  padding: 0.9rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--cream);
  background-color: var(--pine);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 14, 12, 0.1) 28%, rgba(12, 14, 12, 0.82) 100%);
  pointer-events: none;
}
.cat h3 {
  font-family: var(--font);
  font-weight: 700;
  margin: 0;
  font-size: 1.08rem;
  position: relative;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.cat span {
  font-size: 0.78rem;
  opacity: 0.88;
  position: relative;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.cat-flower { background-image: url("assets/cat-flower.png?v=2"); }
.cat-edibles { background-image: url("assets/cat-edibles.png"); }
.cat-prerolls { background-image: url("assets/cat-prerolls.png"); }
.cat-vapes { background-image: url("assets/cat-vapes.png"); }
.cat-deals { background-image: url("assets/cat-deals.png"); }
.cat-menu { background-image: url("assets/cat-menu.png?v=2"); }

.split { display: grid; gap: 1rem; }
.shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--pine);
  box-shadow: 0 10px 28px rgba(14, 18, 16, 0.12);
}
.shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
.shot-wide {
  aspect-ratio: 16 / 9;
}
.shot-tall {
  aspect-ratio: 4 / 5;
  min-height: 16rem;
}
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.gallery .shot { aspect-ratio: 1 / 1; }
.gallery .shot:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}
.visit-split { margin-top: 1rem; }
.about-mark {
  display: block;
}
.about-mark img {
  object-position: 58% 48%;
}
.about-split .prose {
  max-width: none;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.about-split .prose p {
  font-size: 1.05rem;
  line-height: 1.55;
}
.about-split .facts {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
  margin: 1.15rem 0 0;
}
.about-split .fact {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.panel {
  background: var(--paper);
  border: 1px solid rgba(20, 17, 14, 0.08);
  border-radius: var(--radius);
  padding: 1.15rem;
}
.dark-section .panel {
  background: var(--pine);
  border-color: rgba(246, 241, 230, 0.08);
}

.hours dt {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}
.hours dt:first-child { margin-top: 0; }
.hours dd { margin: 0.15rem 0 0; }

.facts {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
}
.fact {
  background: var(--paper);
  border: 1px solid rgba(20, 17, 14, 0.08);
  border-radius: var(--radius);
  padding: 1rem 1.05rem;
}
.dark-section .fact {
  background: var(--pine);
  border-color: rgba(246, 241, 230, 0.08);
}
.fact dt {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 0.35rem;
}
.fact dd { margin: 0; }
.fact-lead {
  display: block;
  font-weight: 700;
}
.fact-games {
  display: block;
  margin-top: 0.28rem;
  color: #2f2a24;
  letter-spacing: 0.01em;
}
.fact-cta {
  display: inline-block;
  margin-top: 0.45rem;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--ink);
  background: var(--lime);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  text-decoration: none;
}
.dark-section .fact dd { color: rgba(246, 241, 230, 0.86); }

.steps {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.steps li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  align-items: start;
}
.steps b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.9rem;
}
.map-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 16rem;
  border: 1px solid rgba(20, 17, 14, 0.08);
}
.map-wrap iframe { width: 100%; height: 16rem; border: 0; }

.deal-code {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--lime);
  color: var(--ink);
  padding: 0.08rem 0.5rem;
  border-radius: 0.4rem;
}
.page-hero .deal-code { background: var(--lime); color: var(--ink); }

.prose { max-width: 42rem; }
.prose p { margin: 0 0 1rem; color: #3d382f; }
.map-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1.5px;
  text-decoration-color: #8a7a2e;
}
.map-link:hover { text-decoration-color: var(--ink); }
.place-cards {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.8rem;
}
.place-card {
  background: var(--paper);
  border: 1px solid rgba(20, 17, 14, 0.08);
  border-radius: var(--radius);
  padding: 1.05rem 1.1rem 1.15rem;
}
.place-kicker {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 0.35rem;
}
.place-card h3 {
  font-family: inherit;
  font-weight: 800;
  font-size: 1.12rem;
  margin: 0 0 0.15rem;
}
.place-addr {
  margin: 0 0 0.65rem;
  font-weight: 600;
}
.place-card p { margin: 0; color: #3d382f; }
.prose h3 {
  font-family: inherit;
  font-weight: 800;
  font-size: 1.08rem;
  margin: 1.45rem 0 0.35rem;
}
.prose h3:first-child { margin-top: 0; }
.dark-section .prose p { color: rgba(246, 241, 230, 0.82); }
.action-row {
  display: grid;
  gap: 0.65rem;
  margin: 1.1rem 0 0;
}
.action-row .btn { width: 100%; }

.contact-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.35rem;
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.88rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: var(--tap);
  border: 1px solid rgba(20, 17, 14, 0.16);
  border-radius: 0.75rem;
  padding: 0.65rem 0.9rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.contact-form textarea {
  min-height: 8.5rem;
  resize: vertical;
}
.contact-form input[type="file"] {
  padding: 0.45rem 0.55rem;
  font-weight: 400;
}
.contact-attach .file-hint {
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--cream-dim);
}
.contact-files {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--cream-dim);
}
.contact-form .btn { width: 100%; justify-self: start; }
.contact-form .btn[disabled] { opacity: 0.65; }
.contact-honey {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.contact-form { position: relative; }
.contact-status {
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
}
.contact-status.is-ok { color: var(--forest); font-weight: 700; }
.contact-status.is-err { color: #8a1f1a; font-weight: 700; }

.faq {
  display: grid;
  gap: 0.7rem;
}
.faq details {
  background: var(--paper);
  border-radius: 0.9rem;
  padding: 0.35rem 1rem 0.85rem;
  border: 1px solid rgba(20, 17, 14, 0.08);
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
  min-height: var(--tap);
  display: flex;
  align-items: center;
  list-style-position: outside;
}
.faq p { margin: 0.2rem 0 0; color: #3d382f; }

.site-footer {
  background: #0e1210;
  color: rgba(246, 241, 230, 0.75);
  padding: 1.6rem 1rem 6.4rem;
  font-size: 0.9rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.4rem;
}
.footer-grid > :first-child {
  grid-column: 1 / -1;
}
.site-footer a { color: var(--lime); text-decoration: none; }
.site-footer h2 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.3rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0; }
.site-footer li a {
  display: inline-flex;
  min-height: 1.65rem;
  align-items: center;
}
.footer-cats {
  margin: 0;
}
.footer-cats summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 1.65rem;
  color: var(--lime);
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}
.footer-cats summary::-webkit-details-marker { display: none; }
.footer-cats summary::marker { content: ""; }
.footer-cats summary::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  margin-top: -0.12rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.footer-cats[open] summary::after {
  margin-top: 0.12rem;
  transform: rotate(-135deg);
}
.footer-cats ul {
  margin: 0.05rem 0 0.4rem 0.85rem;
}
.footer-cats li a {
  min-height: 1.5rem;
}
.age { margin: 0.85rem 0 0; font-size: 0.8rem; color: #8aa0b8; }

.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;
}

.shop-tools {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.shop-search input,
.shop-sort select {
  width: 100%;
  min-height: var(--tap);
  border: 1px solid rgba(20, 17, 14, 0.16);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font: inherit;
  background: var(--paper);
  color: var(--ink);
}
.shop-cats {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.85rem;
  margin-bottom: 0.75rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.shop-cats::-webkit-scrollbar { display: none; }
.shop-cats.is-picks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem 0.2rem;
  overflow: visible;
  padding-bottom: 0;
  margin-bottom: 0;
}
.shop-cats.is-picks .shop-chip {
  min-width: 0;
  max-width: none;
  width: 100%;
  min-height: 5.4rem;
}
.shop-cats.is-picks .shop-chip svg,
.shop-cats.is-picks .shop-chip-pic {
  width: 2.45rem;
  height: 2.45rem;
}
.shop-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  flex: 0 0 auto;
  min-width: 4.7rem;
  max-width: 5.6rem;
  min-height: 4.4rem;
  padding: 0.35rem 0.35rem 0.55rem;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
}
.shop-chip svg,
.shop-chip-pic {
  display: block;
  width: 1.85rem;
  height: 1.85rem;
  flex: 0 0 auto;
  object-fit: contain;
}
.shop-chip span {
  display: block;
}
.shop-chip.is-on {
  background: transparent;
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.shop-chip:hover,
.shop-chip:focus-visible {
  color: var(--forest);
}
.shop-rail { margin: 0 0 1.6rem; }
.shop-rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.shop-rail-head h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}
.shop-seeall {
  border: 0;
  background: none;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  padding: 0.25rem 0;
  white-space: nowrap;
  text-decoration: none;
}
.home-popular { margin: 1.2rem 0 0; }
.shop-seeall span { font-size: 1.15rem; }
.shop-rail-wrap { position: relative; }
.shop-rail-track {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 2.6rem 0.15rem 0;
  -webkit-overflow-scrolling: touch;
}
.shop-rail-track::-webkit-scrollbar { display: none; }
.shop-rail-next {
  position: absolute;
  top: 5.4rem;
  right: 0.15rem;
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 0.55rem;
  background: var(--sunset-orange);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(232, 93, 4, 0.35);
}
.shop-rail-next[hidden] { display: none; }
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.shop-card {
  display: flex;
  flex-direction: column;
  min-width: 10.5rem;
  max-width: 14.5rem;
  flex: 0 0 68%;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 1rem;
  padding: 0.75rem;
}
.shop-grid .shop-card {
  min-width: 0;
  max-width: none;
  flex: none;
  width: auto;
}
.shop-media {
  display: block;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid #d0e3e3;
  border-radius: 1rem;
  overflow: hidden;
}
.shop-media img,
.shop-ph {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.shop-ph { background: #d9d9d9; }
.shop-media img.is-ph,
.product-hero img.is-ph {
  object-fit: contain;
  background: #d9d9d9;
}
.shop-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 0 0;
  flex: 1;
}
.shop-brand {
  margin: 0;
  min-height: 1em;
  font-size: 0.81rem;
  font-weight: 600;
  color: #504e70;
}
.shop-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-card h3 a { text-decoration: none; color: #24224c; }
.shop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0.15rem 0 0;
  min-height: 1.4rem;
}
.shop-tags span {
  border: 1px solid #24224c;
  border-radius: 0.25rem;
  padding: 0.12rem 0.28rem;
  font-size: 0.81rem;
  font-weight: 400;
  color: #504e70;
}
.shop-thc,
.shop-price { margin: 0; font-size: 0.81rem; min-height: 1.2em; }
.shop-thc { color: #504e70; font-weight: 400; }
.shop-price { font-size: 1rem; font-weight: 600; color: #24224c; }
.shop-weights,
.weight-list {
  list-style: none;
  margin: 0.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}
.shop-weights li,
.weight-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.weight-list {
  margin: 0.85rem 0 1.1rem;
  max-width: 22rem;
}
.weight-list li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(20, 17, 14, 0.1);
  font-size: 0.95rem;
}
.weight-list li:first-child { padding-top: 0; }
.weight-list strong { font-weight: 800; }
.shop-add {
  width: 100%;
  margin-top: 0.55rem;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border: 0;
  border-radius: 0.5rem;
  background: #dfb863;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}
.shop-add[hidden] { display: none; }
.shop-add.is-off {
  background: #e8e8e8;
  color: #c8c8c8;
  opacity: 1;
  pointer-events: none;
}
.shop-note { margin-top: 1.1rem; }
.shop-weight-pick { margin-top: 0.45rem; }
.shop-weight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin: 0 0 0.7rem;
}
.shop-weight-opt {
  border: 1px solid #d8d8d8;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.7rem 0.45rem 0.75rem;
  text-align: center;
  font-family: inherit;
  cursor: pointer;
}
.shop-weight-opt span {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: #2a2a2a;
  line-height: 1.2;
}
.shop-weight-opt strong {
  display: block;
  margin-top: 0.28rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1c1c1c;
}
.shop-weight-opt.is-on {
  border-color: #1c1c1c;
  box-shadow: 0 0 0 1px #1c1c1c;
}
.product-page .shop-weight-pick {
  margin: 0.95rem 0 0;
  max-width: 26rem;
}
.product-page .shop-weight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0 0 0.85rem;
}
@media (max-width: 420px) {
  .product-page .shop-weight-grid { grid-template-columns: 1fr 1fr; }
}
.product-page { max-width: 36rem; }
.product-page .product-hero { margin: 0 0 1rem; aspect-ratio: 1; }
.product-brand {
  margin: 0 0 0.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--cream-dim);
}
.product-meta { margin: 0.55rem 0 0.85rem; font-weight: 700; }

.nn-sign {
  --nn-x: 0px;
  position: absolute;
  top: calc(100% + var(--tap) + 0.2rem);
  right: 0.7rem;
  left: auto;
  bottom: auto;
  z-index: 19;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(var(--nn-x));
}
.nn-sign.is-placed {
  visibility: visible;
  animation: nn-drop 0.85s cubic-bezier(0.22, 0.82, 0.24, 1);
}
.site-header .nav-toggle { margin-left: auto; }
.nn-sign-btn,
.nn-sign-pop { pointer-events: auto; }
.nn-sign-hanger {
  position: relative;
  display: block;
  height: 1.15rem;
  margin: 0 auto;
}
.nn-sign-ring {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: -0.28rem;
  border: 2px solid #c9a227;
  border-radius: 50%;
  background: #1a160c;
  box-shadow: 0 0 0 1px #2a2412;
}
.nn-sign-chain {
  position: absolute;
  top: 0.42rem;
  width: 0.14rem;
  height: 0.78rem;
  background: linear-gradient(#e0c056, #8a7018);
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28);
}
.nn-sign-chain-l { left: calc(50% - 1.15rem); transform: rotate(18deg); }
.nn-sign-chain-r { right: calc(50% - 1.15rem); transform: rotate(-18deg); }
.nn-sign-btn {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  transform-origin: top center;
  perspective: 520px;
  transform-style: preserve-3d;
  animation: nn-swing 3.4s ease-in-out infinite;
}
.nn-sign.is-showing .nn-sign-btn,
.nn-sign.is-flipping .nn-sign-btn,
.nn-sign-btn:hover,
.nn-sign-btn:focus-visible {
  animation-play-state: paused;
}
.nn-sign-board {
  display: grid;
  justify-items: center;
  gap: 0.16rem;
  min-width: 8.3rem;
  max-width: 9.1rem;
  padding: 0.4rem 0.55rem 0.38rem;
  border-radius: 0.55rem;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(197, 214, 58, 0.08), transparent 55%),
    #12160f;
  border: 2px solid #c9a227;
  box-shadow:
    0 0 0 2px #2a2412,
    0 10px 22px rgba(0, 0, 0, 0.38);
  color: #6a2a24;
  transform-origin: center center;
  transform-style: preserve-3d;
}
.nn-sign.is-flipping .nn-sign-board {
  animation: nn-flip 0.64s ease-in-out;
}
.nn-sign.is-open .nn-sign-board {
  color: var(--lime);
  box-shadow:
    0 0 0 2px #2a2412,
    0 0 18px rgba(197, 214, 58, 0.35),
    0 10px 22px rgba(0, 0, 0, 0.38);
}
.nn-sign-gag {
  display: block;
  max-width: 8.6rem;
  font-weight: 700;
  font-size: 0.52rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  color: #d6c48a;
  text-wrap: balance;
}
.nn-sign-weed {
  font-family: inherit;
  font-weight: 800;
  color: var(--lime);
}
.nn-sign-word {
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 10px currentColor;
}
.nn-sign.is-open .nn-sign-word {
  animation: nn-flicker 4.8s ease-in-out infinite;
}
.nn-sign:not(.is-open) .nn-sign-word {
  color: #c62828;
  opacity: 0.82;
  text-shadow: 0 0 8px rgba(198, 40, 40, 0.55);
}
@keyframes nn-flicker {
  0%, 86%, 100% { opacity: 1; }
  88% { opacity: 0.72; }
  90% { opacity: 1; }
  93% { opacity: 0.55; }
  95% { opacity: 1; }
}
.nn-sign-scrim[hidden],
.nn-sign-pop[hidden] { display: none; }
.nn-sign-scrim {
  display: none;
}
.nn-sign-pop {
  position: absolute;
  top: calc(100% + 0.3rem);
  left: 0;
  z-index: 30;
  width: 13.4rem;
  padding: 0.75rem 0.8rem 0.8rem;
  border-radius: 0.75rem;
  background: #0e1210;
  color: var(--cream);
  border: 1px solid rgba(201, 162, 39, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.nn-sign-close {
  display: none;
}
body.nn-hours-open { overflow: hidden; }
.nn-sign-scrim.is-modal:not([hidden]) {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 36;
  background: rgba(10, 14, 12, 0.62);
  pointer-events: auto;
}
.nn-sign-pop.is-modal {
  position: fixed;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: min(20.5rem, calc(100vw - 2rem));
  height: fit-content;
  max-height: calc(100vh - 2rem);
  margin: auto;
  transform: none;
  z-index: 37;
  padding: 1rem 1.05rem 1.05rem;
  overflow: auto;
}
.nn-sign-pop.is-modal .nn-sign-close {
  display: block;
  position: absolute;
  top: 0.55rem;
  right: 0.6rem;
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(246, 241, 230, 0.72);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 2rem;
  padding: 0 0.15rem;
}
.nn-sign-status {
  margin: 0;
  font-weight: 800;
  font-size: 0.98rem;
}
.nn-sign-next {
  margin: 0.15rem 0 0.65rem;
  color: rgba(246, 241, 230, 0.72);
  font-size: 0.82rem;
}
.nn-sign-pop dl {
  margin: 0 0 0.7rem;
  display: grid;
  gap: 0.28rem;
}
.nn-sign-pop dl div {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.8rem;
}
.nn-sign-pop dt { color: var(--gold); font-weight: 700; }
.nn-sign-pop dd { margin: 0; }
.nn-sign-pop a {
  color: var(--lime);
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
}
@keyframes nn-swing {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(6deg); }
}
@keyframes nn-drop {
  0% { transform: translateX(var(--nn-x)) translateY(-1.8rem); opacity: 0; }
  100% { transform: translateX(var(--nn-x)) translateY(0); opacity: 1; }
}
@keyframes nn-flip {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(90deg); }
  100% { transform: rotateY(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .nn-sign,
  .nn-sign-btn,
  .nn-sign.is-open .nn-sign-word,
  .nn-sign.is-flipping .nn-sign-board { animation: none; }
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(14, 18, 16, 0.96);
  border-top: 1px solid rgba(246, 241, 230, 0.12);
}
.mobile-cta .btn { width: 100%; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: max(1rem, env(safe-area-inset-top, 0px)) 1rem max(1rem, env(safe-area-inset-bottom, 0px));
  background: rgba(10, 14, 12, 0.92);
}
.age-gate.open { display: flex; }
.age-card {
  width: min(28rem, 100%);
  margin: auto;
  background: var(--forest);
  color: var(--cream);
  border-radius: 1.4rem;
  padding: 1.35rem 1.15rem;
  text-align: center;
  border: 1px solid rgba(201, 162, 39, 0.35);
}
.age-card img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  margin-bottom: 0.7rem;
}
.age-card h2 {
  font-family: var(--font);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.age-card p { color: rgba(246, 241, 230, 0.75); font-size: 0.92rem; }
.age-actions {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0;
}
.age-actions .btn { width: 100%; }
.legal-tiny { font-size: 0.72rem; color: #8aa0b8; text-align: left; }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-header {
    display: grid;
    grid-template-columns: auto auto 1fr auto 1fr auto;
    align-items: center;
    gap: 0;
    padding: 0.4rem 1.1rem;
  }
  .brand { flex: 0 1 auto; grid-column: 1; }
  .brand img { width: 2.7rem; height: 2.7rem; }
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    justify-self: center;
    grid-column: 4;
    gap: 0.8rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .nav a {
    padding: 0;
    min-height: 0;
    color: var(--ink);
    border: 0;
  }
  .site-header .nn-sign {
    position: relative;
    top: auto;
    right: auto;
    grid-column: 2;
    margin-left: 0;
    height: 0;
    min-height: 0;
    overflow: visible;
    align-self: start;
    z-index: 22;
  }
  .site-header .header-order {
    display: inline-flex;
    grid-column: 6;
    justify-self: end;
    margin-left: 0;
  }
  .hero {
    min-height: 34rem;
    padding: 3.2rem 1.1rem 3.4rem;
  }
  .hero-inner { padding: 0; }
  .hero-actions,
  .action-row {
    display: flex;
    flex-wrap: wrap;
  }
  .hero-actions .btn,
  .action-row .btn { width: auto; }
  .page-hero { padding: 2.4rem 1.1rem 2.2rem; }
  .section { padding: 3rem 1.1rem; }
  .shop-tools { grid-template-columns: 1fr 12rem; align-items: center; }
  .shop-cats {
    justify-content: space-between;
    gap: 0.2rem;
    overflow: visible;
    padding-bottom: 1rem;
  }
  .shop-cats.is-picks {
    display: flex;
    padding-bottom: 0;
  }
  .shop-cats.is-picks .shop-chip { min-height: 5.8rem; }
  .shop-cats.is-picks .shop-chip svg,
  .shop-cats.is-picks .shop-chip-pic {
    width: 3rem;
    height: 3rem;
  }
  .shop-chip {
    min-width: 0;
    max-width: none;
    flex: 1 1 0;
    font-size: 0.78rem;
  }
  .shop-chip svg,
  .shop-chip-pic { width: 2rem; height: 2rem; }
  .shop-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .shop-card { flex-basis: 15.6rem; max-width: 15.6rem; }
  .product-page .shop-weight-grid { max-width: 26rem; }
  .shop-rail-head h3 { font-size: 1.7rem; }
  .shop-rail-next { top: 5.6rem; }
  .cats { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .cats > .cat:last-child:nth-child(odd) { grid-column: auto; }
  .cat { min-height: 9.2rem; padding: 0.75rem; }
  .cat h3 { font-size: 1rem; }
  .cat span { font-size: 0.72rem; }
  .split { grid-template-columns: 1fr 1.15fr; }
  .contact-split { grid-template-columns: 1.2fr 0.9fr; align-items: start; }
  .contact-form .btn { width: auto; }
  .about-split { grid-template-columns: 1.15fr 0.95fr; align-items: stretch; }
  .shot-tall { min-height: 22rem; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery .shot,
  .gallery .shot:first-child {
    grid-column: auto;
    aspect-ratio: 3 / 4;
    min-height: 22rem;
  }
  .facts { grid-template-columns: repeat(3, 1fr); }
  .place-cards { grid-template-columns: 1fr 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 22rem; height: 22rem; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .mobile-cta { display: none; }
  .nn-sign-board {
    min-width: 8.2rem;
    max-width: 8.8rem;
    padding: 0.38rem 0.55rem 0.35rem;
  }
  .nn-sign-gag { font-size: 0.55rem; }
  .nn-sign-word { font-size: 0.92rem; }
  .site-footer { padding: 1.8rem 1.1rem 1.5rem; }
  .age-actions {
    display: flex;
    justify-content: center;
  }
  .age-actions .btn { width: auto; }
  .age-gate { align-items: center; }
}
