/* ============================================================
   Golden Hour Cannabis Co. — Demo by Vinsetta Studio
   Elevated editorial dark aesthetic. Vanilla CSS, no framework.
   ============================================================ */

:root {
  /* Light theme (default) — green is the accent, not the surface */
  --bg: #FAF8F4;
  --surface: #FFFFFF;
  --surface-2: #F3F0E9;
  --primary: #2F6B47;
  --primary-bright: #275B3B;
  --on-primary: #FFFFFF;
  --accent: #8A6A28;
  --accent-hover: #74591F;
  --on-accent: #FFFFFF;
  --accent-soft: rgba(138, 106, 40, 0.10);
  --accent-border: rgba(138, 106, 40, 0.45);
  --accent-border-soft: rgba(138, 106, 40, 0.30);
  --text: #1E1C17;
  --text-muted: #5C594F;
  --border: #E3DED2;
  --error: #B03024;
  --success: #4F7038;
  --chip-bg: rgba(250, 248, 244, 0.88);
  --header-bg: rgba(250, 248, 244, 0.94);
  --bar-bg: rgba(250, 248, 244, 0.96);
  --shadow: rgba(0, 0, 0, 0.14);
  --glyph: rgba(30, 28, 23, 0.14);
  --glyph-big: rgba(30, 28, 23, 0.10);
  --grain-opacity: 0.025;
  --tint-green-strong: rgba(61, 107, 79, 0.14);
  --tint-green-mid: rgba(61, 107, 79, 0.10);
  --tint-green-cta: rgba(61, 107, 79, 0.12);
  --tint-gold: rgba(196, 163, 90, 0.08);
  --card-fade: rgba(255, 255, 255, 0.90);
  --v-flower-tint: rgba(61, 107, 79, 0.20);
  --v-edible-tint: rgba(196, 163, 90, 0.22);
  --v-conc-tint: rgba(168, 130, 88, 0.22);
  --v-preroll-tint: rgba(107, 139, 79, 0.20);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;

  --max-w: 1200px;
  --radius: 4px;
}

[data-theme="dark"] {
  /* Original elevated editorial dark aesthetic */
  --bg: #0F0F0E;
  --surface: #1A1A18;
  --surface-2: #211F1C;
  --primary: #3D6B4F;
  --primary-bright: #4E8763;
  --on-primary: #E8E6E0;
  --accent: #C4A35A;
  --accent-hover: #D4B36A;
  --on-accent: #0F0F0E;
  --accent-soft: rgba(196, 163, 90, 0.14);
  --accent-border: rgba(196, 163, 90, 0.40);
  --accent-border-soft: rgba(196, 163, 90, 0.25);
  --text: #E8E6E0;
  --text-muted: #9A9890;
  --border: #2A2A26;
  --error: #C1392B;
  --success: #6B8B4F;
  --chip-bg: rgba(15, 15, 14, 0.80);
  --header-bg: rgba(15, 15, 14, 0.94);
  --bar-bg: rgba(15, 15, 14, 0.96);
  --shadow: rgba(0, 0, 0, 0.5);
  --glyph: rgba(232, 230, 224, 0.22);
  --glyph-big: rgba(232, 230, 224, 0.16);
  --grain-opacity: 0.035;
  --tint-green-strong: rgba(61, 107, 79, 0.28);
  --tint-green-mid: rgba(61, 107, 79, 0.22);
  --tint-green-cta: rgba(61, 107, 79, 0.30);
  --tint-gold: rgba(196, 163, 90, 0.10);
  --card-fade: rgba(26, 26, 24, 0.90);
  --v-flower-tint: rgba(61, 107, 79, 0.55);
  --v-edible-tint: rgba(196, 163, 90, 0.40);
  --v-conc-tint: rgba(168, 130, 88, 0.45);
  --v-preroll-tint: rgba(107, 139, 79, 0.40);
}

html { color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }

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

html { scroll-behavior: smooth; }

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

/* Grain overlay — atmosphere without images */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: clamp(36px, 6vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 36px); }
h3 { font-size: clamp(20px, 3vw, 28px); }

.mono {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-2);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-2);
}
@media (min-width: 768px) { .container { padding: 0 var(--space-4); } }

section { padding: var(--space-8) 0; }
@media (min-width: 768px) { section { padding: var(--space-12) 0; } }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 200;
  background: var(--accent);
  color: var(--on-accent);
  padding: 10px 18px;
  font-weight: 500;
  text-decoration: none;
}
.skip-link:focus { left: var(--space-2); top: 44px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- Demo banner ---------- */
.demo-banner {
  position: relative;
  z-index: 60;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 5px 12px;
}
.demo-banner a { color: var(--on-accent); font-weight: 700; }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  text-align: center;
}
.age-gate[hidden] { display: none; }
.age-gate-inner { max-width: 420px; }
.age-gate-inner .rule {
  width: 56px; height: 1px;
  background: var(--accent);
  margin: var(--space-3) auto;
}
.age-gate-inner h1 { font-size: clamp(32px, 7vw, 44px); margin-bottom: var(--space-1); }
.age-gate-inner p { color: var(--text-muted); font-size: 15px; margin-bottom: var(--space-4); }
.age-gate-actions { display: flex; flex-direction: column; gap: var(--space-2); }
.age-gate-disclaimer {
  margin-top: var(--space-4);
  font-size: 11px;
  color: var(--text-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-bright); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-gold { background: var(--accent); color: var(--on-accent); }
.btn-gold:hover { background: var(--accent-hover); }

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 28px; /* below demo banner */
  left: 0; right: 0;
  z-index: 50;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--header-bg);
  border-bottom-color: var(--border);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-brand .amp { color: var(--accent); font-style: italic; }
.nav-links {
  display: none;
  list-style: none;
  gap: var(--space-3);
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s ease;
  padding: 8px 0;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"] { border-bottom: 1px solid var(--accent); }
.nav-cta { display: none; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; min-height: 42px; padding: 8px 24px; }
  .nav-toggle { display: none; }
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
@media (min-width: 900px) { .theme-toggle { width: 42px; height: 42px; } }

.nav-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  width: 48px; height: 48px;
  font-size: 20px;
  cursor: pointer;
}

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  text-decoration: none;
  padding: var(--space-1);
}
.mobile-menu .close-menu {
  position: absolute;
  top: 44px; right: var(--space-2);
  width: 48px; height: 48px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 var(--space-8);
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, var(--tint-green-strong), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, var(--tint-gold), transparent 65%),
    var(--bg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -5%;
  width: 480px; height: 480px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0.6;
}
.hero::after {
  content: "";
  position: absolute;
  top: 6%; right: 8%;
  width: 320px; height: 320px;
  border: 1px solid var(--accent-border-soft);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero p.lede {
  font-size: 18px;
  color: var(--text-muted);
  margin: var(--space-3) 0 var(--space-4);
  max-width: 52ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* ---------- Trust bar ---------- */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3) 0;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  justify-content: center;
}
.trust-item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-item::before { content: "◆"; color: var(--accent); font-size: 8px; }

/* ---------- Section headers ---------- */
.section-head { max-width: 560px; margin-bottom: var(--space-6); }
.section-head p { color: var(--text-muted); margin-top: var(--space-2); }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Category / product cards ---------- */
.card-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.product-card:hover { border-color: var(--accent-border); transform: translateY(-3px); }

.product-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-visual .glyph {
  font-family: var(--font-display);
  font-size: 72px;
  font-style: italic;
  color: var(--glyph);
  transition: transform 0.4s ease;
}
.product-card:hover .glyph { transform: scale(1.08); }

/* Category-coded card backdrops */
.v-flower { background: radial-gradient(ellipse at 30% 30%, var(--v-flower-tint), var(--card-fade)); }
.v-edible { background: radial-gradient(ellipse at 70% 30%, var(--v-edible-tint), var(--card-fade)); }
.v-concentrate { background: radial-gradient(ellipse at 50% 70%, var(--v-conc-tint), var(--card-fade)); }
.v-preroll { background: radial-gradient(ellipse at 30% 70%, var(--v-preroll-tint), var(--card-fade)); }

.product-tag {
  position: absolute;
  top: var(--space-2); left: var(--space-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--chip-bg);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
}
.product-thc {
  position: absolute;
  bottom: var(--space-2); right: var(--space-2);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  background: var(--chip-bg);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
}

.product-body { padding: var(--space-3); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-body h3 { font-size: 19px; }
.product-strain { font-size: 13px; color: var(--text-muted); }
.product-desc { font-size: 14px; color: var(--text-muted); flex: 1; }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-2);
}
.product-price { font-weight: 700; font-size: 16px; }
.product-foot .btn { min-height: 42px; padding: 8px 20px; font-size: 14px; }

/* ---------- Menu filters ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}
.filter-btn {
  min-height: 48px;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--accent); color: var(--text); }
.filter-btn[aria-pressed="true"] {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}

/* ---------- Facet bar (menu page) ---------- */
.facet-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-4);
  position: relative;
}
.facet { position: relative; }
.facet-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.facet-btn::after {
  content: "▾";
  font-size: 10px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}
.facet-btn:hover { border-color: var(--accent); }
.facet-btn[aria-expanded="true"] { border-color: var(--accent); }
.facet-btn[aria-expanded="true"]::after { transform: rotate(180deg); }
.facet-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.facet-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  min-width: 280px;
  max-width: min(360px, calc(100vw - 32px));
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-2);
  box-shadow: 0 16px 40px var(--shadow);
}
.facet-panel-right { left: auto; right: 0; }
@media (max-width: 480px) {
  .facet-panel {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    min-width: 0;
    max-width: none;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 80;
  }
}
.option-list { display: flex; flex-direction: column; }
.option-btn {
  min-height: 44px;
  padding: 8px 12px;
  background: none;
  border: none;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.option-btn:hover { background: var(--surface); color: var(--text); }
.option-btn[aria-pressed="true"] { color: var(--accent); }
.option-btn[aria-pressed="true"]::after { content: "✓"; font-family: var(--font-mono); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  min-height: 40px;
  padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip[aria-pressed="true"] {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}
.clear-btn {
  min-height: 44px;
  padding: 8px 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.clear-btn:hover { color: var(--accent); }

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: var(--space-6);
}
.page-btn {
  min-width: 48px;
  min-height: 48px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.page-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.page-btn[aria-current="page"] {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}
.page-btn:disabled:not([aria-current]) { opacity: 0.35; cursor: default; }

/* ---------- Deal banner ---------- */
.deal-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.deal-banner h2 { font-size: clamp(22px, 3vw, 28px); max-width: 30ch; }

/* ---------- Split sections (about etc.) ---------- */
.split {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split .visual-panel {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-panel .big-glyph {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(80px, 14vw, 140px);
  color: var(--glyph-big);
}
.visual-panel .corner-label {
  position: absolute;
  bottom: var(--space-2); left: var(--space-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Stats / lab numbers ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
}
@media (min-width: 768px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat {
  border-top: 1px solid var(--border);
  padding-top: var(--space-2);
}
.stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
}
.stat .label { font-size: 13px; color: var(--text-muted); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  font-family: var(--font-display);
  font-size: 20px;
  min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 0 var(--space-3); color: var(--text-muted); max-width: 64ch; }
.faq-item .faq-body a { color: var(--accent); }

/* ---------- Location / hours ---------- */
.location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
}
.location-card h3 { margin-bottom: var(--space-2); }
.hours-grid {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.hours-grid td { padding: 6px 0; border-bottom: 1px solid var(--border); }
.hours-grid td:last-child { text-align: right; font-family: var(--font-mono); font-size: 13px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
}
.contact-line a { color: var(--text); text-decoration: none; }
.contact-line a:hover { color: var(--accent); }
.contact-line .ico { color: var(--accent); width: 18px; text-align: center; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: var(--space-3); }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 0.2s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
}
.field .hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.field .error-msg { font-size: 13px; color: var(--error); margin-top: 4px; display: none; }
.field.invalid input, .field.invalid textarea { border-color: var(--error); }
.field.invalid .error-msg { display: block; }
.form-success {
  background: var(--tint-green-cta);
  border: 1px solid var(--success);
  border-radius: var(--radius);
  padding: var(--space-3);
  display: none;
}
.form-success.visible { display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 70% 100% at 50% 100%, var(--tint-green-cta), transparent 70%),
    var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-band .container { max-width: 640px; }
.cta-band p { color: var(--text-muted); margin: var(--space-2) 0 var(--space-4); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-6) 0 var(--space-3);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-6);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
  font-weight: 400;
}
.footer-grid ul { list-style: none; }
.footer-grid li { padding: 4px 0; }
.footer-grid a { color: var(--text-muted); text-decoration: none; transition: color 0.2s ease; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand-blurb { color: var(--text-muted); max-width: 36ch; margin-top: var(--space-1); }
.compliance-note {
  border-top: 1px solid var(--border);
  padding-top: var(--space-3);
  font-size: 11px;
  line-height: 1.7;
  color: var(--text-muted);
}
.compliance-note .license { font-family: var(--font-mono); }

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  background: var(--bar-bg);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
}
.mobile-cta-bar a + a { border-left: 1px solid var(--border); }
.mobile-cta-bar .primary-slot { background: var(--primary); color: var(--on-primary); }
@media (min-width: 900px) { .mobile-cta-bar { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 56px; } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: calc(96px + var(--space-8)) 0 var(--space-6);
  background:
    radial-gradient(ellipse 70% 80% at 80% 0%, var(--tint-green-mid), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero p { color: var(--text-muted); max-width: 56ch; margin-top: var(--space-2); }

/* Home hero needs nav offset */
.hero { padding-top: 140px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Utility ---------- */
.text-muted { color: var(--text-muted); }
.gold { color: var(--accent); }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mb-4 { margin-bottom: var(--space-4); }
