:root {
  /* Design tokens */
  --bg: #efe4cf;
  --surface: #f8f1e1;
  --surface-soft: #f2e7d2;
  --parchment: #f5ead4;
  --parchment-warm: #f2e1c3;
  --wood-dark: #4f341f;
  --wood-mid: #6a462a;
  --wood-light: #89613a;
  --text: #2a2117;
  --ink: #241a12;
  --muted: #5b4a3b;
  --accentPurple: #5e6c37;
  --accentPurpleDark: #3c4a26;
  --accentGreen: #6d7a3f;
  --accentGreenDark: #3c4a26;
  --border: rgba(66, 52, 34, 0.24);
  --border-strong: rgba(66, 52, 34, 0.4);
  --shadow: 0 12px 26px rgba(44, 32, 22, 0.18);
  --shadow-strong: 0 16px 34px rgba(44, 32, 22, 0.22);
  --max-width: 1200px;
  --page-max: 1100px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --radius-btn: 14px;
  --section-space: 3.4rem;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --button-secondary-bg: var(--surface);
  --button-secondary-border: rgba(47, 106, 68, 0.4);
  --safe-top: max(env(safe-area-inset-top), 0px);
  --safe-bottom: max(env(safe-area-inset-bottom), 0px);
  --font-display: "Rockwell", "Georgia", "Times New Roman", serif;
  --font-body: "Source Sans Pro", "Trebuchet MS", "Verdana", sans-serif;
  --hero-radius: 20px;
  --hero-border: rgba(46, 32, 21, 0.3);
  --hero-bg: rgba(32, 24, 18, 0.1);

  /* Legacy aliases */
  --brand-green: var(--accentGreen);
  --brand-green-dark: var(--accentGreenDark);
  --brand-purple: var(--accentPurple);
  --brand-purple-dark: var(--accentPurpleDark);
  --card-bg: var(--surface);
  --shadow-soft: var(--shadow);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 35%),
    repeating-linear-gradient(
      45deg,
      rgba(120, 92, 62, 0.04),
      rgba(120, 92, 62, 0.04) 6px,
      rgba(255, 255, 255, 0.02) 6px,
      rgba(255, 255, 255, 0.02) 12px
    );
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(107, 74, 46, 0) 0px,
      rgba(107, 74, 46, 0.05) 14px,
      rgba(107, 74, 46, 0) 30px
    ),
    radial-gradient(900px 560px at 18% 22%, rgba(214, 162, 74, 0.1), transparent 60%),
    radial-gradient(900px 620px at 82% 70%, rgba(107, 74, 46, 0.12), transparent 65%);
  mix-blend-mode: overlay;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.section h2 {
  margin-top: 0;
  margin-bottom: var(--space-3);
}

.title-gradient {
  position: relative;
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.02;
  color: var(--brand-green-dark);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65),
    0 3px 8px rgba(18, 14, 10, 0.25);
}

.title-gradient::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 55%;
  height: 0.55em;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(37, 66, 45, 0.12), rgba(37, 66, 45, 0.04));
  border-radius: 999px;
  filter: blur(0.4px);
  z-index: -1;
}

h1 {
  color: var(--brand-green-dark);
}

.title-solid {
  background: none !important;
  color: var(--ink);
  -webkit-text-fill-color: initial;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accentGreen);
  outline-offset: 2px;
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand-purple);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0.5rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1400;
  background-color: var(--wood-dark);
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 45%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.04) 14px,
      rgba(0, 0, 0, 0.08) 22px,
      rgba(0, 0, 0, 0.08) 28px
    );
  border-bottom: 3px solid rgba(25, 16, 10, 0.5);
  box-shadow: 0 10px 28px rgba(25, 16, 10, 0.35);
  padding-top: var(--safe-top);
}

header .titlebar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.2rem;
  position: relative;
}

.topbar-slogan {
  position: static;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-width: 0;
  pointer-events: auto;
  z-index: 1;
  grid-column: 1;
  justify-self: start;
}

.topbar-slogan:empty {
  display: none;
}

.topbar-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.topbar-logo {
  width: auto;
  height: auto;
  max-height: 46px;
  max-width: 100%;
  object-fit: contain;
}

.top-slogan-text {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: #f3ead7;
  letter-spacing: clamp(0.08em, 0.35vw, 0.14em);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.1vw, 1.6rem);
  text-align: center;
  box-shadow: 0 6px 14px rgba(20, 14, 9, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--surface);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.35));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 0.95rem;
}

.brand-tag {
  font-size: 0.72rem;
  color: rgba(248, 241, 225, 0.8);
}

.nav-group {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
  grid-column: 3;
  justify-self: end;
}

.nav-links {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 85vw);
  max-width: 360px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 40%),
    repeating-linear-gradient(
      135deg,
      rgba(125, 100, 70, 0.06),
      rgba(125, 100, 70, 0.06) 6px,
      rgba(255, 255, 255, 0.04) 6px,
      rgba(255, 255, 255, 0.04) 12px
    ),
    var(--parchment);
  padding: 1.5rem 1.25rem;
  border-left: 3px solid rgba(68, 50, 32, 0.55);
  box-shadow: -12px 0 34px rgba(22, 16, 10, 0.32);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(110%);
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: 1500;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  outline: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 20, 24, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1450;
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}

.nav-links.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

body.menu-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-links a {
  font-weight: 700;
  padding: 0.6rem 0.5rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--text);
  background: rgba(92, 108, 55, 0.12);
  box-shadow: inset 0 -2px 0 var(--accentGreen);
}

@media (min-width: 769px) {
  header .titlebar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .topbar-slogan {
    position: static;
    transform: none;
    width: auto;
    grid-column: 1;
    justify-self: start;
  }

  .topbar-logo {
    max-height: 56px;
  }

  .nav-group {
    grid-column: 3;
    justify-self: end;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    flex-direction: row;
    gap: 1rem;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    overflow: visible;
  }

  .nav-links ul {
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
  }

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

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.active {
    color: var(--surface);
    background: rgba(248, 241, 225, 0.16);
    box-shadow: inset 0 -2px 0 var(--accentGreen);
  }

  .nav-overlay {
    display: none;
  }
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--parchment);
  border: 2px solid rgba(68, 50, 32, 0.4);
  border-radius: 14px;
  padding: 0.65rem 0.9rem;
  color: var(--text);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(20, 16, 10, 0.28);
  min-width: 52px;
  min-height: 52px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
  z-index: 1550;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(245, 233, 207, 0.95);
  border-color: rgba(68, 50, 32, 0.65);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(20, 16, 10, 0.32);
}

.menu-toggle .menu-icon {
  width: 20px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle[aria-expanded='true'] {
  background: rgba(245, 233, 207, 0.95);
  border-color: rgba(68, 50, 32, 0.75);
}

.menu-toggle .menu-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 999px;
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

/* Hide hamburger/menu button on desktop (keep for mobile) */
@media (min-width: 901px) {
  .menu-toggle,
  .nav-toggle,
  .hamburger,
  button[aria-label="Menu"],
  button[aria-label*="menu"],
  button[aria-controls*="nav"],
  button[aria-controls*="menu"] {
    display: none !important;
  }
}

.hero-frame:not(.hero-frame--sitewide) .hero-picture,
.hero-frame:not(.hero-frame--sitewide) .hero-img {
  width: 100%;
  height: 100%;
  display: block;
}

.slogan {
  width: min(1100px, calc(100% - 24px));
  margin: 10px auto 18px;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(22, 30, 22, 0.7);
  font-size: 0.92rem;
}

.hero-content {
  background:
    radial-gradient(circle at 20% 18%, rgba(108, 124, 63, 0.12), transparent 35%),
    radial-gradient(circle at 85% 12%, rgba(122, 93, 63, 0.16), transparent 32%),
    repeating-linear-gradient(
      135deg,
      rgba(120, 92, 62, 0.05),
      rgba(120, 92, 62, 0.05) 7px,
      rgba(255, 255, 255, 0.05) 7px,
      rgba(255, 255, 255, 0.05) 14px
    ),
    linear-gradient(135deg, var(--parchment), var(--parchment-warm));
  padding: calc(2.9rem + 12px) 1rem 2.8rem;
  border-bottom: 2px solid var(--border-strong);
}

.page-hero + .hero-content {
  margin-top: 0.25rem;
}

.page-intro {
  padding: clamp(2px, 1.6vw, 12px) 16px clamp(20px, 3.6vw, 36px);
}

.page-intro__inner {
  max-width: var(--container, 1100px);
  margin: 0 auto;
}

.page-intro__signboard {
  background: var(--paper, rgba(255, 248, 232, 0.92));
  color: var(--ink, #1e1a14);
  border: 1px solid var(--stroke, rgba(30, 26, 20, 0.14));
  border-radius: var(--radius-lg, 16px);
  box-shadow: var(--shadow-md, 0 10px 26px rgba(0, 0, 0, 0.14));
  padding: clamp(16px, 3vw, 26px);
}

.page-intro__signboard h1 {
  margin: 0.1rem 0 0.25rem;
  font-size: clamp(2rem, 5.8vw, 3.4rem);
  line-height: 1.05;
}

.page-intro__signboard .subline {
  margin-top: 8px;
  font-weight: 600;
  opacity: 0.92;
}

.page-intro__signboard p {
  margin-top: 10px;
  line-height: 1.55;
}


.page-intro__signboard p,
.hero-signboard p,
.section p {
  margin: 0.6rem 0;
}

.section p.lede {
  margin-top: 0.75rem;
  font-weight: 700;
}

.section .micro,
.muted {
  margin-top: 0.5rem;
}

/* Intro bullets (homepage signboard) */
.intro-bullets {
  margin: 14px 0 0;
  padding-left: 18px;
}

.intro-bullets li {
  margin: 6px 0;
}

.text-link {
  color: var(--link, #1f5fa8);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration-thickness: 2px;
}

.hero + .page-intro {
  margin-top: 0;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 0.7rem;
}

.hero-signboard {
  display: grid;
  gap: 0.85rem;
  background: var(--surface);
  border: 2px solid rgba(84, 62, 40, 0.5);
  border-radius: 16px;
  padding: 1.75rem 1.4rem 1.25rem;
  box-shadow: var(--shadow-strong);
  position: relative;
}

.hero-signboard h1 {
  margin-top: 0.2rem;
}

.hero-signboard p,
.hero-signboard li {
  line-height: 1.7;
}

.hero-signboard::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(84, 62, 40, 0.35);
  border-radius: 12px;
  pointer-events: none;
}

.eyebrow {
  margin: 0;
  color: var(--accentGreenDark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6.5vw, 4.2rem);
  letter-spacing: -0.02em;
}

.hero-content .tagline {
  font-size: 1.28rem;
  color: var(--accentGreenDark);
  margin: 0.2rem 0 0.15rem;
  font-weight: 800;
}

.hero-content .subline {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  margin: 0.15rem 0 0.75rem;
}

.compliance-micro {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(31, 55, 37, 0.08);
  color: var(--accentGreenDark);
  font-weight: 800;
  width: fit-content;
  box-shadow: inset 0 0 0 1px rgba(31, 55, 37, 0.12);
}

.compliance-line {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(31, 55, 37, 0.08);
  color: var(--accentGreenDark);
  font-weight: 800;
  width: fit-content;
  box-shadow: inset 0 0 0 1px rgba(31, 55, 37, 0.12);
}

.hero-content .micro {
  color: var(--muted);
  font-weight: 700;
}

.hero-visual {
  display: grid;
  gap: 1.1rem;
  align-items: start;
  justify-items: stretch;
  max-width: 960px;
  width: 100%;
  justify-self: center;
}

.hero-banner {
  margin: 0;
  padding: 0.55rem;
  background: var(--surface);
  border: 2px solid rgba(68, 50, 32, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.hero-banner picture,
.hero-banner img {
  width: 100%;
  display: block;
}

.hero-banner img {
  height: auto;
  border-radius: calc(var(--radius-lg) - 8px);
  background: var(--surface-soft);
}

.banner-slot {
  display: grid;
  gap: 0.6rem;
}

.banner-slot__frame {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  aspect-ratio: 2400 / 900;
}

.banner-slot__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-caption {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

/* Page banners: use <picture class="page-banner"> with a desktop <source> and mobile <img> fallback. */
.page-banner {
  width: min(1100px, calc(100% - 24px));
  margin: 14px auto;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.18);
  background: #f2ead8;
  box-shadow: var(--shadow-strong);
}

.page-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.social-buttons {
  margin-top: var(--space-2);
}

.visit-grid {
  width: min(1100px, calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .visit-grid {
    grid-template-columns: 1.1fr 0.9fr 1.2fr;
    align-items: start;
  }
}

.visit-grid .map-card {
  margin-top: 0;
}

.hours {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 8px;
  font-weight: 600;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hours thead {
  background: rgba(47, 91, 58, 0.08);
}

.hours th {
  text-align: left;
  padding: 10px 12px;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accentGreenDark);
}

.hours td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours tbody tr:last-child td {
  border-bottom: none;
}

.hours td:first-child {
  width: 90px;
  color: rgba(22, 30, 22, 0.75);
}

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  aspect-ratio: 16 / 10;
  background: #efe6d2;
  margin-top: var(--space-3);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.card {
  background: var(--card-bg);
  border: 1.5px solid rgba(45, 125, 79, 0.24);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: var(--space-2);
}

.card .button-row {
  margin-top: var(--space-3);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.9rem;
}

.store-name {
  font-weight: 800;
}

.address span {
  display: block;
}

.address {
  margin-top: var(--space-1);
  line-height: 1.4;
}

.hero-panel {
  background: var(--surface);
  border: 2px solid rgba(68, 50, 32, 0.4);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 0.65rem;
}

.hero-panel .micro {
  color: var(--muted);
}

.hero-panel .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--accentGreenDark);
}

.badge-line {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 55, 37, 0.08);
  color: var(--accentGreenDark);
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px rgba(31, 55, 37, 0.12);
  width: fit-content;
  margin: var(--space-3) 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  row-gap: var(--space-3);
  align-items: stretch;
  margin-top: 1rem;
}

.button-row > .button,
.button-row > .button.secondary,
.button-row > .card-button {
  flex: 1 1 160px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.button-row > .card-button {
  padding: 0.95rem 1.15rem;
}


.button-row + .badge-line,
.button-row + .compliance-micro {
  margin-top: 0.9rem;
}
.hero-actions {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  row-gap: var(--space-3);
  align-items: stretch;
}

.hero-actions .btn {
  flex: 1 1 160px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hours-block {
  display: grid;
  gap: 0.25rem;
}

.hero-list {
  margin-top: 0.25rem;
  gap: 0.45rem;
}

.trust-strip {
  display: none;
}

.compliance-bar {
  background: var(--surface);
  border-bottom: 1.5px solid var(--border);
  padding: 0.65rem 1rem;
  box-shadow: 0 4px 12px rgba(20, 24, 30, 0.05);
  position: relative;
  z-index: 1300;
}

.compliance-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  font-weight: 800;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  row-gap: 0.4rem;
}

.compliance-inner ul {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
}

.compliance-inner li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(23, 20, 42, 0.05);
  color: var(--muted);
  box-shadow: inset 0 0 0 1px rgba(23, 20, 42, 0.08);
  white-space: nowrap;
}

.compliance-note {
  max-width: var(--max-width);
  margin: 2rem auto;
  padding: 1rem 1.2rem;
  background: rgba(23, 20, 42, 0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

.compliance-note p {
  margin: 0;
}

@media (max-width: 640px) {
  .compliance-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .compliance-inner ul {
    flex-direction: row;
    align-items: flex-start;
  }

  .compliance-inner li {
    width: auto;
    justify-content: flex-start;
  }

  .compliance-note {
    margin: 0.35rem 1rem 1.25rem;
    padding: 0.75rem 0.85rem;
  }
}

.trust-card {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.card-button {
  display: block;
  padding: 1.05rem 1.2rem;
  border: 2px solid var(--button-secondary-border);
  background: var(--button-secondary-bg);
  border-radius: var(--radius-lg);
  font-weight: 700;
  text-align: center;
  color: var(--brand-green);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  min-height: 44px;
}

.card-button:hover,
.card-button:focus-visible {
  background: #fff;
  border-color: rgba(47, 106, 68, 0.6);
  box-shadow: 0 12px 24px rgba(31, 31, 41, 0.12);
}

.section {
  padding: var(--section-space) 1rem;
}

.section + .section,
section + section {
  margin-top: var(--space-5);
}

.section.narrow {
  max-width: var(--max-width);
  margin: 0 auto;
}

.content-section {
  padding: var(--section-space) 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: var(--space-4);
}

.feature {
  padding: var(--section-space) 1rem;
  background: var(--surface);
  border-bottom: 1.5px solid var(--border);
}

.feature-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.7rem;
  align-items: center;
}

.feature-copy {
  display: grid;
  gap: 0.75rem;
}

.feature-media {
  display: flex;
  justify-content: center;
}

.square-frame {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  display: grid;
  place-items: center;
}

.square-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius-lg) - 6px);
  background: var(--surface);
}

.portrait-frame {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
  padding: 0.6rem;
  display: grid;
  gap: 0.35rem;
  margin: 0 auto;
}

.portrait-frame img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius-lg) - 8px);
}

.hempy-image {
  object-fit: contain;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: calc(var(--radius-lg) - 6px);
}

.portrait-frame figcaption {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.hempy-feature {
  background: var(--surface);
  border-top: 1.5px solid var(--border);
}

.section h2 {
  margin-top: 0;
  color: var(--text);
  font-size: 1.9rem;
  letter-spacing: -0.01em;
}

.page-title {
  padding: 0.6rem 1rem 1.4rem;
}

.page-title__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-title h1 {
  margin: 0;
  font-size: clamp(1.7rem, 1.4vw + 1.1rem, 2.2rem);
  color: var(--accentGreenDark);
}

.promo {
  background: var(--card-bg);
  border-block: 2px solid rgba(46, 138, 85, 0.2);
  padding: var(--section-space) 1rem;
}

.promo-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.promo-copy {
  display: grid;
  gap: 0.6rem;
}

.promo-media {
  display: grid;
  justify-items: center;
}

.banner-figure {
  width: 100%;
  max-width: 760px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-strong);
  overflow: visible;
  padding: 0.6rem;
}

.banner-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: calc(var(--radius-lg) - 8px);
  background: var(--surface);
}

.hempy-section {
  padding: 3rem 1rem;
  background: var(--bg);
  border-block: 2px solid rgba(46, 138, 85, 0.24);
}

.section--private-reserve {
  background: var(--bg);
  border-block: 1.5px solid var(--border);
}

.section--private-reserve .section-inner {
  gap: 1rem;
}

.media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.media-card img {
  display: block;
  width: 100%;
  height: auto;
}

.private-reserve-callout {
  display: grid;
  gap: 0.75rem;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 248, 232, 0.92);
  box-shadow: var(--shadow-soft);
  max-width: 520px;
  margin: 1.25rem auto 0;
}

.private-reserve-callout img {
  width: min(260px, 70vw);
  height: auto;
  display: block;
}

.private-reserve-callout p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}


.hempy-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  align-items: center;
}

.hempy-copy {
  display: grid;
  gap: 0.75rem;
}

.hempy-copy h2 {
  color: var(--text);
  margin: 0;
}

.cta-row {
  gap: var(--space-2);
}

.footnote {
  color: var(--muted);
  font-weight: 700;
  margin: 0.35rem 0 0;
}

/* Follow block (one per page) */
.follow-block {
  padding: 18px 16px 34px;
}
.follow-block__inner {
  max-width: var(--container, 1100px);
  margin: 0 auto;
}
.follow-block__card {
  background: var(--paper, rgba(255, 248, 232, 0.92));
  border: 1px solid var(--stroke, rgba(30, 26, 20, 0.14));
  border-radius: var(--radius-lg, 16px);
  box-shadow: var(--shadow-md, 0 10px 26px rgba(0, 0, 0, 0.14));
  padding: clamp(16px, 2.6vw, 24px);
}
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

/* Contact grid (info + map) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 12px;
}
@media (min-width: 901px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.map-card {
  background: var(--paper, rgba(255, 248, 232, 0.92));
  border: 1px solid var(--stroke, rgba(30, 26, 20, 0.14));
  border-radius: var(--radius-lg, 16px);
  box-shadow: var(--shadow-md, 0 10px 26px rgba(0, 0, 0, 0.14));
  padding: clamp(12px, 2.2vw, 18px);
}
.map-embed {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(30, 26, 20, 0.14);
}
.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
@media (max-width: 520px) {
  .map-embed iframe {
    height: 260px;
  }
}
.map-note {
  margin-top: 10px;
}

/* Reuse helper styles if not already defined */
.info-card {
  background: var(--paper, rgba(255, 248, 232, 0.92));
  border: 1px solid var(--stroke, rgba(30, 26, 20, 0.14));
  border-radius: var(--radius-lg, 16px);
  box-shadow: var(--shadow-md, 0 10px 26px rgba(0, 0, 0, 0.14));
  padding: clamp(16px, 2.6vw, 24px);
}
.info-strong {
  font-weight: 800;
  margin: 0 0 6px;
}
.muted {
  opacity: 0.85;
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 8px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(30, 26, 20, 0.18);
}
.hours-list li:last-child {
  border-bottom: 0;
}

.visit .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.expect-grid,
.card-grid,
.highlight-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.expect-card,
.card-tile,
.highlight-card {
  background: var(--card-bg);
  border: 1.5px solid rgba(45, 125, 79, 0.24);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(46, 138, 85, 0.08), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(120, 99, 67, 0.1), transparent 28%);
  pointer-events: none;
}

.expect-card h3,
.card-tile h3,
.highlight-card h3 {
  margin-top: 0;
  color: var(--brand-green);
}

.highlight-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

@media (min-width: 820px) {
  .expect-grid,
  .card-grid,
  .highlight-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.35rem;
  background: var(--card-bg);
  padding: 1.75rem;
  border: 2px solid rgba(46, 138, 85, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  align-items: start;
}

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

.contact-rows {
  display: grid;
  gap: 0.85rem;
  margin: 0.6rem 0 0.2rem;
}

.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(45, 125, 79, 0.2);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
}

.contact-row h3 {
  margin: 0 0 0.2rem;
}

.contact-row p {
  margin: 0;
  color: var(--muted);
}

.contact-tile {
  background: var(--card-bg);
  border: 1.5px solid rgba(45, 125, 79, 0.25);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: grid;
  gap: 0.35rem;
  box-shadow: var(--shadow-soft);
}

.contact-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.contact-summary {
  display: grid;
  gap: 0.9rem;
}

.contact-actions {
  gap: var(--space-2);
}

.hours-card {
  background: var(--card-bg);
  border: 1.5px solid rgba(45, 125, 79, 0.25);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.6rem;
}

.hours-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours-card__header h3 {
  margin: 0;
}

.hours-card__icon {
  font-size: 1.1rem;
}

.hours-card__divider {
  height: 1px;
  background: rgba(45, 125, 79, 0.2);
}

.hours-card__rows {
  display: grid;
  gap: 0.35rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 700;
}

.hours-card__note {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.map-card {
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  background: var(--surface);
  margin-top: 1.1rem;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  aspect-ratio: 16 / 9;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.3rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 700;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.quick-card {
  background: var(--card-bg);
  border: 1.5px solid rgba(45, 125, 79, 0.24);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.35rem;
}

.quick-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
}

.quick-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.specials {
  padding: var(--section-space) 1rem;
  background: var(--surface);
  border-block: 1.5px solid var(--border);
}

.specials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

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

.special-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.3rem;
}

.special-card h3 {
  margin: 0;
  color: var(--text);
}

.special-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

@media (min-width: 720px) {
  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.value-section {
  padding: 2.25rem 1rem;
  background: var(--bg);
}

.value-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.value-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.value-card {
  background: var(--card-bg);
  border: 1.5px solid rgba(45, 125, 79, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.15rem;
}

.value-card h3 {
  margin: 0;
  color: var(--brand-green);
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.value-disclaimer {
  font-weight: 800;
  color: var(--muted);
  border-left: 4px solid rgba(47, 138, 80, 0.55);
  padding-left: 0.75rem;
}

@media (min-width: 720px) {
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(47, 91, 58, 0.12);
  color: var(--brand-green);
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(31, 31, 41, 0.1);
}

.action-buttons {
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.accent-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 12px;
  background: rgba(45, 125, 79, 0.14);
  color: var(--brand-green);
  font-weight: 700;
}

.visit-card {
  background: var(--card-bg);
  border: 1.5px solid rgba(45, 125, 79, 0.3);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.visit h3 {
  margin-bottom: 0.25rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}

.info-card,
.category-card,
.community-card {
  background: var(--card-bg);
  border: 1.5px solid rgba(45, 125, 79, 0.25);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.category-card h3,
.community-card h3,
.info-card h3 {
  margin-top: 0;
  color: var(--text);
}

.info-card {
  background: var(--paper, rgba(255, 248, 232, 0.92));
  border: 1px solid var(--stroke, rgba(30, 26, 20, 0.14));
  border-radius: var(--radius-lg, 16px);
  box-shadow: var(--shadow-md, 0 10px 26px rgba(0, 0, 0, 0.14));
  padding: clamp(16px, 2.6vw, 24px);
}

.info-strong {
  font-weight: 800;
  margin: 0 0 6px;
}

.muted {
  opacity: 0.85;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(30, 26, 20, 0.18);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgba(47, 138, 80, 0.12);
  color: var(--accentGreenDark);
  box-shadow: inset 0 0 0 1px rgba(47, 138, 80, 0.18);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.location-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  align-items: center;
}

.button,
button,
input[type="submit"] {
  display: inline-block;
  background: var(--brand-green);
  color: white;
  border: 2px solid var(--brand-green);
  border-radius: var(--radius-btn);
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  line-height: 1.1;
  min-height: 46px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.button.secondary {
  background: var(--button-secondary-bg);
  color: var(--brand-green);
  border: 2px solid var(--button-secondary-border);
  box-shadow: var(--shadow-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-green);
  color: white;
  border: 2px solid var(--brand-green);
  border-radius: var(--radius-btn);
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  line-height: 1.1;
  min-height: 46px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.btn-primary {
  background: var(--brand-green);
  color: white;
  border: 2px solid var(--brand-green);
}

.btn-secondary {
  background: var(--button-secondary-bg);
  color: var(--brand-green);
  border: 2px solid var(--button-secondary-border);
  box-shadow: var(--shadow-soft);
}

.button:hover,
button:hover,
input[type="submit"]:hover,
.button:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible {
  background: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
  box-shadow: 0 14px 30px rgba(31, 31, 41, 0.16);
}

.btn:hover,
.btn:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
  box-shadow: 0 14px 30px rgba(31, 31, 41, 0.16);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: #fff;
  border-color: rgba(47, 106, 68, 0.6);
  color: var(--brand-green);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #fff;
  border-color: rgba(47, 106, 68, 0.6);
  color: var(--brand-green);
}

.button:active,
button:active,
input[type="submit"]:active {
  background: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
}

.compliance-micro {
  padding: 0.35rem 0.65rem;
  font-size: 0.95rem;
}

.form {
  background: white;
  border: 1.5px solid rgba(47, 106, 68, 0.25);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form .note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  background: linear-gradient(135deg, #1f3f28, #2f5b3a);
  color: #f7f3ea;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.footer a {
  color: #f7f3ea;
}

.banner {
  background: linear-gradient(135deg, rgba(47, 91, 58, 0.12), rgba(88, 70, 44, 0.1));
  color: var(--text);
  padding: 0.65rem 1rem;
  border-radius: 10px;
  display: inline-block;
  margin-top: 0.5rem;
}

.inline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(47, 106, 68, 0.12);
  color: var(--brand-green);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  text-align: center;
  border: 2px solid rgba(47, 106, 68, 0.35);
  box-shadow: 0 18px 36px rgba(31, 31, 41, 0.18);
}

.modal h2 {
  margin-top: 0;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.hidden {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

.notice {
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.success-message {
  background: rgba(45, 125, 79, 0.08);
  color: var(--muted);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(45, 125, 79, 0.35);
  font-weight: 700;
  display: none;
}

.success-message.visible {
  display: block;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.highlight-list span {
  font-weight: 700;
}

.alert {
  border-left: 5px solid var(--accentGreen);
  padding: 0.85rem 1rem;
  background: rgba(47, 138, 80, 0.08);
  border-radius: 12px;
  font-weight: 700;
}

@media (max-width: 768px) {
  header .titlebar {
    position: relative;
  }

  .promo-inner {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 700px) {
  .brand-text {
    display: inline-flex;
  }
}

/* ===== Final hero/banner: full-width, no cropping ===== */
.page-hero {
  margin: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
}

.page-hero picture {
  display: block;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.page-hero,
.page-hero * {
  max-height: none;
}

.page-hero + .page-intro {
  margin-top: 0;
}

.section-gap-lg {
  margin-top: 18px;
}

.btn-row + h3,
.btn-row + h2 {
  margin-top: 18px;
}

@media (max-width: 768px) {
  .page-hero {
    margin-bottom: 2px;
  }

  main {
    padding-top: 6px;
  }
}

@media (min-width: 901px) {
  main {
    padding-top: 18px;
  }
}

.section {
  margin-top: 14px;
}

h1 {
  color: var(--brand-green-dark);
  letter-spacing: -0.02em;
  text-shadow: none;
}

.title-gradient {
  color: var(--brand-green-dark);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65),
    0 3px 8px rgba(18, 14, 10, 0.25);
}

.lede {
  margin-top: 0.55rem;
  margin-bottom: 1.1rem;
  max-width: 70ch;
  color: rgba(0, 0, 0, 0.72);
  font-weight: 700;
  line-height: 1.55;
}

.btn {
  border-color: rgba(34, 95, 64, 0.3);
}

.btn-primary {
  background: rgba(34, 95, 64, 0.92);
  border-color: rgba(34, 95, 64, 1);
  color: #fff;
}

@media (max-width: 768px) {
  .lede {
    margin-bottom: 0.9rem;
  }
}

/* ===== Homepage title spacing polish ===== */
.hero-content {
  padding-top: calc(2.6rem + 10px);
}

.hero-content h1 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  line-height: 1.03;
}

@media (max-width: 900px) {
  .hero-content {
    padding-top: 3.1rem;
  }

  .hero-content h1 {
    font-size: clamp(2.05rem, 8.8vw, 3.05rem);
  }
}

/* ================================
   FINAL POLISH OVERRIDES (ALL SIZES)
   ================================ */

/* Store snapshot panel upgrade */
.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.2rem;
  border-radius: 18px;
  border: 2px solid rgba(68, 50, 32, 0.38);
  border-top: 4px solid rgba(47, 106, 68, 0.4);
  background:
    radial-gradient(circle at 18% 12%, rgba(108, 124, 63, 0.10), transparent 40%),
    radial-gradient(circle at 90% 35%, rgba(122, 93, 63, 0.10), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.25)),
    var(--surface);
  box-shadow: 0 16px 34px rgba(18, 14, 10, 0.18);
  gap: 0.75rem;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px solid rgba(84, 62, 40, 0.22);
  pointer-events: none;
}

.hero-panel .micro:first-of-type {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(31, 55, 37, 0.08);
  box-shadow: inset 0 0 0 1px rgba(31, 55, 37, 0.12);
  color: var(--accentGreenDark);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Micro-typography polish (premium feel) */
.hero-panel .notice {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0.15rem 0 0.35rem;
}

.hero-panel__list {
  gap: 0.5rem;
  margin-top: 0.15rem;
}

.hero-panel__list li {
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-panel .micro:last-of-type {
  margin-top: 0.35rem;
  font-size: 0.95rem;
}

/* Make card-button behave like a true secondary CTA (no ghost look) */
.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: #fff;
  color: var(--brand-green);
  border: 2px solid rgba(47, 106, 68, 0.45);
  border-radius: var(--radius-btn);
  font-weight: 700;

  padding: 0.85rem 1.2rem;
  min-height: 46px;
  box-shadow: var(--shadow-soft);

  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.card-button:hover,
.card-button:focus-visible {
  background: #fff;
  border-color: rgba(47, 106, 68, 0.65);
  box-shadow: 0 14px 30px rgba(31, 31, 41, 0.16);
  transform: translateY(-1px);
}

.card-button:active { transform: translateY(0); }

/* CTA spacing rhythm */
.button-row {
  margin-top: var(--space-3);
  gap: var(--space-2);
  align-items: stretch;
}

.button-row + * {
  margin-top: var(--space-3);
}

/* Mobile: stack CTA rows full width */
@media (max-width: 560px) {
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button-row > .button,
  .button-row > .button.secondary,
  .button-row > .card-button {
    width: 100%;
    flex: 0 0 auto;
  }
}

/* Section rhythm */
.section + .section,
main section + section {
  margin-top: var(--space-4);
}

/* Footer link polish */
.footer a { font-weight: 700; }

/* ================================
   DESKTOP NAV FIX (no wrap/scrollbar)
   ================================ */

.site-header { overflow-x: clip; } /* prevents the weird horizontal bar */

@media (min-width: 769px) {
  header .titlebar {
    /* Give the nav real room and prevent wrap-driven header “thickening” */
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
  }

  .nav-links { white-space: nowrap; }

  .nav-links ul {
    flex-wrap: nowrap;              /* stop wrapping into a second line */
    overflow: visible;
  }

  .nav-links a {
    padding: 0.45rem 0.65rem;       /* slightly tighter so it fits clean */
  }

  .topbar-slogan {
    width: auto;
  }

  .top-slogan-text {
    font-size: clamp(1rem, 1.35vw, 1.45rem); /* reduce chance of crowding */
  }
}

/* ================================
   PAGE BANNER: consistent hero-like sizing
   Desktop uses 2400x900; Mobile uses 1200x1500
   ================================ */

.page-banner {
  width: min(1100px, calc(100% - 24px));
  margin: 14px auto;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.18);
  background: #f2ead8;
  box-shadow: var(--shadow-strong);

  aspect-ratio: 2400 / 900;   /* desktop banner shape */
  max-height: 420px;          /* prevents “massive” banner */
}

.page-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .page-banner {
    aspect-ratio: 4 / 5;      /* matches 1200x1500 */
    max-height: none;
  }

  .page-banner img {
    object-position: 50% 35%;
  }
}

/* Ensure desktop nav is never visually “drawer hidden” */
@media (min-width: 769px) {
  .nav-links {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}

.private-reserve-callout {
  padding: 1.25rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.private-reserve-callout__inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: 120px 1fr;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.private-reserve-callout__img {
  width: 100%;
  max-width: 120px;
  height: auto;
  object-fit: contain;
  justify-self: center;
}

.private-reserve-callout__copy h2 {
  margin: 0;
}

.private-reserve-callout__copy p {
  margin: 0;
}

.private-reserve-callout__copy > * + * {
  margin-top: 0.55rem;
}

@media (max-width: 560px) {
  .private-reserve-callout__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .private-reserve-callout__img {
    max-width: 140px;
    justify-self: start;
  }
}

@media (min-width: 900px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   FIX: Consistent spacing under page titles (ALL PAGES)
   Drop at VERY BOTTOM of assets/css/styles.css
   ========================================================= */

.page-intro__signboard,
.page-title__inner {
  display: flow-root; /* prevent margin-collapsing */
}

/* Remove odd default margins on titles */
.page-intro__signboard h1,
.page-title__inner h1,
.section h2,
.content-section h2 {
  margin: 0;
}

/* Consistent vertical rhythm in title blocks */
.page-intro__signboard > * + *,
.page-title__inner > * + * {
  margin-top: 0.9rem;
}

/* Normalize paragraph rhythm in title blocks */
.page-intro__signboard p,
.page-title__inner p {
  margin: 0;
  line-height: 1.6;
}

/* Optional classes used across the site */
.page-intro__signboard .lede,
.page-title__inner .lede {
  margin-top: 0.7rem !important;
  font-weight: 700;
  opacity: 0.92;
}

.page-intro__signboard .subline,
.page-title__inner .subline {
  margin-top: 0.65rem !important;
  font-weight: 800;
}

/* Lists under titles */
.page-intro__signboard ul,
.page-title__inner ul {
  margin: 0;
  padding-left: 1.15rem;
}

.page-intro__signboard li + li,
.page-title__inner li + li {
  margin-top: 0.35rem;
}


/* =========================================================
   GLOBAL COPY RHYTHM + SPACING (ALL PAGES)
   Drop at VERY BOTTOM of assets/css/styles.css
   ========================================================= */

/* Prevent margin-collapsing inside title/copy containers */
.page-intro__signboard,
.page-title__inner,
.hero-signboard,
.hero-content,
.section-inner,
.content-section {
  display: flow-root;
}

/* Headings: remove random default margins */
.page-intro__signboard h1,
.page-title__inner h1,
.hero-signboard h1,
.hero-content h1,
.section h2,
.content-section h2 {
  margin: 0;
}

/* Default paragraph rhythm everywhere (keeps copy readable) */
p {
  margin: 0;
}

p + p {
  margin-top: 0.9rem;
}

/* Lists: consistent spacing and indentation */
ul,
ol {
  margin: 0.9rem 0 0;
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.45rem;
}

/* Optional “lede / subline” classes used across pages */
.lede {
  margin-top: 0.75rem !important;
  font-weight: 700;
  opacity: 0.92;
}

.subline {
  margin-top: 0.85rem !important;
  font-weight: 800;
  color: var(--accentGreenDark);
}

/* In title blocks, enforce consistent vertical rhythm between direct children */
.page-intro__signboard > * + *,
.page-title__inner > * + *,
.hero-signboard > * + *,
.hero-content > * + * {
  margin-top: 0.95rem;
}

/* Bullets inside signboards: don’t crowd the next element */
.page-intro__signboard ul,
.page-title__inner ul,
.hero-signboard ul,
.hero-content ul {
  margin-bottom: 0.95rem;
}

/* CTA rows: spacing polish */
.button-row,
.hero-actions {
  margin-top: 1.1rem;
}

/* Fix the “21+ pill too close to buttons” issue globally */
.inline-pill,
.badge-line,
.compliance-micro,
.compliance-line {
  margin-top: 1rem;
}

/* If pill immediately follows a button row, give extra breathing room */
.button-row + .inline-pill,
.hero-actions + .inline-pill,
.button-row + .badge-line,
.hero-actions + .badge-line {
  margin-top: 1.15rem !important;
}

/* Make bullets look clean in big hero areas */
.hero-content li {
  line-height: 1.55;
}

/* Small screens: keep rhythm but slightly tighter */
@media (max-width: 560px) {
  p + p { margin-top: 0.8rem; }
  .page-intro__signboard > * + *,
  .page-title__inner > * + *,
  .hero-signboard > * + *,
  .hero-content > * + * {
    margin-top: 0.85rem;
  }
}


/* ================================
   TYPE + SPACING POLISH (SITEWIDE)
   ================================ */

/* Consistent spacing inside the big title signboard blocks */
.page-intro__signboard,
.hero-signboard {
  --title-gap: 0.85rem;
  --lede-gap: 0.95rem;
  --kicker-gap: 0.95rem;
  --para-gap: 0.95rem;
}

.page-intro__signboard h1,
.hero-signboard h1,
.page-intro__signboard h2,
.hero-signboard h2 {
  margin: 0.1rem 0 var(--title-gap);
}

/* Normalize paragraphs under titles (prevents “weird” looking blocks) */
.page-intro__signboard p,
.hero-signboard p {
  margin: 0 0 var(--para-gap);
  line-height: 1.65;
  max-width: 72ch;
}

.page-intro__signboard p:last-child,
.hero-signboard p:last-child {
  margin-bottom: 0;
}

/* Lede: first paragraph under title */
.page-lede {
  font-weight: 800;
  font-size: clamp(1.02rem, 0.45vw + 0.95rem, 1.18rem);
  letter-spacing: 0.01em;
  color: rgba(30, 26, 20, 0.88);
  margin-top: 0.1rem;
  margin-bottom: var(--lede-gap);
}

/* Kicker: short bold green line under the lede */
.page-kicker {
  font-weight: 900;
  color: var(--accentGreenDark);
  letter-spacing: 0.01em;
  margin-top: 0;
  margin-bottom: var(--kicker-gap);
}

/* Body copy under the kicker */
.page-body {
  font-weight: 650;
  color: rgba(30, 26, 20, 0.86);
}

/* Lists under the intro should have consistent rhythm */
.page-intro__signboard ul,
.hero-signboard ul {
  margin: 0.35rem 0 0.95rem;
  padding-left: 1.15rem;
}

.page-intro__signboard li,
.hero-signboard li {
  margin: 0.4rem 0;
}

/* Fix “too close” badge/pill spacing (homepage 21+ bar) */
.badge-line,
.compliance-micro,
.compliance-line {
  margin-top: 0.95rem;
}

/* Ensure CTA rows don’t crash into badges/pills */
.button-row,
.hero-actions {
  margin-bottom: 0.35rem;
}

/* CONTACT PAGE: tighten + align the Hours heading after buttons */
.contact-actions,
.visit-card .button-row,
.visit-card .cta-row {
  margin-bottom: 0.95rem;
}

/* Add a small left nudge + top spacing for Hours label specifically */
.hours-title {
  margin-top: 1.05rem !important;
  padding-left: 0.15rem;
}

/* Mobile: keep intro text readable */
@media (max-width: 520px) {
  .page-intro__signboard,
  .hero-signboard {
    padding: 18px 16px;
  }

  .page-intro__signboard p,
  .hero-signboard p {
    max-width: none;
  }
}

/* =========================================================
   FIX: Title-block copy should use full width (no skinny columns)
   ========================================================= */

.page-intro__signboard,
.page-title__inner,
.hero-signboard,
.hero-content {
  /* ensure the container itself isn’t doing column tricks */
  width: 100%;
  max-width: 100%;
}

/* Force all intro copy elements to occupy available width */
.page-intro__signboard p,
.page-intro__signboard ul,
.page-intro__signboard ol,
.page-title__inner p,
.page-title__inner ul,
.page-title__inner ol,
.hero-signboard p,
.hero-signboard ul,
.hero-signboard ol,
.hero-content p,
.hero-content ul,
.hero-content ol {
  width: 100%;
  max-width: none !important;   /* kills 70ch / 760px / etc */
}

/* If any wrapper is limiting width, neutralize it */
.page-intro__signboard .copy,
.page-title__inner .copy,
.hero-signboard .copy,
.hero-content .copy {
  width: 100%;
  max-width: none !important;
}

/* If “columns” were accidentally applied somewhere */
.page-intro__signboard,
.page-title__inner,
.hero-signboard,
.hero-content {
  column-count: initial !important;
  column-width: auto !important;
}
