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

:root {
  --bg: #0a0f0d;
  --bg-elevated: #111916;
  --bg-card: #151f1a;
  --header-bg: rgba(10, 15, 13, 0.85);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8ede9;
  --text-muted: #8a9a90;
  --accent: #4ade80;
  --accent-dim: #22c55e;
  --accent-glow: rgba(74, 222, 128, 0.15);
  --accent-hot: rgba(74, 222, 128, 0.3);
  --gold: #d4a853;
  --gold-dim: rgba(212, 168, 83, 0.12);
  --gold-edge: rgba(212, 168, 83, 0.25);
  --em: var(--accent);
  --btn-from: var(--accent-dim);
  --btn-to: var(--accent);
  --btn-fg: var(--bg);
  --hero-glow-a: rgba(74, 222, 128, 0.08);
  --hero-glow-b: rgba(212, 168, 83, 0.06);
  --card-hover: rgba(74, 222, 128, 0.2);
  --strain-fade: rgba(10, 15, 13, 0.85);
  --hot: #b72d57;
  --orange: #d8621d;
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

/* Logo palette: eggplant, magenta, amber, leaf */
html[data-theme="alt"] {
  --bg: #2e1948;
  --bg-elevated: #1d133b;
  --bg-card: #3a2158;
  --header-bg: rgba(29, 19, 59, 0.78);
  --border: rgba(227, 147, 31, 0.22);
  --text: #f6e6d4;
  --text-muted: #d9a07a;
  --accent: #899f44;
  --accent-dim: #668f26;
  --accent-glow: rgba(227, 147, 31, 0.28);
  --accent-hot: rgba(216, 98, 29, 0.5);
  --gold: #e3931f;
  --gold-dim: rgba(227, 147, 31, 0.16);
  --gold-edge: rgba(227, 147, 31, 0.45);
  --em: #e3931f;
  --btn-from: #d8621d;
  --btn-to: #e3931f;
  --btn-fg: #1d133b;
  --hero-glow-a: rgba(183, 45, 87, 0.28);
  --hero-glow-b: rgba(227, 147, 31, 0.16);
  --card-hover: rgba(183, 45, 87, 0.4);
  --strain-fade: rgba(29, 19, 59, 0.9);
  --hot: #b72d57;
  --orange: #d8621d;
  --teal: #267c63;
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
}

html[data-theme="alt"] .hero h1,
html[data-theme="alt"] .section-header h2,
html[data-theme="alt"] .cta-box h2 {
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 40, "WONK" 0.4;
}

html[data-theme="alt"] .hero h1 em {
  font-weight: 600;
}

html[data-theme="alt"] .hero-bg {
  background:
    linear-gradient(
      180deg,
      rgba(29, 19, 59, 0.42) 0%,
      rgba(46, 25, 72, 0.72) 48%,
      #2e1948 100%
    ),
    url("brand/banner.jpg") center 40% / cover no-repeat,
    var(--bg);
}

html[data-theme="alt"] .hero-bg::after {
  opacity: 0.28;
}

html[data-theme="alt"] .cta-box {
  background:
    linear-gradient(180deg, rgba(29, 19, 59, 0.78), rgba(46, 25, 72, 0.92)),
    url("brand/poster-v.jpg") center 30% / cover no-repeat,
    var(--bg-card);
}

html[data-theme="alt"] .nav-links a:hover,
html[data-theme="alt"] .footer-links a:hover {
  color: var(--gold);
}

html[data-theme="alt"] .eyebrow {
  color: var(--gold);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.age-gate-open {
  overflow: hidden;
}

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.age-gate[hidden] {
  display: none;
}

.age-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.age-gate-panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.age-gate-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 220px;
  max-width: min(280px, 72vw);
  margin: 0 auto 1.25rem;
  object-fit: contain;
}

.age-gate-mascot {
  display: block;
  width: auto;
  height: 120px;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.age-gate-panel h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.age-gate-copy {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.age-gate-actions .btn {
  width: 100%;
}

.age-gate-denied p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.55rem 0;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.logo-img {
  display: block;
  width: auto;
  height: 58px;
  max-width: min(240px, 58vw);
  object-fit: contain;
  object-position: left center;
}

.logo-img-footer {
  height: 72px;
  max-width: 280px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 4vw 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu.open {
  display: flex;
  min-height: calc(100dvh - 72px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
  color: var(--btn-fg);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  box-shadow: 0 6px 32px var(--accent-hot);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

.btn-ghost:hover {
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--hero-glow-a), transparent),
    radial-gradient(ellipse 50% 40% at 80% 60%, var(--hero-glow-b), transparent),
    var(--bg);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-edge);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--em);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Trust bar */
.trust-bar {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
  padding: 1.5rem 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--card-hover);
  transform: translateY(-2px);
}

.card-icon {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Service areas */
.areas {
  background: var(--bg-elevated);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  list-style: none;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.area-grid li {
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  transition: border-color 0.2s;
}

.area-grid li:hover {
  border-color: var(--card-hover);
}

.area-grid a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.area-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 520px;
  margin: 0 auto;
}

.area-jump {
  display: none;
  text-align: center;
  margin: 0 0 1.25rem;
}

.area-note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.area-note a:hover {
  text-decoration: underline;
}

/* Offerings */
.strains {
  background: var(--bg);
}

.concentrates {
  background: var(--bg-elevated);
}

.offerings-subhead,
.board-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.concentrates .offerings-subhead:not(:first-of-type) {
  margin-top: 3rem;
}

.board-wrap {
  position: relative;
  isolation: isolate;
}

.board-mascot {
  position: absolute;
  z-index: 3;
  width: clamp(148px, 22vw, 248px);
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.42));
}

.board-wrap[data-mascot="lounge"] {
  margin-top: 3.25rem;
}

.board-wrap[data-mascot="lounge"] .board-mascot {
  right: max(-44px, -6vw);
  top: -138px;
}

.board-wrap[data-mascot="lounge"] .board-title {
  padding-right: 13rem;
}

.board-wrap[data-mascot="sit"] {
  margin-top: 2.5rem;
}

.board-wrap[data-mascot="sit"] .board-mascot {
  left: max(-10px, -2vw);
  top: -104px;
  width: clamp(112px, 15vw, 172px);
}

.board-wrap[data-mascot="sit"] .board-title {
  padding-left: 9.5rem;
}

.board-wrap[data-mascot="guitar"] {
  margin-top: 2.75rem;
}

.board-wrap[data-mascot="guitar"] .board-mascot {
  right: max(-20px, -3vw);
  top: -64px;
  width: clamp(148px, 20vw, 220px);
}

.board-wrap[data-mascot="guitar"] .board-title {
  padding-right: 13rem;
}

@media (prefers-reduced-motion: no-preference) {
  .board-wrap[data-mascot="lounge"] .board-mascot {
    animation: mascot-float 6.4s ease-in-out infinite;
  }

  .board-wrap[data-mascot="guitar"] .board-mascot {
    animation: mascot-float 7.6s ease-in-out infinite reverse;
  }
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.board {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.4rem 1.1rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(227, 147, 31, 0.06), transparent 46%),
    var(--bg-elevated);
  border: 1px solid var(--gold-edge);
  border-radius: 6px;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.board-title {
  position: relative;
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed var(--gold-edge);
  letter-spacing: 0.04em;
}

.strain-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.strain-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.95rem 1.1rem;
  align-items: start;
  background: transparent;
  border: none;
  border-bottom: 1px dashed rgba(246, 230, 212, 0.16);
  border-radius: 0;
  padding: 0.95rem 0;
}

.strain-card:last-child {
  border-bottom: none;
}

.strain-card:hover {
  transform: none;
  box-shadow: none;
}

.strain-visual {
  width: 72px;
  height: 72px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 0 0 1px var(--gold-edge);
}

.strain-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strain-visual::after {
  display: none;
}

.strain-tag {
  display: inline-block;
  padding: 0;
  background: none;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.strain-info {
  padding: 0;
  min-width: 0;
}

.strain-info h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

.board-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0.45rem;
}

.board-dots {
  border-bottom: 1px dotted rgba(246, 230, 212, 0.32);
  transform: translateY(-0.28em);
}

.board-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.board-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0.25rem 0 0.65rem;
}

.strain-terps {
  font-size: 0.8rem;
  color: var(--gold);
  margin: 0;
}

.strain-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.strain-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.strain-meta span:first-child {
  color: var(--accent);
}

.strain-meta span:last-child,
.strain-status {
  color: var(--accent);
  font-size: 0.8rem;
}

.strain-teaser {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

.strain-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.strain-lab-link {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.strain-lab-link:hover {
  color: var(--accent);
}

.lab-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.15rem 0 0.7rem;
}

.lab-chip {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  border: 1px solid var(--gold-edge);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

.lab-chip:hover {
  color: var(--btn-fg);
  background: var(--gold);
  border-color: var(--gold);
}

.lab-chip-hub {
  color: var(--text-muted);
  border-color: var(--border);
}

.labs-group {
  margin: 0 0 2.5rem;
}

.labs-group h2 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0 0 1rem;
}

.labs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}

.labs-card {
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.labs-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.labs-vendor {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0 0 0.65rem;
}

.labs-list {
  margin: 0;
  padding-left: 1.1rem;
}

.labs-list a {
  color: var(--gold);
  text-decoration: none;
}

.labs-list a:hover {
  text-decoration: underline;
}

.coa-strain {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.coa-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.coa-footer a:hover {
  text-decoration: underline;
}

/* Quality */
.quality-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.quality-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.quality-pig {
  width: min(260px, 80%);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.4));
}

.quality-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.quality-copy > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.quality-list {
  list-style: none;
  margin-bottom: 2rem;
}

.quality-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.quality-list li:last-child {
  border-bottom: none;
}

.quality-list strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.quality-list span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.coa-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.coa-header {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.coa-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.coa-value {
  font-weight: 600;
  color: var(--accent);
}

.coa-pass {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.8rem;
}

.coa-footer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial footer {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
}

/* FAQ */
.faq {
  background: var(--bg-elevated);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* CTA */
.cta-box {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 70%);
}

.cta-box h2,
.cta-box p,
.cta-box .btn,
.cta-box .cta-note {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-box > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-inline: auto;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-local-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.footer-local-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
}

.footer-local-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-local-nav a:hover {
  color: var(--accent);
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-legal p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.disclaimer {
  margin-top: 0.5rem;
  line-height: 1.6;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .area-grid {
    display: none;
  }

  .area-jump {
    display: block;
  }

  #flower.section {
    padding-top: 3rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .logo-img {
    height: 48px;
    max-width: min(200px, 58vw);
    margin: 0;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .hero-stats {
    gap: 2rem;
  }

  .quality-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .trust-items {
    gap: 1.25rem;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .board-dots {
    display: none;
  }

  .board-line {
    grid-template-columns: 1fr auto;
  }

  .board-wrap[data-mascot="lounge"] {
    margin-top: 1.75rem;
  }

  .board-mascot {
    width: 108px;
  }

  .board-wrap[data-mascot="lounge"] .board-mascot,
  .board-wrap[data-mascot="sit"] .board-mascot,
  .board-wrap[data-mascot="guitar"] .board-mascot {
    left: auto;
    right: -6px;
    bottom: auto;
    top: -50px;
    width: 108px;
  }

  .board-wrap[data-mascot="sit"] .board-title {
    padding-left: 0;
  }

  .board-wrap[data-mascot="lounge"] .board-title,
  .board-wrap[data-mascot="sit"] .board-title,
  .board-wrap[data-mascot="guitar"] .board-title {
    padding-right: 6.5rem;
  }

  .menu-actions {
    grid-template-columns: 1fr 4.2rem;
  }

  .menu-actions .btn {
    grid-column: 1 / -1;
  }

  .ticket-panel {
    width: min(100%, 420px);
  }
}

/* Live menu */
.menu-stamp {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

.menu-status,
.menu-loading,
.menu-empty,
.menu-error {
  text-align: center;
  color: var(--text-muted);
  padding: 1.5rem 0;
}

.menu-error {
  color: #f0a8a8;
}

.menu-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 4.5rem auto;
  align-items: end;
  gap: 0.55rem;
}

.menu-actions .btn {
  padding: 0.65rem 1.1rem;
}

.board .menu-select {
  background: var(--bg);
  border-radius: 6px;
}

.menu-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.menu-qty {
  width: 4.5rem;
}

.menu-select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
}

.prerolls {
  background: var(--bg-elevated);
}

.cta-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* Ticket */
.ticket-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
  color: var(--btn-fg);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 28px var(--accent-glow);
}

.ticket-badge {
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--bg);
  color: var(--accent);
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ticket-drawer[hidden] {
  display: none;
}

.ticket-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.ticket-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.ticket-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 100%);
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.5rem;
}

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

.ticket-head h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.ticket-close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.ticket-list {
  flex: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ticket-empty {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.ticket-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.ticket-line strong {
  display: block;
  margin-bottom: 0.2rem;
}

.ticket-line span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.ticket-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.ticket-foot {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.ticket-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.ticket-note {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Neighborhood landers */
.local-page main {
  padding: 7.5rem 0 4rem;
}

.local h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.local-lede {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 38em;
  margin: 0 0 1.5rem;
}

.local-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.local-trust li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 0.45rem;
  vertical-align: middle;
}

.local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 2.5rem;
}

.local-block {
  margin: 0 0 2.25rem;
  max-width: 40em;
}

.local-block h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--gold);
}

.local-block p {
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}

.local a {
  color: var(--accent);
}

.local-nap {
  color: var(--text) !important;
}

.local-steps {
  margin: 0.5rem 0 0 1.15rem;
  color: var(--text-muted);
}

.local-steps li {
  margin: 0 0 0.45rem;
}

.local-shop {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.local-shop a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-edge);
}

.local-shop a:hover {
  color: var(--gold);
}

.local-nearby {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.local-nearby a {
  color: var(--accent);
  text-decoration: none;
}

.local-nearby a:hover {
  text-decoration: underline;
}

.local-hub-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin: 0 0 2rem;
  padding: 0;
}

.local-hub-grid a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
}

.local-hub-grid a:hover {
  border-color: var(--card-hover);
}

.local-hub-grid span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

body.ticket-open {
  overflow: hidden;
}

.ticket-fab[hidden] {
  display: none;
}

