/* Yeti Greenery — minimal home
   Display: Raleway · Body: DM Sans */

@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap");

:root {
  --white: #ffffff;
  --cream: #fcfdfc;
  --paper: #f4f8f5;
  --ink: #142218;
  --muted: #5a6b60;
  --line: rgba(20, 34, 24, 0.1);
  --urban: #121814;
  --asphalt: #141914;
  --urban-signal: #5ef38a;
  --green-900: #0f2418;
  --green-700: #1f4d32;
  --green-600: #2f6b44;
  --green-200: #c8ead4;
  --green-100: #e8f4ed;
  --radius: 16px;
  --radius-tight: 10px;
  --font-display: "Raleway", system-ui, sans-serif;
  --font-heading: "Montserrat", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --space-section: clamp(3.5rem, 8vw, 6rem);
  --wrap: min(900px, 88vw);
  --wrap-wide: min(1100px, 92vw);
  --wrap-xl: min(1320px, 94vw);
  --wrap-explore: min(1320px, 92vw);
  --brand-bg: #1d7e01;
  --brand-bg-hover: #186b01;
  --blog-surface: #2e3430;
  --title-shadow:
    rgba(224, 100, 255, 0.97) 0px 4px 14px, rgba(94, 243, 138, 0.12) 0px 0px 1px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  max-width: 100%;
}

/* Sticky .site-header / .site-ticker need visible overflow on the root — not auto/clip/hidden */
html,
body {
  overflow-x: visible;
  overflow-y: visible;
}

body.page-home {
  overflow: visible !important;
}

h1,
h2,
.h2,
.logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.08;
  text-transform: uppercase;
}

a {
  color: var(--green-600);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--green-600);
  color: var(--white);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Top announcement ticker */
.site-ticker {
  position: sticky;
  top: 0;
  z-index: 25;
  display: block;
  margin: 0;
  padding: 0;
  font: inherit;
  text-decoration: none;
  color: var(--white);
  background: var(--brand-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.site-ticker:hover {
  color: var(--white);
  background: var(--brand-bg-hover);
}

.site-ticker:focus-visible {
  color: var(--white);
  outline: 2px solid var(--urban-signal);
  outline-offset: -2px;
}

.site-ticker__viewport {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  overflow: hidden;
}

.site-ticker__track {
  display: inline-flex;
  flex-shrink: 0;
  animation: site-ticker-marquee 55s linear infinite;
}

.site-ticker__group {
  display: inline-flex;
  align-items: center;
  /*gap: clamp(1.25rem, 3vw, 2.5rem);*/
  padding-inline: clamp(1rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.5rem);
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-ticker__strong {
  font-weight: 800;
  letter-spacing: 0.06em;
}

.proteus-auth-tab.active { 
	background-color: darkgreen;
}

@media (prefers-reduced-motion: reduce) {
  .site-ticker__track {
    animation: none !important;
    transform: none !important;
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-ticker__group[aria-hidden="true"] {
    display: none !important;
  }

  .site-ticker__group {
    white-space: normal;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-inline: 1rem;
  }
}

@keyframes site-ticker-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

body:has(> .site-ticker) .site-header {
  top: 2.75rem;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.wrap-wide {
  width: var(--wrap-wide);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: #0f1812;
  background-image: url("../image/topnav-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.site-header__inner {
  height: 5.5rem;
  width: var(--wrap-wide);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.site-header--compact .site-header__inner {
  height: 4rem;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav__auth {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.nav__auth:hover {
  border-color: rgba(29, 126, 1, 0.45);
  color: var(--brand-bg);
  background: var(--paper);
}

.site-header .nav a {
  color: var(--white);
}

.site-header .nav a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.site-header .nav a[aria-current="page"]:not(.nav__cta) {
  color: var(--white);
}

.site-header .nav a:not(.nav__cta)::after {
  background: var(--white);
}

.site-header .nav__dropdown-menu a {
  color: var(--ink);
}

.site-header .nav__dropdown-menu a:hover {
  color: var(--brand-bg);
  background: rgba(29, 126, 1, 0.06);
}

.site-header .nav__auth {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header .nav__auth:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 380px) {
  .nav__auth {
    font-size: 0.68rem;
    padding: 0.4rem 0.55rem;
  }
}

.mobile-nav .nav__cta {
  display: inline-block;
  margin-top: 0;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--urban);
  color: var(--white) !important;
  text-decoration: none;
}

.mobile-nav .nav__cta:hover {
  background: var(--brand-bg-hover);
  color: var(--white) !important;
  text-decoration: none;
}

.mobile-nav .nav__auth {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  display: inline-block;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  line-height: 0;
}

.site-header .logo__img {
  display: block;
  width: auto;
  height: 4rem;
  max-width: min(11rem, 46vw);
  object-fit: contain;
  object-position: left center;
  transition:
    height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.site-header--compact .logo__img {
  height: 2.75rem;
  max-width: min(9rem, 40vw);
}

@media (min-width: 720px) {
  .site-header .logo__img {
    height: 4.5rem;
  }

  .site-header.site-header--compact .logo__img {
    height: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__inner,
  .site-header .logo__img {
    transition: none;
  }
}

.logo__img--footer {
  height: clamp(5rem, 14vw, 7rem);
  max-width: min(12rem, 80vw);
  margin-bottom: 0.15rem;
  object-fit: contain;
  object-position: left center;
}

.site-footer__logo {
  display: inline-block;
  margin: 0 0 0.35rem;
  line-height: 0;
}

.nav {
  display: none;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 0;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
}

.nav a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--brand-bg);
  transition: width 0.3s var(--ease-out);
}

.nav a:not(.nav__cta):hover::after,
.nav a:not(.nav__cta)[aria-current="page"]::after {
  width: 100%;
}

.nav a:hover {
  color: var(--brand-bg);
}

.nav a[aria-current="page"]:not(.nav__cta) {
  color: var(--brand-bg);
  box-shadow: none;
}

.nav__item--dropdown {
  position: relative;
}

/* Invisible bridge so hover stays active when moving to the menu */
.nav__item--dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.75rem;
}

.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav__dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-top: 0.1rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.65;
  transition: transform 0.2s var(--ease-out);
}

.nav__item--dropdown:hover .nav__dropdown-caret,
.nav__item--dropdown:focus-within .nav__dropdown-caret {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 11.5rem;
  margin: 0;
  padding: 0.4rem 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 24, 18, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s var(--ease-out),
    visibility 0.2s var(--ease-out);
  z-index: 30;
}

.nav__item--dropdown:hover .nav__dropdown-menu,
.nav__item--dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.5rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.nav__dropdown-menu a::after {
  display: none;
}

.nav__dropdown-menu a:hover {
  color: var(--brand-bg);
  background: rgba(29, 126, 1, 0.06);
}

.mobile-nav__group--menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.15rem;
}

.mobile-nav__sub {
  margin: 0;
  padding: 0 0 0 0.75rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mobile-nav__sub a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(15, 24, 18, 0.72);
  padding: 0.2rem 0;
}

.mobile-nav__sub a:hover {
  color: var(--brand-bg);
}

@media (max-width: 719px) {
  .nav--desktop,
  .site-header__actions .nav__cta--desktop,
  .site-header__actions .nav__auth--desktop {
    display: none !important;
  }
}

@media (min-width: 720px) {
  .nav--desktop {
    display: flex;
  }
  .nav-toggle {
    display: none !important;
  }
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  border-radius: 8px;
}

.nav-toggle:hover {
  background: var(--paper);
}

.site-header .nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.site-header .nav-toggle span {
  background: var(--white);
}

.mobile-nav {
  width: var(--wrap-wide);
  margin: 0 auto 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-nav a {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 0.35rem 0;
}

.site-header .mobile-nav a {
  color: var(--white);
}

.site-header .mobile-nav a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.site-header .mobile-nav {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.site-header .mobile-nav__group--menu {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.site-header .mobile-nav__sub a {
  color: rgba(255, 255, 255, 0.78);
}

.site-header .mobile-nav__sub a:hover {
  color: var(--white);
}

.site-header .mobile-nav .nav__auth {
  border-top-color: rgba(255, 255, 255, 0.15);
}

@media (min-width: 720px) {
  .mobile-nav {
    display: none !important;
  }
}

/* Hero — urban video */
.hero {
  position: relative;
  min-height: min(85vh, 820px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.hero--urban .hero__video {
  filter: saturate(1.08) contrast(1.05);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__video-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero__wash--urban {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(18, 24, 20, 0.25) 0%,
      rgba(18, 24, 20, 0.5) 45%,
      rgba(12, 18, 14, 0.82) 100%
    ),
    linear-gradient(90deg, rgba(29, 126, 1, 0.18) 0%, transparent 50%);
  pointer-events: none;
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  .hero__noise {
    opacity: 0.05;
  }
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: var(--space-section) 0 calc(var(--space-section) * 0.9);
}

.hero__content--urban .hero__title {
  color: var(--white);
}

.hero__content--urban .hero__lede {
  color: rgba(255, 255, 255, 0.88);
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero__title {
  font-size: clamp(2.75rem, 9vw, 4.5rem);
  margin: 0 0 0.75rem;
  color: var(--green-900);
  max-width: 14ch;
}

.hero__lede {
  margin: 0 0 1.75rem;
  max-width: 36ch;
  color: var(--muted);
  font-size: 1.05rem;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-animate {
  animation: heroFadeUp 0.85s var(--ease-out) backwards;
}

.hero-animate--0 {
  animation-delay: 0s;
}

.hero-animate--1 {
  animation-delay: 0.1s;
}

.hero-animate--2 {
  animation-delay: 0.2s;
}
.hero-animate--3 {
  animation-delay: 0.32s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out),
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn--primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(47, 107, 68, 0.35);
}

.btn--primary:hover {
  background: var(--green-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47, 107, 68, 0.45);
}

.btn--on-dark {
  background: var(--white);
  color: var(--urban) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--urban) !important;
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

/* Solid brand strips (#1d7e01) */
.home-strip--brand {
  position: relative;
  background-color: var(--brand-bg);
  background-attachment: fixed;
  color: var(--white);
  padding: calc(var(--space-section) * 1.05) 0;
  overflow: hidden;
}

.home-strip--brand-alt {
  background-image: linear-gradient(
    135deg,
    var(--brand-bg) 0%,
    #1a7201 45%,
    var(--brand-bg) 100%
  );
  background-attachment: fixed;
}

/* Light strips — photo from dispensary-location + light wash */
.home-strip--light {
  position: relative;
  background-color: var(--white);
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.86) 0%,
      rgba(252, 253, 252, 0.92) 100%
    ),
    url("../image/dispensary-location/20260424_135553.jpg");
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  color: var(--ink);
  padding: calc(var(--space-section) * 1.05) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.home-strip--light-alt {
  background-color: var(--paper);
  background-attachment: fixed;
}

.home-strip--light .home-strip__watermark {
  opacity: 0.06;
  animation: none;
}

.home-strip--light .home-strip__title {
  color: var(--green-900);
}

.home-strip--light .home-strip__lede {
  color: var(--muted);
}

.home-strip--light .home-strip__link {
  color: var(--brand-bg);
  font-weight: 700;
}

.home-strip--light .home-strip__link:hover {
  opacity: 1;
  color: var(--brand-bg-hover);
}

.home-strip--light .stat-tiles__item {
  background: var(--white);
  border: 1px solid var(--line);
  backdrop-filter: none;
  box-shadow: 0 2px 14px rgba(20, 34, 24, 0.05);
}

.home-strip--light .stat-tiles__item:hover {
  background: var(--white);
  border-color: rgba(29, 126, 1, 0.28);
  box-shadow: 0 14px 40px rgba(20, 34, 24, 0.09);
}

.home-strip--light .stat-tiles__num {
  color: var(--brand-bg);
}

.home-strip--light .stat-tiles__label {
  color: var(--muted);
}

.home-strip--light .home-strip-features__row {
  color: var(--ink);
  border-bottom-color: var(--line);
}

.home-strip--light .home-strip-features__mark {
  background: var(--brand-bg);
  box-shadow: 0 0 0 3px rgba(29, 126, 1, 0.18);
}

.home-strip--light .j-cards__item {
  background: var(--white);
  border: 1px solid var(--line);
}

.home-strip--light .j-cards__item:hover {
  background: var(--white);
  border-color: rgba(29, 126, 1, 0.32);
}

.home-strip--light .j-cards__icon {
  background: var(--brand-bg);
}

.home-strip--light .j-cards__title {
  color: var(--green-900);
}

.home-strip--light .j-cards__text {
  color: var(--muted);
}

.home-strip__watermark {
  position: fixed;
  right: clamp(2.5rem, 10vw, 6.5rem);
  top: 50%;
  left: auto;
  z-index: 5;
  width: clamp(8rem, 22vw, 14rem);
  max-width: min(42vw, 14rem);
  transform: translateY(-50%);
  contain: layout paint;
  transform-origin: center center;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.home-strip__watermark-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

@media (prefers-reduced-motion: no-preference) {
  .home-strip__watermark {
    animation: watermarkPulse 12s ease-in-out infinite alternate;
  }
}

.home-strip__watermark--sm {
  width: clamp(6.5rem, 18vw, 11rem);
  right: clamp(2rem, 9vw, 5.5rem);
}

@keyframes watermarkPulse {
  from {
    opacity: 0.05;
    transform: translateY(-50%) scale(1);
  }
  to {
    opacity: 0.08;
    transform: translateY(-50%) scale(1.02);
  }
}

.home-strip__accent {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.home-strip__accent--tl {
  left: 3%;
  top: 12%;
  border-right: none;
  border-bottom: none;
}

.home-strip__dots {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 1px,
    transparent 1px
  );
  background-size: 18px 18px;
  pointer-events: none;
}

.home-strip__inner {
  position: relative;
  z-index: 1;
}

.home-strip__header {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 720px) {
  .home-strip__header {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 2rem;
  }
}

.home-strip__header--center {
  text-align: center;
  justify-items: center;
  margin-bottom: 2rem;
}

.home-strip__rule {
  display: block;
  height: 100%;
  min-height: 4rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.15)
  );
  border-radius: 2px;
}

.home-strip__title {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin: 0 0 0.5rem;
  color: var(--white);
}

.home-strip__lede {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 44ch;
  padding-bottom: 40px;
}

.home-strip__lede--narrow {
  max-width: 40ch;
}

.home-strip__lede--center {
  max-width: 46ch;
}

.home-strip__link {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}

.home-strip__link:hover {
  opacity: 0.85;
}

.stat-tiles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 680px) {
  .stat-tiles {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.stat-tiles__item {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-tight);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition:
    transform 0.25s var(--ease-out),
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.stat-tiles__item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.stat-tiles__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.stat-tiles__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* Home — Bud Bar strip: scroll-linked parallax photo + dark scrim */
.home-bud-bar.home-strip--light.home-strip--parallax {
  min-height: clamp(300px, 46vh, 520px);
  display: flex;
  align-items: center;
  padding: calc(var(--space-section) * 1.05) 0;
  border-bottom: 1px solid var(--line);
}

.home-bud-bar.home-strip--parallax [data-parallax-bg],
.home-bud-bar__bg {
  background-image: url("../image/dispensary-location/20260424_135546.jpg");
}

.home-bud-bar__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(12, 18, 15, 0.78);
}

.home-bud-bar .home-strip__title,
.home-bud-bar .home-strip__title.title-display {
  color: var(--white);
}

.home-bud-bar .home-strip__lede {
  color: rgba(255, 255, 255, 0.88);
}

.home-bud-bar.home-strip--light .home-strip-features__row {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.home-bud-bar.home-strip--light .home-strip-features__mark {
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.home-bud-bar .home-bud-bar__cta .text-link-arrow {
  color: rgba(255, 255, 255, 0.96);
}

.home-bud-bar .home-bud-bar__cta .text-link-arrow:hover {
  color: var(--white);
}

.home-bud-bar__inner {
  position: relative;
  z-index: 2;
  max-width: min(44ch, 100%);
}

.home-bud-bar__cta {
  margin: 1.35rem 0 0;
}

.order-cta-row {
  margin-top: 2rem;
  text-align: center;
}

.home-strip-features {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.home-strip-features__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-strip-features__row:last-child {
  border-bottom: none;
}

.home-strip-features__mark {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
  transition: transform 0.25s var(--ease-out);
}

.home-strip-features__row:hover .home-strip-features__mark {
  transform: scale(1.35);
}

/* Bud Bar — hero uses floor photo (standalone page redirect; section lives on About) */
body.page-bud-bar .page-hero--parallax .page-hero__bg {
  --page-hero-bg: url("../image/dispensary-location/20260424_135546.jpg");
}

body.page-about #bud-bar .bud-bar-explore.home-strip--light,
.page-about #bud-bar .bud-bar-explore.home-strip--light,
body.page-bud-bar .bud-bar-explore.home-strip--light {
  padding: 0;
}

.page-about #bud-bar {
  scroll-margin-top: 7.5rem;
}

.page-about-bud-bar__intro {
  padding: calc(var(--space-section) * 0.85) 0 calc(var(--space-section) * 0.5);
  border-top: 1px solid var(--line);
}

.page-about-bud-bar__label {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-bg);
}

.page-about-bud-bar__lede {
  max-width: 52ch;
}

.page-about-bud-bar__lede p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.page-about-bud-bar__lede p:last-child {
  margin-bottom: 0;
}

/* Bud Bar page — full-bleed solid band below hero */
.bud-bar-subheader {
  --bud-bar-subheader-pad-block: clamp(2.5rem, 6vw, 3.75rem);
  position: relative;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: var(--space-section);
  padding-block: var(--bud-bar-subheader-pad-block);
  padding-inline: max(1rem, 4vw);
  box-sizing: border-box;
  background: var(--green-700);
  color: var(--white);
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(8, 14, 10, 0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(200px, 30vh, 380px);
}

.bud-bar-subheader__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  justify-content: center;
  box-sizing: border-box;
}

.bud-bar-subheader__caption {
  margin: 0;
  max-width: 52ch;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.bud-bar-subheader .h2.bud-bar-subheader__title {
  margin: 0;
  color: var(--white);
  letter-spacing: 0.04em;
}

.bud-bar-subheader__prose.prose {
  max-width: 62ch;
}

.bud-bar-subheader__prose.prose p {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.88);
}

.bud-bar-subheader__prose.prose p:last-child {
  margin-bottom: 0;
}

.bud-bar-subheader__prose.prose strong {
  color: var(--white);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-ways,
  .home-strip--light,
  .home-strip--light-alt,
  .home-strip--brand,
  .home-strip--brand-alt {
    background-attachment: scroll !important;
  }
}

.stack-intro {
  margin: -0.35rem 0 1.25rem;
  max-width: 48ch;
  color: var(--muted);
}

.j-cards {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .j-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.j-cards__item {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-tight);
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    transform 0.3s var(--ease-out),
    background 0.3s ease,
    border-color 0.3s ease;
}

.j-cards__item:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
}

.j-cards__icon {
  display: block;
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

.j-cards__item:hover .j-cards__icon {
  width: 48px;
}

.j-cards__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.53rem;
  line-height: 1.1;
  margin: 0 0 0.45rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.j-cards__text {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Full-bleed interior strip */
.panel {
  position: relative;
  padding: var(--space-section) 0;
  color: var(--white);
  overflow: hidden;
}

.panel__bg {
  position: absolute;
  inset: 0;
  background: url("../image/20260424_135707.jpg") center / cover no-repeat;
  transition: transform 8s ease-out;
}

@media (prefers-reduced-motion: no-preference) {
  .panel--media:hover .panel__bg {
    transform: scale(1.04);
  }
}

.panel__overlay {
  position: absolute;
  inset: 0;
  background: url("../image/dispensary-location/20260424_135537.jpg") center /
    cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}

.panel__corner {
  position: absolute;
  z-index: 2;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.panel__corner--tr {
  top: 1.25rem;
  right: 1.25rem;
  border-left: none;
  border-bottom: none;
}

.panel--media .panel__inner {
  position: relative;
  z-index: 1;
}

.panel--media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 36, 24, 0.78) 0%,
    rgba(15, 36, 24, 0.45) 55%,
    rgba(15, 36, 24, 0.25) 100%
  );
  z-index: 0;
}

.panel__index {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
}

.panel__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
  color: var(--white);
}

/* Home — “Abominably / Good Cannabis” (smaller on narrow viewports) */
.panel__title--tagline {
  line-height: 1.05;
  font-size: clamp(1.2rem, 4.25vw, 2.25rem);
}

.panel__title--tagline .panel__title-emphasis {
  display: block;
  font-size: clamp(1.45rem, 7.25vw, 2.93rem);
  line-height: 1;
}

@media (min-width: 720px) {
  .panel__title--tagline {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
  }

  .panel__title--tagline .panel__title-emphasis {
    font-size: 1.3em;
  }
}

.panel__text {
  margin: 0;
  max-width: 50ch;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

/* Split sections */
.split {
  display: grid;
  gap: 2.5rem;
  padding: var(--space-section) 0;
  border-top: 1px solid var(--line);
  align-items: center;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .split--reverse .split__copy {
    order: 2;
  }
  .split--reverse .split__figure {
    order: 1;
  }
}

.h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  margin: 0 0 1rem;
  color: var(--green-900);
}

.title-display {
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.h2.title-display,
.home-strip__title.title-display,
.product-slider__title.title-display {
  font-size: clamp(2.2rem, 7vw, 4rem);
}

/* White display titles on dark backgrounds */
.hero__content--urban .hero__title,
.page-hero--parallax .page-hero__title,
.home-strip:not(.home-strip--light) .home-strip__title,
.home-bud-bar .home-strip__title,
.home-strip--concrete .h2,
.panel__title,
.bud-bar-subheader .h2.bud-bar-subheader__title,
.page-about .about-story__panel:not(:hover) .about-story__heading,
body.page-about #bud-bar .stack.stack--community-urban > .h2,
.page-about #bud-bar .stack.stack--community-urban > .h2,
body.page-bud-bar .stack.stack--community-urban > .h2,
.page-about .site-map__title,
.deal-card__offer,
.site-footer__name {
  text-shadow: var(--title-shadow);
}

.split__copy p {
  margin: 0;
  color: var(--muted);
  max-width: 40ch;
}

.text-link-arrow {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--brand-bg);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s var(--ease-out),
    color 0.2s ease;
}

.text-link-arrow:hover {
  transform: translateX(6px);
  color: var(--brand-bg-hover);
}

.split__figure {
  margin: 0;
}

.split__figure--hover {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20, 34, 24, 0.12);
  transition:
    box-shadow 0.35s ease,
    transform 0.35s var(--ease-out);
}

.split__figure--hover:hover {
  box-shadow: 0 28px 60px rgba(20, 34, 24, 0.18);
  transform: translateY(-4px);
}

.split__figure--hover .split__photo {
  transition: transform 0.55s var(--ease-out);
}

.split__figure--hover:hover .split__photo {
  transform: scale(1.04);
}

.split__photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--green-100) center / cover no-repeat;
}

.split__photo--interior {
  background-image: url("../image/20260424_135730.jpg");
}

.app-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}

.app-store-badges__link {
  display: block;
  line-height: 0;
  border-radius: 6px;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}

.app-store-badges__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 34, 24, 0.14);
}

.app-store-badges__link:focus-visible {
  outline: 2px solid var(--brand-bg);
  outline-offset: 3px;
}

.app-store-badges__img {
  display: block;
  width: auto;
  height: 40px;
}

.split__figure--app {
  max-width: min(100%, 22rem);
  margin-inline: auto;
}

.split__photo--app {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

/* Site map (global, above footer) */
.site-map {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-top: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.site-map__inner {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .site-map__inner {
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: 2rem;
    align-items: center;
  }
}

.site-map__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 3.1rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-900);
  line-height: 1.1;
}

.site-map__address {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.site-map__external {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-bg);
  text-decoration: none;
  border-bottom: 2px solid rgba(29, 126, 1, 0.35);
  padding-bottom: 0.1rem;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.site-map__external:hover {
  color: var(--brand-bg-hover);
  border-color: var(--brand-bg-hover);
}

.site-map__actions {
  margin-top: 1.25rem;
}
h2#order-heading {
  font-size: 3.7em;
}
.site-map__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(20, 34, 24, 0.12);
  box-shadow: 0 22px 56px rgba(18, 24, 20, 0.12);
  background: var(--urban);
  min-height: min(52vw, 360px);
  aspect-ratio: 16 / 10;
}

.site-map__iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

/* About — “Find us in Jamestown” map strip uses Jamestown street photography */
.page-about .site-map {
  position: relative;
  background-color: var(--urban);
  background-image:
    linear-gradient(
      105deg,
      rgba(12, 18, 15, 0.82) 0%,
      rgba(12, 18, 15, 0.72) 42%,
      rgba(12, 18, 15, 0.55) 100%
    ),
    url("../image/backgrounds/jamestown-street-photography.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about .site-map__inner {
  position: relative;
  z-index: 1;
}

.page-about .site-map__title {
  color: var(--white);
}

.page-about .site-map__address {
  color: rgba(255, 255, 255, 0.9);
}

.page-about .site-map__external {
  color: var(--urban-signal);
  border-bottom-color: rgba(94, 243, 138, 0.55);
}

.page-about .site-map__external:hover {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

/* Newsletter signup — email + SMS list */
.newsletter-signup {
  padding: clamp(2rem, 5vw, 3rem) max(1rem, 4vw);
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-top: 1px solid var(--line);
}

.newsletter-signup__layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 800px) {
  .newsletter-signup__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
  }
}

.newsletter-signup__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-900);
  line-height: 1.08;
}

.newsletter-signup__lede {
  margin: 0;
  max-width: 40ch;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.newsletter-signup__form {
  max-width: none;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
}

.newsletter-signup__form label:nth-of-type(3),
.newsletter-signup__form .newsletter-signup__fine,
.newsletter-signup__form button[type="submit"] {
  grid-column: 1 / -1;
}

@media (max-width: 559px) {
  .newsletter-signup__form {
    grid-template-columns: 1fr;
  }
}

.newsletter-signup__fine {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--muted);
}

.newsletter-signup__status {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--green-700);
}

.newsletter-signup__status--error {
  color: #b42318;
}

.site-footer__newsletter {
  margin-top: 1.5rem;
  max-width: 22rem;
}

.site-footer__newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 0.65rem;
  align-items: end;
}

.site-footer__newsletter-form input[type="email"] {
  min-width: 0;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-tight);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.site-footer__newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__newsletter-form .newsletter-signup__fine,
.site-footer__newsletter-form .newsletter-signup__status {
  grid-column: 1 / -1;
}

.site-footer__newsletter-form .newsletter-signup__fine {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__newsletter-form .newsletter-signup__status {
  color: var(--urban-signal);
}

.site-footer__newsletter-form .newsletter-signup__status--error {
  color: #ff8a8a;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-strip--concrete .newsletter-community__grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 800px) {
  .home-strip--concrete .newsletter-community__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.home-strip--concrete .newsletter-signup__form label {
  color: rgba(255, 255, 255, 0.72);
}

.home-strip--concrete .newsletter-signup__fine {
  color: rgba(255, 255, 255, 0.62);
}

.home-strip--concrete .newsletter-signup__form .btn--primary {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

@media (min-width: 900px) {
  .contact-split__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
  }
}

.contact-split__newsletter-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-split__newsletter-col .newsletter-signup__form {
  margin-top: 0.25rem;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #0f1812 0%,
    var(--urban) 38%,
    #0a0f0c 100%
  );
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  border-top: 3px solid var(--brand-bg);
}

/* Footer yeti art — full width, no crop */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../image/yeti-footer-background.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(94, 243, 138, 0.08) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 92% 80%,
      rgba(29, 126, 1, 0.1) 0%,
      transparent 38%
    ),
    linear-gradient(180deg, rgba(8, 14, 10, 0.65) 0%, rgba(5, 9, 7, 0.78) 100%);
}

.site-footer__shell {
  position: relative;
  z-index: 1;
  padding: clamp(2.25rem, 5vw, 3.25rem) 0 2.5rem;
}

.site-footer__top {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .site-footer__top {
    grid-template-columns: minmax(240px, 1fr) minmax(0, 1.35fr);
    gap: 3rem;
    align-items: start;
  }
}

.site-footer__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
}

.site-footer__tagline {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__address {
  margin: 0 0 1rem;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__address a {
  color: inherit;
  text-decoration: none;
}

.site-footer__address a:hover {
  color: var(--urban-signal);
}

.site-footer__license {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  font-family: ui-monospace, "Cascadia Mono", monospace;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
}

@media (max-width: 520px) {
  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
  }
}

.site-footer__nav-col:last-child {
  grid-column: 1 / -1;
}

@media (min-width: 521px) {
  .site-footer__nav-col:last-child {
    grid-column: auto;
  }
}
h2#space-heading {
  font-size: 4em;
  line-height: 0.4em;
  padding-bottom: 30px;
}

.site-footer__nav-label {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--urban-signal);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-footer__list a:hover {
  color: var(--green-200);
}

.site-footer__list a[aria-current="page"] {
  color: var(--urban-signal);
}

.site-footer__mid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__age {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer .text-link-arrow {
  margin-top: 0;
  color: var(--urban-signal);
}

.site-footer .text-link-arrow:hover {
  color: var(--green-200);
}

.site-footer__legal {
  margin: 1.35rem 0 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.48);
  max-width: 72ch;
}

.under-footer {
  background: #ffd400;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.under-footer__text {
  margin: 0 auto;
  padding: 0.85rem max(1rem, 4vw);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
  color: #000;
}

/* ——— Interior pages · modern-minimal urban ——— */

.nav__cta[aria-current="page"] {
  background: var(--brand-bg);
  color: var(--white) !important;
}

.nav__cta {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--urban);
  color: var(--white) !important;
  font-size: 0.875rem;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.2s var(--ease-out);
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: var(--brand-bg-hover);
  color: var(--white) !important;
  text-decoration: none;
  transform: translateY(-1px);
}

.page-main {
  padding-bottom: var(--space-section);
}

.page-hero {
  padding: calc(var(--space-section) * 0.65) 0 calc(var(--space-section) * 0.5);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}

.page-hero__label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-hero__title {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--urban);
}

.page-hero__lede {
  margin: 0;
  max-width: 44ch;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Interior pages — parallax hero + optional subline */
.page-hero--parallax {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(240px, 34vh, 400px);
  padding: calc(var(--space-section) * 0.85) max(1rem, 4vw)
    calc(var(--space-section) * 0.65);
  border-bottom: 1px solid rgba(18, 24, 20, 0.35);
  background: transparent;
}

.page-hero--parallax .page-hero__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 140%;
  z-index: 0;
  background-color: #1a211d;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* scroll: JS sets transform on this node; any transform makes
     background-attachment: fixed behave like scroll to this box, not the viewport. */
  background-attachment: scroll;
  will-change: transform;
}

/* About — fixed parallax (viewport-fixed bg; no JS transform on this layer) */
.page-hero--parallax.page-hero--about .page-hero__bg {
  top: 0;
  height: 100%;
  background-image: url("../image/backgrounds/Lucille_Ball_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  will-change: auto;
  transform: none;
}

.page-hero--parallax .page-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(12, 18, 15, 0.74);
}

.page-hero--parallax.page-hero--about .page-hero__scrim {
  background: rgba(12, 18, 15, 0.62);
}

.page-hero--parallax .page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  width: 100%;
  margin-inline: auto;
  min-width: 0;
  box-sizing: border-box;
}

.page-hero--parallax .page-hero__title,
.page-hero--parallax .page-hero__sub,
.page-hero--parallax .page-hero__lede,
.page-hero--parallax .page-hero__label,
.page-hero--parallax .page-hero__inner p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.page-hero--parallax .page-hero__label {
  color: rgba(255, 255, 255, 0.62);
}

.page-hero--parallax .page-hero__title {
  color: var(--white);
}

.page-hero__sub {
  margin: 0 0 0.85rem;
  max-width: 52ch;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--muted);
}

.page-hero--parallax .page-hero__sub {
  color: rgba(255, 255, 255, 0.93);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.page-hero--parallax .page-hero__lede {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero--parallax .page-hero__inner .text-link-arrow {
  color: rgba(255, 255, 255, 0.95);
}

.page-hero--parallax .page-hero__inner .text-link-arrow:hover {
  color: var(--white);
}

.page-hero--parallax .page-hero__lede + p {
  margin-top: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero--parallax .page-hero__bg {
    top: -12%;
    height: 124%;
    will-change: auto;
    background-attachment: fixed;
  }

  .page-hero--parallax.page-hero--about .page-hero__bg {
    top: 0;
    height: 100%;
  }

  .home-strip--concrete__bg,
  .home-strip--parallax [data-parallax-bg] {
    top: -30%;
    height: 160%;
    will-change: auto;
    transform: none !important;
    background-attachment: fixed;
  }
}

/* About page — story panels below hero */
.page-about .about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  padding: calc(var(--space-section) * 0.85) 0 var(--space-section);
  align-items: stretch;
}

.page-about .about-story.wrap {
  width: min(92%, 100% - 1.5rem);
  max-width: none;
  margin-inline: auto;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .page-about .about-story.wrap {
    width: 85vw;
    max-width: none;
  }
}

@media (min-width: 800px) {
  .page-about .about-story {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-about .about-story__panel {
  margin: 0;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 1.85rem);
  background: var(--green-700);
  color: var(--white);
  border: 1px solid rgba(18, 24, 20, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(18, 24, 20, 0.18);
  transition:
    background 0.85s var(--ease-out),
    color 0.85s ease,
    border-color 0.85s ease,
    box-shadow 0.85s ease;
}

.page-about .about-story__panel:hover {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 10px 32px rgba(20, 34, 24, 0.06);
}

.page-about .about-story__heading {
  margin: 0 0 0.65rem;
  color: var(--white);
  transition: color 0.85s ease;
}

.page-about .about-story__panel:hover .about-story__heading {
  color: var(--green-900);
}

.page-about .about-story__text.prose {
  max-width: none;
  flex: 1;
}

.page-about .about-story__text.prose p {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.85s ease;
}

.page-about .about-story__panel:hover .about-story__text.prose p {
  color: var(--muted);
}

.page-about .about-story__text p:last-child {
  margin-bottom: 0;
}

.page-about-visit__lede {
  margin: 0 0 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .page-about .about-story__panel,
  .page-about .about-story__heading,
  .page-about .about-story__text.prose p {
    transition-duration: 0.01ms;
  }
}

.prose {
  max-width: 52ch;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.stack {
  padding: var(--space-section) 0 0;
}

.stack--tight {
  padding-top: calc(var(--space-section) * 0.65);
}

/* Bud Bar — “Community first” band */
body.page-about #bud-bar .stack.stack--community-urban,
.page-about #bud-bar .stack.stack--community-urban,
body.page-bud-bar .stack.stack--community-urban {
  position: relative;
  isolation: isolate;
  margin-top: calc(var(--space-section) * 0.35);
  margin-bottom: calc(var(--space-section) * 0.35);
  padding: clamp(2.5rem, 6vw, 4rem) max(1.25rem, 4vw);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--green-900);
  background-image: url("../image/dispensary-location/20260424_135537.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow:
    inset 0 0 0 9999px rgba(12, 18, 15, 0.58),
    0 18px 40px rgba(18, 24, 20, 0.12);
}

body.page-about #bud-bar .stack.stack--community-urban .h2,
.page-about #bud-bar .stack.stack--community-urban .h2,
body.page-about #bud-bar .stack.stack--community-urban .prose,
.page-about #bud-bar .stack.stack--community-urban .prose,
body.page-about #bud-bar .stack.stack--community-urban .prose strong,
.page-about #bud-bar .stack.stack--community-urban .prose strong,
body.page-bud-bar .stack.stack--community-urban .h2,
body.page-bud-bar .stack.stack--community-urban .prose,
body.page-bud-bar .stack.stack--community-urban .prose strong {
  color: var(--white);
  position: relative;
  z-index: 1;
}

body.page-about #bud-bar .stack.stack--community-urban .prose p,
.page-about #bud-bar .stack.stack--community-urban .prose p,
body.page-bud-bar .stack.stack--community-urban .prose p {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: var(--space-section) 0 0;
  border: 0;
}

/* Menu categories */
.cat-grid {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0 0;
  display: grid;
  column-gap: 0.75rem;
  row-gap: clamp(1.5rem, 3vw, 2.25rem);
  overflow: visible;
}

@media (min-width: 640px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1140px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cat-grid__item {
  position: relative;
  z-index: 0;
  isolation: isolate;
  box-sizing: border-box;
  display: flex;
  height: auto;
  min-height: clamp(14rem, 21vw, 17.5rem);
  padding: 0;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  transition:
    background 0.2s ease,
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}

.cat-grid__link {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  flex: 1;
  width: 100%;
  min-height: inherit;
  color: inherit;
  text-decoration: none;
}

.cat-grid__link:focus-visible {
  outline: 2px solid var(--brand-bg);
  outline-offset: 4px;
  border-radius: 12px;
}

.cat-grid__item::after {
  content: "";
  position: absolute;
  inset: 0;
  top: auto;
  height: clamp(11.5rem, 15vw, 13.5rem);
  background: var(--cream);
  border-radius: 12px;
  z-index: 0;
  pointer-events: none;
  transition:
    background 0.2s ease,
    box-shadow 0.25s ease;
}

.cat-grid__item::before {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  width: 50%;
  height: clamp(11.5rem, 15vw, 13.5rem);
  background: #bbd0b5;
  border-radius: 12px 0 0 12px;
  z-index: 1;
  pointer-events: none;
  transition: background 0.2s ease;
}

.cat-grid__visual {
  position: relative;
  z-index: 2;
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  align-self: flex-end;
  height: clamp(11.5rem, 15vw, 13.5rem);
  box-sizing: border-box;
  overflow: visible;
  padding: 0;
  pointer-events: none;
}

.cat-grid__photo {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: clamp(14rem, 21vw, 17.5rem);
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: bottom center;
  border-radius: 10px;
  filter: drop-shadow(0 12px 20px rgba(18, 24, 20, 0.2));
}

.cat-grid__copy {
  position: relative;
  z-index: 2;
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  min-width: 0;
  align-self: flex-end;
  height: clamp(11.5rem, 15vw, 13.5rem);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  justify-content: flex-end;
  padding: 0 0.65rem 1rem 0.5rem;
  overflow: visible;
  overflow-wrap: break-word;
}

h3.j-cards__title {
  font-family: var(--font-heading);
  font-weight: 800;
}

.blog-feed-card__title a {
  font-family: var(--font-heading);
}

.site-footer__list a {
  font-size: 1.2em;
}

.cat-grid__item:hover {
  cursor: pointer;
  transform: translateY(-4px);
  z-index: 3;
}

.cat-grid__item:hover::after {
  background: var(--white);
  box-shadow: 0 12px 32px rgba(20, 34, 24, 0.12);
}

.cat-grid__item:hover::before {
  background: var(--brand-bg-hover);
}
.cat-grid__name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--urban);
}

.cat-grid__meta {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Explore — not scoped to .page-home (CMS body may lack that class) */
.home-explore .home-strip__inner.wrap,
.home-explore .wrap.home-strip__inner {
  width: min(100% - 2rem, var(--wrap-explore));
  max-width: var(--wrap-explore);
  margin-inline: auto;
  box-sizing: border-box;
}

@media (min-width: 1140px) {
  .home-explore .cat-grid__item::before {
    width: 44%;
  }

  .home-explore .cat-grid__item::after {
    width: 100%;
  }

  .home-explore .cat-grid__visual {
    flex: 0 0 44%;
    width: 44%;
    max-width: 44%;
  }

  .home-explore .cat-grid__copy {
    flex: 0 0 56%;
    width: 56%;
    max-width: 56%;
    padding-right: 0.75rem;
  }

  .home-explore .cat-grid__name {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    line-height: 1.15;
    white-space: nowrap;
  }
}

/* Visit */
.schedule {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.schedule li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink);
}

.schedule span:last-child {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.visit-cards {
  display: grid;
  gap: 1rem;
  margin-top: calc(var(--space-section) * 0.5);
}

@media (min-width: 720px) {
  .visit-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .visit-cards--pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-about .visit-card {
  position: relative;
  margin-top: calc(var(--space-section) * 0.75);
  padding: 1.5rem 1.35rem 1.45rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  background: linear-gradient(155deg, var(--white) 0%, var(--green-100) 100%);
  box-shadow: 0 6px 22px rgba(20, 34, 24, 0.07);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.page-about .visit-cards .visit-card {
  margin-top: 0;
  height: 100%;
}

.page-about .visit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 4px solid var(--brand-bg);
  border-radius: inherit;
  pointer-events: none;
  box-sizing: border-box;
  transition: border-color 0.4s ease;
}

.page-about .visit-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: -18%;
  width: 55%;
  height: 100%;
  background: radial-gradient(circle, rgb(94 243 138 / 4%) 0%, transparent 68%);
  pointer-events: none;
}

.page-about .visit-card--pickup::before {
  border-color: var(--green-600);
}

.page-about .visit-card--app::before {
  border-color: var(--green-700);
}

.page-about .visit-card--location::before {
  border-color: var(--urban-signal);
}

.page-about .visit-card--prepare::before {
  border-color: var(--green-900);
}

.page-about .visit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(20, 34, 24, 0.11);
}

.page-about .visit-card:hover::before {
  border-color: var(--brand-bg);
}

.page-about .visit-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(20, 34, 24, 0.08);
  color: var(--brand-bg);
  box-shadow: 0 4px 14px rgba(29, 126, 1, 0.12);
}

.page-about .visit-card__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.page-about .visit-card--pickup .visit-card__icon {
  color: var(--green-600);
}

.page-about .visit-card--app .visit-card__icon {
  color: var(--green-700);
}

.page-about .visit-card--location .visit-card__icon {
  color: var(--green-900);
}

.page-about .visit-card--prepare .visit-card__icon {
  color: var(--green-900);
}

.page-about .visit-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-900);
  line-height: 1.15;
}

.page-about .visit-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

.page-about .visit-card a {
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .page-about .visit-card {
    transition-duration: 0.01ms;
  }

  .page-about .visit-card:hover {
    transform: none;
  }
}

.page-about #ways-heading,
.page-about #hours-heading {
  font-size: clamp(1.85rem, 3.5vw, 4.35rem);
}

.visit-gallery {
  margin-top: calc(var(--space-section) * 0.75);
}

.visit-gallery__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (min-width: 720px) {
  .visit-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

.visit-gallery__item {
  margin: 0;
  border-radius: var(--radius-tight);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--urban);
}

.visit-gallery__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visit-gallery .visit-cards--pair {
  margin-top: 1rem;
}

.visit-gallery__actions {
  margin: 1.25rem 0 0;
  text-align: center;
}

/* FAQ */
.faq {
  max-width: 640px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.faq details:first-of-type {
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f067";
  font-size: 0.9rem;
  line-height: 1;
  color: var(--green-600);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "\f068";
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Contact */
body.page-contact .page-hero--parallax .page-hero__bg {
  --page-hero-bg: url("../image/dispensary-location/20260424_135537.jpg");
}

.contact-split__form-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-split__below-form {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.contact-split__prose .h2.title-display {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: 0.65rem;
}

.contact-split__prose .h2:not(.title-display) {
  margin-bottom: 0.5rem;
}

.contact-split {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-top: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.contact-split__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-split__title {
  margin: 0;
}

.contact-split__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-split .form {
  max-width: none;
}

.contact-split__aside {
  display: grid;
  gap: 1.25rem;
}

.contact-split__map-title {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.contact-split__map-frame {
  min-height: min(40vw, 320px);
}

.form {
  max-width: 480px;
  display: grid;
  gap: 1.1rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.form input,
.form textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-tight);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--green-600);
  outline-offset: 1px;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.btn--dark {
  background: var(--urban);
  color: var(--white);
  justify-self: start;
}

.btn--dark:hover {
  background: var(--green-700);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  border-color: var(--green-600);
  color: var(--green-700);
}

.legal-block h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 2rem 0 0.75rem;
  color: var(--urban);
}

.legal-block h2:first-child {
  margin-top: 0;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
  font-size: 0.98rem;
}

.legal-block ul {
  padding-left: 1.1rem;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.stack-actions {
  margin-top: 1.75rem;
}

/* ——— Home: product slider (reference-style cards) ——— */
.product-slider {
  background: var(--white);
  padding: calc(var(--space-section) * 0.85) 0 var(--space-section);
  border-bottom: 1px solid var(--line);
}

.product-slider + .product-slider {
  padding-top: calc(var(--space-section) * 0.5);
}

.product-slider + .deals-slider {
  padding-top: calc(var(--space-section) * 0.45);
  border-top: none;
  padding-bottom: 150px;
}

.product-slider:has(+ .deals-slider) {
  padding-bottom: calc(var(--space-section) * 0.45);
  border-bottom: none;
}

.product-slider__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.product-slider__intro {
  flex: 1 1 16rem;
}

.product-slider__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--green-900);
}

.product-slider__sub {
  margin: 0;
  max-width: 42ch;
  font-size: 0.98rem;
  color: var(--muted);
}

.product-slider__sub a {
  color: var(--brand-bg);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-slider__sub a:hover {
  color: var(--brand-bg-hover);
}

.product-slider__arrows {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s var(--ease-out),
    box-shadow 0.2s ease;
}

.slider-arrow:hover {
  border-color: rgba(29, 126, 1, 0.45);
  color: var(--brand-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 34, 24, 0.08);
}

.slider-arrow:focus-visible {
  outline: 2px solid var(--brand-bg);
  outline-offset: 2px;
}

.product-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0 0.75rem;
  container-type: inline-size;
  container-name: prod-slider;
  width: 100%;
}

.product-slider__viewport::-webkit-scrollbar {
  display: none;
}

.product-slider__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding-right: 1rem;
}

.product-card {
  flex-grow: 0;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(20, 34, 24, 0.08);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(20, 34, 24, 0.06);
  overflow: hidden;
  min-width: 0;
  transition:
    box-shadow 0.3s var(--ease-out),
    transform 0.3s var(--ease-out),
    border-color 0.25s ease;
}

/* Card width = visible columns in slider viewport (gaps between cards). */
@container prod-slider (max-width: 540px) {
  .product-card {
    flex-basis: calc((100cqi - 1 * 1.25rem) / 2);
  }
}

@container prod-slider (min-width: 541px) and (max-width: 900px) {
  .product-card {
    flex-basis: calc((100cqi - 2 * 1.25rem) / 3);
  }
}

@container prod-slider (min-width: 901px) {
  .product-card {
    flex-basis: calc((100cqi - 3 * 1.25rem) / 4);
  }
}

.product-card:hover {
  box-shadow: 0 14px 36px rgba(20, 34, 24, 0.12);
  transform: translateY(-4px);
  border-color: rgba(20, 34, 24, 0.12);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--paper);
  overflow: hidden;
}

.product-card__media > a {
  display: block;
  height: 100%;
}

.product-card__sale {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 3rem;
  height: auto;
  pointer-events: none;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
  background: var(--brand-bg);
  color: var(--white);
  cursor: pointer;
  transition:
    transform 0.2s var(--ease-out),
    background 0.2s ease;
}

.product-card__fav:hover {
  transform: scale(1.06);
  background: var(--brand-bg-hover);
}

.product-card__fav svg {
  flex-shrink: 0;
}

.product-card__fav[aria-pressed="true"] path {
  fill: var(--white);
  stroke: var(--white);
}

.product-card__body {
  padding: 1rem 1rem 0.5rem;
  flex: 1 1 auto;
}

.product-card__meta {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: #5a6b60;
}

.product-card__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
  margin-top: 0.65rem;
}

.product-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #121814;
  line-height: 1;
}

.product-card__type,
.product-card__brand {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a9a90;
  line-height: 1.2;
  text-align: right;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.product-card__tag {
  display: inline-block;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: var(--paper);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: #5a6b60;
  text-transform: uppercase;
}

.product-card__tag--dominance {
  background: rgba(29, 126, 1, 0.1);
  color: var(--brand-bg);
}

.product-card__cta {
  margin: 0.75rem 1rem 1rem;
  margin-top: auto;
  width: calc(100% - 2rem);
  align-self: center;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1rem;
  border: none;
  border-radius: 8px;
  background: var(--brand-bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s var(--ease-out),
    box-shadow 0.2s ease;
}

.product-card__cta:hover {
  background: var(--brand-bg-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(29, 126, 1, 0.35);
}

.product-card__cta:focus-visible {
  outline: 2px solid var(--brand-bg);
  outline-offset: 2px;
}

.product-card__cta-icon {
  flex-shrink: 0;
}

/* ——— Home: Shop All Deals promo slider ——— */
.deals-slider {
  --deal-cta: #f7941d;
  --deal-cta-hover: #e58510;
  --deal-card-bg: url("https://cloud.proteuserp.com/pictures/sites/yeti//image/albums/2/SM_Layup%20Cans%20large.jpg");
  background: var(--white);
  padding: calc(var(--space-section) * 0.65) 0 calc(var(--space-section) * 0.85);
  border-bottom: 1px solid var(--line);
}

.deals-slider__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.deals-slider__heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.deals-slider__icon {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  color: var(--brand-bg);
}

.deals-slider__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-bg);
  line-height: 1.05;
}

.deals-slider__arrows {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}

.deals-arrow {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: var(--brand-bg);
  color: var(--white);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s var(--ease-out);
}

.deals-arrow:hover {
  background: var(--brand-bg-hover);
  transform: translateY(-1px);
}

.deals-arrow:focus-visible {
  outline: 2px solid var(--green-900);
  outline-offset: 2px;
}

.deals-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.15rem 0 0.5rem;
  container-type: inline-size;
  container-name: deals-slider;
  width: 100%;
}

.deals-slider__viewport::-webkit-scrollbar {
  display: none;
}

.deals-slider__track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  padding-right: 0.5rem;
}

.deal-card {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  scroll-snap-align: start;
  aspect-ratio: 2.35 / 1.1;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
  display: block;
}

.deal-card__bg {
  position: absolute;
  inset: 0;
  background-image: var(--deal-bg, var(--deal-card-bg));
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
}

.deal-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(12, 18, 14, 0.48);
}

.deal-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  min-height: 100%;
  padding: clamp(0.85rem, 2vw, 1.15rem) 0.75rem clamp(0.75rem, 1.75vw, 1rem);
}

.deal-card__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
}

.deal-card__offer {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
}

.deal-card__detail {
  margin: 0;
  max-width: 30ch;
  padding-bottom: 5px;
  font-size: clamp(0.55rem, 1.1vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
}

.deal-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  background: var(--deal-cta);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition:
    background 0.2s ease,
    transform 0.2s var(--ease-out);
}

.deal-card__cta:hover {
  background: var(--deal-cta-hover);
  color: var(--white) !important;
  text-decoration: none;
  transform: translateY(-1px);
}

.deal-card__cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

@container deals-slider (max-width: 540px) {
  .deal-card {
    flex-basis: calc((100cqi - 1 * 0.85rem) / 2);
  }
}

@container deals-slider (min-width: 541px) and (max-width: 900px) {
  .deal-card {
    flex-basis: calc((100cqi - 2 * 0.85rem) / 3);
  }
}

@container deals-slider (min-width: 901px) {
  .deal-card {
    flex-basis: calc((100cqi - 3 * 0.85rem) / 4);
  }
}

/* Blog feed & posts */
body.page-blog .page-main {
  padding-bottom: 0;
}

body.page-blog .blog-band {
  width: 100%;
  margin: 0;
  padding: var(--space-section) max(1rem, 4vw);
  background: var(--blog-surface);
  color: var(--white);
}

body.page-blog .blog-article__figure {
  display: none;
}

body.page-blog .blog-band__head {
  margin-bottom: 1.5rem;
}

body.page-blog .blog-band__head .h2,
body.page-blog #posts-heading.h2 {
  margin: 0;
  color: var(--white);
}

body.page-blog .blog-feed__empty {
  color: rgba(255, 255, 255, 0.72);
}

body.page-blog .blog-feed__empty a {
  color: var(--urban-signal);
}

#posts-heading.h2 {
  margin-bottom: 1.25rem;
}

.blog-feed__empty {
  margin: 0;
  padding: 1.5rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-feed {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: var(--wrap-xl);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.blog-feed-card {
  display: grid;
  grid-template-columns: clamp(6.75rem, 34%, 14rem) minmax(0, 1fr);
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-tight);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 2px 14px rgba(20, 34, 24, 0.05);
  transition:
    border-color 0.2s ease,
    box-shadow 0.25s ease,
    transform 0.25s var(--ease-out);
}

.blog-feed-card__thumb {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: var(--line);
}

.blog-feed-card__thumb img {
  width: 100%;
  height: 100%;
  min-height: 9rem;
  object-fit: cover;
  display: block;
}

.blog-feed-card__thumb:focus-visible {
  outline: 2px solid var(--brand-bg);
  outline-offset: -2px;
}

.blog-feed-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 1.5rem 1.35rem;
}

@media (min-width: 640px) {
  .blog-feed-card {
    grid-template-columns: clamp(9rem, 28%, 16.5rem) minmax(0, 1fr);
  }

  .blog-feed-card__thumb img {
    min-height: 10.5rem;
  }
}

.blog-feed-card:hover {
  border-color: rgba(29, 126, 1, 0.28);
  box-shadow: 0 12px 32px rgba(20, 34, 24, 0.1);
  transform: translateY(-3px);
}

.blog-feed-card__date {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.blog-feed-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-feed-card__title a {
  color: var(--green-900);
  text-decoration: none;
}

.blog-feed-card__title a:hover {
  color: var(--brand-bg);
}

.blog-feed-card__excerpt {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.blog-feed__item--full {
  list-style: none;
}

.blog-article {
  padding: 1.5rem 1.35rem 2rem;
  border-radius: var(--radius-tight);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 2px 14px rgba(20, 34, 24, 0.05);
}

body.page-blog .blog-feed__item--full .blog-article {
  width: 100%;
  max-width: var(--wrap-xl);
  margin-inline: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.page-blog .blog-feed__item--full .blog-article__back a {
  color: var(--urban-signal);
}

body.page-blog .blog-feed__item--full .blog-feed-card__date,
body.page-blog .blog-feed__item--full .h1 {
  color: var(--white);
}

body.page-blog .blog-feed__item--full .blog-article__body.post-article.prose {
  max-width: var(--wrap);
  margin-inline: auto;
}

body.page-blog .blog-feed__item--full .blog-article__body.post-article.prose p,
body.page-blog .blog-feed__item--full .blog-article__body.post-article.prose li,
body.page-blog
  .blog-feed__item--full
  .blog-article__body.post-article.prose
  ul {
  color: rgba(255, 255, 255, 0.92);
}

body.page-blog
  .blog-feed__item--full
  .blog-article__body.post-article.prose
  .h2,
body.page-blog
  .blog-feed__item--full
  .blog-article__body.post-article.prose
  h2.h2 {
  color: var(--urban-signal);
}

body.page-blog
  .blog-feed__item--full
  .blog-article__body.post-article.prose
  strong {
  color: var(--white);
}

body.page-blog .blog-feed__item--full .blog-article__body.post-article.prose a {
  color: var(--urban-signal);
}

.blog-article__back {
  margin: 0 0 1rem;
}

.blog-article__figure {
  margin: 1.25rem 0;
}

.blog-article__figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-tight);
  display: block;
}

.blog-article__body {
  color: var(--text);
  line-height: 1.65;
}

.blog-article__body p {
  margin: 0 0 1rem;
}

.post-lead-figure {
  margin: 0 0 1.5rem;
  border-radius: var(--radius-tight);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.post-lead-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.post-article.prose {
  max-width: 62ch;
}

.post-article.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.post-article.prose li {
  margin-bottom: 0.35rem;
}

.post-article__h3 {
  margin: 1.75rem 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: 0.02em;
}

/* Blog post article body */
article:has(.post-article) .stack.wrap {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, 4vw);
  padding-bottom: var(--space-section);
  background: var(--blog-surface);
  color: var(--white);
}

article:has(.post-article) .post-lead-figure,
article:has(.post-article) .post-article.prose {
  max-width: var(--wrap);
  margin-inline: auto;
}

article:has(.post-article) .post-lead-figure {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
}

article:has(.post-article) .post-article.prose p,
article:has(.post-article) .post-article.prose li {
  color: rgba(255, 255, 255, 0.92);
}

article:has(.post-article) .post-article.prose ul {
  color: rgba(255, 255, 255, 0.92);
}

article:has(.post-article) .post-article.prose .h2,
article:has(.post-article) .post-article.prose h2.h2 {
  color: var(--urban-signal);
}

article:has(.post-article) .post-article__h3 {
  color: var(--urban-signal);
}

article:has(.post-article) .post-article.prose strong {
  color: var(--white);
}

article:has(.post-article) .post-article.prose a {
  color: var(--urban-signal);
  font-weight: 600;
}

article:has(.post-article) .post-article.prose a:hover {
  color: var(--white);
}

article:has(.post-article) .post-faq details {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

article:has(.post-article) .post-faq details:first-of-type {
  border-top-color: rgba(255, 255, 255, 0.14);
}

article:has(.post-article) .post-faq summary {
  color: var(--white);
}

article:has(.post-article) .post-faq details p {
  color: rgba(255, 255, 255, 0.85);
}

.post-faq {
  margin-top: 0.5rem;
}

.post-footer {
  padding-bottom: var(--space-section);
}

.post-nav {
  margin: 0 0 1.5rem;
}

.post-share {
  margin: 0 0 2.5rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.post-share__label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.post-share__links {
  font-size: 0.95rem;
  font-weight: 600;
}

.post-share__links a {
  color: var(--brand-bg);
  text-decoration: none;
}

.post-share__links a:hover {
  text-decoration: underline;
}

.post-share__sep {
  margin: 0 0.5rem;
  color: var(--line);
}

.post-related {
  margin-top: 0.5rem;
}

.post-related__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .post-related__list {
    grid-template-columns: 1fr 1fr;
  }
}

.post-related-card {
  padding: 1.35rem;
  border-radius: var(--radius-tight);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--blog-surface);
}

article:has(.post-article) .post-related .h2,
article:has(.post-article) .post-related-card__title a {
  color: var(--white);
}

article:has(.post-article) .post-related-card__title a:hover {
  color: var(--urban-signal);
}

article:has(.post-article) .post-related-card__excerpt {
  color: rgba(255, 255, 255, 0.72);
}

article:has(.post-article) .post-related-card .text-link-arrow {
  color: var(--urban-signal);
}

.post-related-card__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.post-related-card__title a {
  color: var(--green-900);
  text-decoration: none;
}

.post-related-card__title a:hover {
  color: var(--brand-bg);
}

.post-related-card__excerpt {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ——— Homepage · urban layer (index only) ——— */

.home-street-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.25rem;
  padding: 0.55rem max(1rem, 5vw);
  background: var(--urban);
  color: rgba(255, 255, 255, 0.78);
  font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--brand-bg);
}

.home-street-strip__line {
  white-space: nowrap;
}

.home-street-strip__line--accent {
  color: var(--urban-signal);
}

.page-home main,
.page-home .home-explore.home-strip--light,
.page-home .home-explore,
.page-home .home-explore .wrap {
  overflow: visible;
}

.page-home .home-explore {
  position: relative;
  isolation: isolate;
}

.page-home .home-explore.reveal-on-scroll {
  overflow: visible;
  transform: none;
}

.page-home .home-explore.reveal-on-scroll.is-visible {
  transform: none;
}

.page-home .home-explore .home-strip__watermark,
.page-home .home-pillars .home-strip__watermark {
  z-index: 5;
}

.page-home .home-explore .home-strip__inner {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.page-home .home-explore .wrap,
.page-home .home-explore .home-strip__inner {
  width: var(--wrap-explore);
  max-width: var(--wrap-explore);
}

@media (min-width: 1140px) {
  .page-home .home-explore .cat-grid__name {
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    white-space: nowrap;
  }
}

.page-home .home-explore .cat-grid {
  border-color: rgba(20, 34, 24, 0.14);
  box-shadow: 0 16px 48px rgba(18, 24, 20, 0.08);
  overflow: visible;
  margin-top: clamp(3.5rem, 7vw, 5rem);
}

.page-home .home-explore .cat-grid {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.page-home .home-explore .cat-grid__item {
  display: flex;
  height: auto;
  min-height: clamp(14rem, 21vw, 17.5rem);
  background: transparent;
  overflow: visible;
}

.page-home .home-explore .cat-grid__link {
  min-height: clamp(14rem, 21vw, 17.5rem);
}

.page-home .home-explore .cat-grid__item::after {
  background: var(--white);
}

.page-home .home-explore .cat-grid__visual {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  overflow: visible;
}

.page-home .home-explore .cat-grid__photo {
  max-width: 92%;
  max-height: clamp(14rem, 21vw, 17.5rem);
}

.page-home .home-explore .cat-grid__copy {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  min-width: 0;
}

.page-home .home-explore .cat-grid__meta {
  font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}

.page-home .home-ways {
  position: relative;
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(
      180deg,
      transparent,
      transparent 10px,
      rgba(20, 34, 24, 0.035) 10px,
      rgba(20, 34, 24, 0.035) 11px
    ),
    linear-gradient(
      180deg,
      rgba(244, 248, 245, 0.88) 0%,
      rgba(244, 248, 245, 0.94) 100%
    ),
    url("../image/dispensary-location/20260424_135604.jpg");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed;
}

.panel--urban.panel--media .panel__bg,
.panel--urban.panel--media .panel__overlay {
  z-index: 0;
}

.panel--urban.panel--media::before {
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.22) 52%,
      rgba(0, 0, 0, 0.35) 100%
    ),
    linear-gradient(
      105deg,
      rgba(15, 36, 24, 0.88) 0%,
      rgba(15, 36, 24, 0.62) 55%,
      rgba(15, 36, 24, 0.48) 100%
    );
}

.panel--urban.panel--media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  background: repeating-linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.11),
    rgba(0, 0, 0, 0.11) 1px,
    transparent 1px,
    transparent 2px
  );
  mix-blend-mode: multiply;
}

.panel--urban .panel__inner {
  z-index: 2;
}

.panel--urban .panel__corner--tr {
  z-index: 3;
  border-color: rgba(94, 243, 138, 0.45);
  box-shadow: 0 0 24px rgba(94, 243, 138, 0.12);
}

.page-home .split--urban {
  position: relative;
  border-top: none;
  padding-top: calc(var(--space-section) * 1.15);
}

.page-home .split--urban::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(100% - 2rem, var(--wrap-wide));
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(20, 34, 24, 0.2) 15%,
    var(--brand-bg) 50%,
    rgba(20, 34, 24, 0.2) 85%,
    transparent 100%
  );
}

.page-home .split--urban .split__figure--hover {
  border-radius: 6px;
  border: 3px solid var(--urban);
  box-shadow:
    0 0 0 1px rgba(29, 126, 1, 0.35),
    0 28px 56px rgba(18, 24, 20, 0.22);
}

.page-home .split--urban .split__photo {
  border-radius: 3px;
}

.page-home .split--urban .split__figure--app {
  max-width: min(100%, 24rem);
}

@media (min-width: 800px) {
  .page-home .split--urban .split__figure--app {
    margin-inline: 0 0 auto;
  }
}

.home-strip--concrete,
.home-strip--parallax {
  position: relative;
  padding: calc(var(--space-section) * 1.1) 0;
  overflow: hidden;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-strip--concrete__bg,
.home-strip--parallax [data-parallax-bg] {
  position: absolute;
  left: 0;
  right: 0;
  top: -40%;
  height: 180%;
  z-index: 0;
  background-color: var(--urban);
  background-image: url("../image/backgrounds/NCC.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.home-strip--concrete__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      165deg,
      rgba(12, 22, 42, 0.82) 0%,
      rgba(18, 28, 52, 0.72) 48%,
      rgba(8, 14, 28, 0.88) 100%
    ),
    radial-gradient(
      ellipse 90% 70% at 72% 40%,
      rgba(59, 130, 246, 0.28) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 70% 55% at 18% 75%,
      rgba(37, 99, 235, 0.22) 0%,
      transparent 52%
    );
}

.home-strip--concrete::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(
      circle at 22% 28%,
      rgba(96, 165, 250, 0.35) 0%,
      transparent 48%
    ),
    radial-gradient(
      circle at 85% 68%,
      rgba(59, 130, 246, 0.3) 0%,
      transparent 42%
    );
}

.home-strip--concrete .wrap {
  position: relative;
  z-index: 2;
}

.home-strip--concrete .h2 {
  color: var(--white);
}

.home-strip--concrete .prose p {
  color: rgba(255, 255, 255, 0.74);
}

.home-strip--concrete .btn--primary {
  box-shadow: 0 6px 36px rgba(0, 0, 0, 0.4);
}

.page-home .home-pillars {
  position: relative;
  background-color: var(--white);
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.94) 100%
    ),
    url("../image/dispensary-location/20260424_135615.jpg");
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
}

.page-home .home-pillars .home-strip__title.title-display {
  margin-bottom: 0;
  max-width: 100%;
  text-wrap: balance;
}

.page-home .home-pillars::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--urban) 0%,
    var(--brand-bg) 35%,
    var(--urban-signal) 50%,
    var(--brand-bg) 65%,
    var(--urban) 100%
  );
  opacity: 0.95;
}
