/* ============================================================
   GreenCare V6 — Refined Editorial
   Inspired by: Aesop, Stiiizy, Sunday Goods
   Principles: restraint, whitespace, type-led, one bold moment per section
   ============================================================ */

:root {
  /* PALETTE — 3 colors total */
  --bone:    #F4EFE4;  /* primary BG */
  --linen:   #E8E1CE;  /* surface 2 */
  --ink:     #1A1814;  /* primary text */
  --ink-60:  #5C5852;  /* secondary text */
  --ink-30:  rgba(26, 24, 20, 0.18);  /* rules / borders */
  --green:   #003D1F;  /* the ONE accent */
  --green-hover: #002a15;

  /* TYPE — 2 families */
  --display: 'Anton', Impact, sans-serif;
  --body:    'Inter Tight', system-ui, -apple-system, sans-serif;

  /* SPACE — fixed, even rhythm */
  --maxw:    1280px;
  --gutter:  clamp(1.5rem, 5vw, 4rem);
  --section: clamp(5rem, 10vw, 8rem);
  --gap:     clamp(2rem, 4vw, 3rem);

  --radius:  2px;
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 80px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, .brx-body {
  margin: 0 !important;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body) !important;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: var(--header-h);
  letter-spacing: -0.005em;
}
section { contain: layout style; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: 0; border: 0; cursor: pointer; color: inherit; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; letter-spacing: -0.015em; line-height: 1; }
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--green); color: var(--bone); }

/* CONTAINER */
.gc-container {
  width: 100%; max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  position: relative;
}
.gc-container--narrow { max-width: 920px; }

/* TYPE SCALE — clear hierarchy, no orphans */
.gc-eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.gc-display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
}

/* H1 — hero only */
.gc-h1 {
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

/* H2 — section titles */
.gc-h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* H3 — card titles */
.gc-h3 {
  font-family: var(--body);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.005em;
}

/* H3 display variant — for editorial */
.gc-h3--display {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.gc-lede {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink);
  max-width: 56ch;
}
.gc-body {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-60);
  max-width: 60ch;
}
.gc-body strong { color: var(--ink); font-weight: 600; }

/* RULE */
.gc-rule { width: 100%; height: 1px; background: var(--ink-30); border: 0; margin: 0; }

/* BUTTONS — bigger, more presence, square edges */
.gc-btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 1.1rem 1.85rem;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
  white-space: nowrap;
}
.gc-btn:hover { background: var(--green); border-color: var(--green); }
.gc-btn--green { background: var(--green); border-color: var(--green); }
.gc-btn--green:hover { background: var(--ink); border-color: var(--ink); }
.gc-btn--ghost { background: transparent; color: var(--ink); }
.gc-btn--ghost:hover { background: var(--ink); color: var(--bone); }
.gc-btn--ghost-bone { background: transparent; color: var(--bone); border-color: rgba(244,239,228,0.4); }
.gc-btn--ghost-bone:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.gc-btn--sm { padding: 0.75rem 1.25rem; font-size: 0.7rem; }
.gc-btn--lg { padding: 1.25rem 2.2rem; font-size: 0.82rem; }
.gc-btn svg { width: 14px; height: 14px; transition: transform 220ms var(--ease); flex-shrink: 0; }
.gc-btn:hover svg { transform: translateX(3px); }

/* HEADER — clean, restrained, larger logo */
.gc-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(244, 239, 228, 0.97);
  border-bottom: 1px solid var(--ink-30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  height: var(--header-h);
  display: flex; align-items: center;
}
.gc-header__inner {
  width: 100%; max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.gc-header__brand img {
  height: 44px;
  width: auto;
  display: block;
}
.gc-header__nav { display: flex; gap: 2.5rem; }
.gc-header__nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.5rem 0;
  position: relative;
  transition: opacity 200ms;
}
.gc-header__nav a:hover { opacity: 0.55; }
.gc-header__nav a[aria-current="page"]::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1.5px; background: var(--ink);
}

/* FOOTER — generous, calm */
.gc-footer {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
}
.gc-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 4rem);
  border-bottom: 1px solid rgba(244, 239, 228, 0.12);
  margin-bottom: 2.5rem;
}
.gc-footer__brand img {
  height: 56px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}
.gc-footer__brand p {
  color: rgba(244, 239, 228, 0.65);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 320px;
}
.gc-footer__col h4 {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.5);
  margin-bottom: 1.25rem;
}
.gc-footer__col li { margin-bottom: 0.85rem; font-size: 0.98rem; color: rgba(244, 239, 228, 0.8); }
.gc-footer__col a:hover { color: var(--bone); }
.gc-footer__bar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem;
  color: rgba(244, 239, 228, 0.45);
}
.gc-footer__bar strong { color: rgba(244, 239, 228, 0.85); font-weight: 600; }
.gc-footer__license {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  letter-spacing: 0.08em;
}
.gc-footer__fine {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: rgba(244, 239, 228, 0.45);
  line-height: 1.55;
  max-width: 720px;
}

/* SECTIONS — clean rhythm */
.gc-section { padding: var(--section) 0; }
.gc-section--narrow { padding: calc(var(--section) * 0.7) 0; }
.gc-section--linen { background: var(--linen); }
.gc-section--ink { background: var(--ink); color: var(--bone); }
.gc-section--green { background: var(--green); color: var(--bone); }

.gc-section-head { margin-bottom: clamp(3rem, 5vw, 4.5rem); display: grid; gap: 1rem; }
.gc-section-head--split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}
.gc-section-head__title { max-width: 16ch; }

/* ============ HERO — editorial, restrained, ONE composition ============ */
.gc-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 var(--section);
}
.gc-hero__top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--ink-30);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.gc-hero__live {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.gc-hero__live-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
}
.gc-hero__live-dot::after {
  content: ""; position: absolute; inset: 0;
  background: var(--green);
  border-radius: 50%;
  animation: gcDot 2s ease-out infinite;
  will-change: transform, opacity;
  transform: translateZ(0);
}
@keyframes gcDot {
  from { transform: scale(1) translateZ(0); opacity: 0.6; }
  to { transform: scale(3) translateZ(0); opacity: 0; }
}
.gc-hero__meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.gc-hero__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: end;
}
.gc-hero__title { color: var(--ink); }
.gc-hero__title-sub {
  display: block;
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  font-size: 0.4em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-60);
  margin-top: 1rem;
  line-height: 1.4;
  max-width: 28ch;
}

/* Hero image area — placeholder ready for real product photo */
.gc-hero__image {
  aspect-ratio: 4/5;
  background: var(--green);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  /* atmospheric gradient ready to be replaced by real photo */
  background-image:
    radial-gradient(ellipse 90% 70% at 70% 30%, rgba(244, 239, 228, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(26, 24, 20, 0.4) 0%, transparent 70%),
    linear-gradient(180deg, #00532a 0%, #003D1F 60%, #001a0d 100%);
}
.gc-hero__image-label {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.75);
}

.gc-hero__actions {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid var(--ink-30);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.gc-hero__sub {
  flex: 1; min-width: 280px;
  max-width: 48ch;
  font-size: 1.02rem;
  color: var(--ink-60);
}
.gc-hero__sub strong { color: var(--ink); font-weight: 600; }

/* ============ INTRO — quiet editorial ============ */
.gc-intro {
  padding: var(--section) 0;
}
.gc-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
.gc-intro__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.gc-intro__years {
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 9rem);
  line-height: 0.85;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 0.6rem;
}
.gc-intro__years-label {
  display: block;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-top: 0.85rem;
}
.gc-intro__body p {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: 60ch;
}
.gc-intro__body p:last-of-type { margin-bottom: 2rem; }
.gc-intro__body p strong { font-weight: 600; }
.gc-intro__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 0.4rem;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  transition: color 200ms, border-color 200ms;
}
.gc-intro__link:hover { color: var(--green); border-color: var(--green); }
.gc-intro__link svg { width: 13px; height: 13px; transition: transform 220ms; }
.gc-intro__link:hover svg { transform: translateX(3px); }

/* ============ STRAIN CARDS — real product placeholders ============ */
.gc-strains__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}
.gc-strain {
  display: flex; flex-direction: column;
  background: transparent;
  transition: transform 280ms var(--ease);
}
.gc-strain:hover { transform: translateY(-4px); }
.gc-strain__image {
  aspect-ratio: 4/5;
  background: var(--linen);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  /* placeholder ready for real product photography */
}
.gc-strain__image--sativa {
  background-image:
    radial-gradient(ellipse 90% 70% at 70% 30%, rgba(244,239,228,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #4a5d28 0%, #2a3815 100%);
}
.gc-strain__image--indica {
  background-image:
    radial-gradient(ellipse 90% 70% at 70% 30%, rgba(244,239,228,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #5a3320 0%, #3a1f12 100%);
}
.gc-strain__image--hybrid {
  background-image:
    radial-gradient(ellipse 90% 70% at 70% 30%, rgba(244,239,228,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #5a4d6b 0%, #2f263d 100%);
}
.gc-strain__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--bone); color: var(--ink);
  padding: 0.4rem 0.75rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
}
.gc-strain__thc {
  position: absolute; bottom: 1rem; right: 1rem;
  color: var(--bone);
  text-align: right;
}
.gc-strain__thc-num {
  font-family: var(--display);
  font-size: 1.85rem;
  line-height: 0.9;
}
.gc-strain__thc-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.2rem;
}
.gc-strain__name {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.gc-strain__sub {
  font-size: 0.9rem;
  color: var(--ink-60);
  margin-bottom: 1rem;
}
.gc-strain__foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--ink-30);
  display: flex; justify-content: space-between; align-items: baseline;
}
.gc-strain__price {
  font-size: 1.1rem;
  font-weight: 600;
}
.gc-strain__price-unit {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-60);
  margin-left: 0.3rem;
}
.gc-strain__cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.gc-strain__cta:hover { color: var(--green); }

/* ============ DEALS — uniform grid, restrained ============ */
.gc-deals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-30);
  border: 1px solid var(--ink-30);
}
.gc-deals__grid--full {
  grid-template-columns: repeat(4, 1fr);
}
.gc-deal {
  background: var(--bone);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 240px;
  transition: background 240ms var(--ease);
  position: relative;
}
.gc-deal:hover { background: var(--linen); }
.gc-deal__day {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 1rem;
}
.gc-deal__title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 0.95;
}
.gc-deal__sub {
  font-size: 0.92rem;
  color: var(--ink-60);
  margin-top: 0.65rem;
  line-height: 1.5;
}
.gc-deal__num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--display);
  font-size: 0.9rem;
  color: var(--ink-30);
  letter-spacing: 0;
}
/* The one accent — today's day */
.gc-deal--today {
  background: var(--green);
  color: var(--bone);
}
.gc-deal--today .gc-deal__day,
.gc-deal--today .gc-deal__sub { color: rgba(244, 239, 228, 0.75); }
.gc-deal--today .gc-deal__num { color: rgba(244, 239, 228, 0.3); }
.gc-deal--today:hover { background: var(--green-hover); }

/* ============ VISIT / MAP ============ */
.gc-visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.gc-visit__copy {
  padding-right: clamp(2rem, 5vw, 4rem);
}
.gc-visit__address {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 1.5rem 0 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--ink-30);
  display: inline-block;
  transition: color 200ms, border-color 200ms;
}
.gc-visit__address:hover { color: var(--green); border-color: var(--green); }
.gc-visit__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-30);
}
.gc-visit__fact h4 {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 0.5rem;
}
.gc-visit__fact p { font-size: 1.02rem; }
.gc-visit__fact a:hover { color: var(--green); }

.gc-map {
  aspect-ratio: 1/1;
  min-height: 480px;
  background:
    radial-gradient(ellipse 60% 40% at 30% 50%, rgba(244, 239, 228, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, #00532a 0%, #003D1F 50%, #001a0d 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.gc-map__grid {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 79px, rgba(244,239,228,0.05) 79px, rgba(244,239,228,0.05) 80px),
    repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(244,239,228,0.05) 79px, rgba(244,239,228,0.05) 80px);
}
.gc-map__pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 32px; height: 32px;
  margin: -32px 0 0 -16px;
}
.gc-map__pin svg { width: 32px; height: 32px; color: var(--bone); }
.gc-map__pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 44px; height: 44px;
  margin: -8px 0 0 -22px;
  border: 1.5px solid var(--bone);
  border-radius: 50%;
  animation: gcDot 2s ease-out infinite;
  will-change: transform, opacity;
  transform: translateZ(0);
}

/* ============ STATS BAR ============ */
.gc-stats {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}
.gc-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}
.gc-stat__num {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin-bottom: 0.85rem;
}
.gc-stat__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.55);
}

/* ============ TIMELINE (about) ============ */
.gc-timeline {
  position: relative;
  display: grid;
  gap: 3rem;
}
.gc-timeline::before {
  content: ""; position: absolute;
  top: 0; bottom: 0; left: 50px;
  width: 1px;
  background: var(--ink-30);
}
.gc-tl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 3rem;
  align-items: start;
}
.gc-tl__year {
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  background: var(--bone);
  padding: 0.5rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.gc-tl__copy h3 {
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.gc-tl__copy p {
  font-size: 1rem;
  color: var(--ink-60);
  max-width: 60ch;
}

/* ============ VALUES (about) — uniform, no tricks ============ */
.gc-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-30);
  border: 1px solid var(--ink-30);
}
.gc-value {
  background: var(--bone);
  padding: clamp(2rem, 4vw, 3rem);
  transition: background 240ms var(--ease);
}
.gc-value:hover { background: var(--linen); }
.gc-value__num {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  color: var(--ink-60);
  margin-bottom: 1.5rem;
}
.gc-value h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.gc-value p {
  font-size: 0.98rem;
  color: var(--ink-60);
  line-height: 1.6;
}

/* ============ SHOP MENU ============ */
.gc-shop__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid var(--ink-30);
}
.gc-shop__meta-item h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 0.4rem;
}
.gc-shop__meta-item p {
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 1;
}
.gc-cats {
  border-top: 1px solid var(--ink-30);
  border-bottom: 1px solid var(--ink-30);
  padding: 1rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.gc-cats::-webkit-scrollbar { display: none; }
.gc-cats__inner { display: flex; gap: 1px; background: var(--ink-30); width: max-content; }
.gc-cat {
  background: var(--bone);
  padding: 0.85rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
  cursor: pointer;
  transition: color 200ms, background 200ms;
  white-space: nowrap;
}
.gc-cat:hover, .gc-cat.is-active { background: var(--ink); color: var(--bone); }
.gc-cat__count { margin-left: 0.4rem; opacity: 0.6; font-size: 0.66rem; }

.gc-dutchie {
  position: relative;
  background: var(--clean-white);
  border: 1px solid var(--ink-30);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 0;
  height: min(78svh, 820px);
}
.gc-dutchie-loading {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
  text-align: left;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background:
    linear-gradient(90deg, rgba(0, 154, 68, 0.08) 0 50%, rgba(167, 216, 75, 0.18) 50% 100%),
    var(--clean-white);
  transition: opacity 320ms;
}
.gc-dutchie-loading__link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--core-black);
  background: var(--core-black);
  color: var(--clean-white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gc-dutchie-loading__ghost {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 0.7rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--core-black);
  background: var(--clean-white);
  color: var(--core-black);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}
.gc-dutchie-fallback {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 6;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--core-black);
  background: var(--deal-lime);
  color: var(--core-black);
  box-shadow: 3px 3px 0 var(--core-black);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}
.gc-dutchie-loading__bar {
  margin-top: 1.25rem;
  width: 64px; height: 2px;
  background: var(--ink-30);
  overflow: hidden; border-radius: 1px;
}
.gc-dutchie-loading__bar::after {
  content: ""; display: block;
  width: 40%; height: 100%;
  background: var(--green);
  animation: gcLoadBar 1.6s ease-in-out infinite;
  will-change: transform; transform: translateZ(0);
}
@keyframes gcLoadBar {
  0% { transform: translateX(-100%) translateZ(0); }
  100% { transform: translateX(250%) translateZ(0); }
}
#dutchie--embed__container {
  position: relative;
  z-index: 2;
  width: 100% !important;
  min-height: 0;
  height: 100%;
  background: var(--clean-white);
}
#dutchie--embed__container iframe {
  width: 100% !important;
  max-width: none !important;
}
#dutchie--embed__container iframe {
  height: 100% !important;
  min-height: 0 !important;
  border: 0;
  display: block;
}
#dutchie--back-to-top {
  display: none !important;
}

/* ============ HOW PICKUP WORKS (shop) ============ */
.gc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-30);
  border: 1px solid var(--ink-30);
}
.gc-step {
  background: var(--bone);
  padding: clamp(1.75rem, 3vw, 2.25rem);
}
.gc-step__num {
  font-family: var(--display);
  font-size: 2.25rem;
  letter-spacing: -0.01em;
  color: var(--green);
  margin-bottom: 1.25rem;
  line-height: 1;
}
.gc-step h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.gc-step p {
  font-size: 0.94rem;
  color: var(--ink-60);
  line-height: 1.6;
}

/* ============ VISIT DETAILS (the 6 tiles) ============ */
.gc-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-30);
  border: 1px solid var(--ink-30);
}
.gc-fact {
  background: var(--bone);
  padding: clamp(2rem, 3.5vw, 2.5rem);
}
.gc-fact h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 1.25rem;
}
.gc-fact__big {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  line-height: 1;
}
.gc-fact p { color: var(--ink-60); font-size: 0.96rem; line-height: 1.55; }
.gc-fact p a { color: var(--ink); border-bottom: 1px solid var(--ink-30); padding-bottom: 1px; }
.gc-fact p a:hover { color: var(--green); border-color: var(--green); }
.gc-fact ul { margin-top: 0.85rem; display: grid; gap: 0.4rem; }
.gc-fact ul li {
  display: flex; justify-content: space-between;
  font-size: 0.86rem;
  color: var(--ink-60);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--ink-30);
}
.gc-fact ul li:last-child { border-bottom: 0; }
.gc-fact ul li.is-today { color: var(--green); font-weight: 600; }

/* ============ ROUTES (visit) ============ */
.gc-routes {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
.gc-route {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--ink-30);
}
.gc-route:last-child { border-bottom: 0; }
.gc-route__from {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.6rem;
}
.gc-route h4 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.gc-route__time {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.gc-route p { font-size: 0.96rem; color: var(--ink-60); }

/* ============ DEALS RULES (deals page) ============ */
.gc-rules { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(3rem, 5vw, 4rem); }
.gc-rule-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--ink-30);
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem;
  align-items: start;
}
.gc-rule-item:last-child { border-bottom: 0; }
.gc-rule-item__n {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--green);
  letter-spacing: -0.005em;
}
.gc-rule-item h4 {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.gc-rule-item p { font-size: 0.96rem; color: var(--ink-60); }

/* ============ CTA — clean panel ============ */
.gc-cta {
  padding: var(--section) 0;
  text-align: center;
}
.gc-cta--ink { background: var(--ink); color: var(--bone); }
.gc-cta--green { background: var(--green); color: var(--bone); }
.gc-cta__title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  max-width: 22ch;
  margin-inline: auto;
  line-height: 0.94;
}
.gc-cta__actions { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* ============ MOBILE ============ */
@media (max-width: 980px) {
  :root { --header-h: 64px; }
  body { padding-top: 64px; }
  .gc-header__nav { display: none; }
  .gc-header__brand img { height: 36px; }
  .gc-hero__layout { grid-template-columns: 1fr; }
  .gc-hero__image { aspect-ratio: 3/2; }
  .gc-intro__grid { grid-template-columns: 1fr; }
  .gc-strains__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gc-deals__grid, .gc-deals__grid--full { grid-template-columns: 1fr; }
  .gc-visit__grid { grid-template-columns: 1fr; }
  .gc-visit__copy { padding: 0 0 2rem; }
  .gc-stats__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .gc-values { grid-template-columns: 1fr; }
  .gc-steps { grid-template-columns: 1fr 1fr; }
  .gc-facts-grid { grid-template-columns: 1fr 1fr; }
  .gc-routes, .gc-rules { grid-template-columns: 1fr; }
  .gc-footer__top { grid-template-columns: 1fr 1fr; }
  .gc-tl { grid-template-columns: 80px 1fr; gap: 1.5rem; }
  .gc-section-head--split { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .gc-stats__grid { grid-template-columns: 1fr 1fr; }
  .gc-steps, .gc-facts-grid { grid-template-columns: 1fr; }
  .gc-footer__top { grid-template-columns: 1fr; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .gc-hero__live-dot::after, .gc-map__pulse, .gc-dutchie-loading__bar::after { display: none; }
}

/* GPU hint for hover-transform cards */
.gc-strain, .gc-deal, .gc-value, .gc-fact, .gc-step { transform: translateZ(0); }

/* OVERRIDE BRICKS LAZY (no scroll jank) */
.bricks-lazy-hidden { opacity: 1 !important; transform: none !important; }

/* ============================================================
   GreenCare Brand Refresh — aligned to 2026 brand guidelines
   Source: Core Black, Clean White, Core Green, Deep Green, Deal Lime.
   ============================================================ */

@font-face {
  font-family: 'GreenCare Display';
  src: url('./fonts/GreenCareDisplay-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GreenCare Body';
  src: url('./fonts/GreenCareBody-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GreenCare Body';
  src: url('./fonts/GreenCareBody-SemiBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --core-black: #000000;
  --clean-white: #FFFFFF;
  --core-green: #009A44;
  --deep-green: #005C2E;
  --deal-lime: #A7D84B;
  --soft-green: #F2F8EC;
  --mist-green: #E0F2D3;

  --bone: var(--clean-white);
  --linen: var(--soft-green);
  --ink: var(--core-black);
  --ink-60: rgba(0, 0, 0, 0.62);
  --ink-30: rgba(0, 0, 0, 0.16);
  --green: var(--core-green);
  --green-hover: var(--deep-green);
  --lime: var(--deal-lime);

  --display: 'GreenCare Display', 'Poppins', 'Arial Black', sans-serif;
  --body: 'GreenCare Body', 'Poppins', Arial, sans-serif;
  --radius: 8px;
  --header-h: 86px;
  --shadow-hard: 10px 10px 0 var(--core-black);
}

html {
  font-size: 16px;
}

body,
.brx-body {
  background: var(--clean-white);
  color: var(--core-black);
  font-family: var(--body) !important;
  font-weight: 400;
  letter-spacing: 0;
  padding-top: 0;
}

h1, h2, h3, h4, h5, h6,
.gc-display,
.gc-h1,
.gc-h2,
.gc-h3--display,
.gc-intro__years,
.gc-strain__name,
.gc-deal__title,
.gc-step h3,
.gc-fact__big,
.gc-route h4,
.gc-rule-item h4,
.gc-cta__title {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.gc-h1 {
  font-size: clamp(3.6rem, 6.25vw, 5.9rem);
  line-height: 0.88;
  max-width: 10.4ch;
}

.gc-h2 {
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  line-height: 0.86;
  max-width: 13ch;
}

.gc-eyebrow,
.gc-hero__meta,
.gc-hero__live,
.gc-intro__label,
.gc-deal__day,
.gc-stat__label,
.gc-footer__col h4 {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: clamp(0.8rem, 0.95vw, 0.94rem);
}

/* Desktop/mobile chrome separation. Mobile CSS re-enables these under 767px. */
.gc-app-header,
.gc-app-tabs,
.gc-app-sheet,
.gc-app-sheet-backdrop,
.gc-app-gate {
  display: none;
}

.gc-header {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 2px solid var(--core-black);
  box-shadow: 0 8px 0 rgba(0, 154, 68, 0.08);
  height: var(--header-h);
  z-index: 150;
}

.gc-header__inner {
  gap: clamp(1rem, 2.5vw, 2.4rem);
}

.gc-header__brand {
  display: inline-flex;
  align-items: center;
}

.gc-header__brand img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.gc-header__nav {
  gap: clamp(1.15rem, 2vw, 2.1rem);
}

.gc-header__nav a {
  color: var(--core-black);
  font-weight: 700;
  letter-spacing: 0.11em;
}

.gc-header__nav a::before {
  content: "";
  position: absolute;
  inset: auto 0 -9px 0;
  height: 4px;
  background: var(--deal-lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.gc-header__nav a:hover {
  opacity: 1;
  color: var(--core-green);
}

.gc-header__nav a:hover::before,
.gc-header__nav a[aria-current="page"]::before {
  transform: scaleX(1);
}

.gc-header__nav a[aria-current="page"]::after {
  display: none;
}

.gc-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}

.gc-header__status {
  display: inline-flex;
}

.gc-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid var(--core-black);
  border-radius: 999px;
  color: var(--core-black);
  background: var(--clean-white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gc-pill__dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--core-green);
  box-shadow: 0 0 0 4px rgba(0, 154, 68, 0.15);
}

.gc-pill--closed .gc-pill__dot {
  background: var(--core-black);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.gc-btn {
  border: 2px solid var(--core-black);
  border-radius: 999px;
  background: var(--core-black);
  color: var(--clean-white);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0);
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.gc-btn:hover {
  background: var(--core-green);
  border-color: var(--core-black);
  color: var(--clean-white);
  box-shadow: 4px 4px 0 var(--deal-lime);
  transform: translate(-2px, -2px);
}

.gc-btn--green {
  background: var(--core-green);
  border-color: var(--core-black);
  color: var(--clean-white);
}

.gc-btn--green:hover {
  background: var(--deal-lime);
  color: var(--core-black);
}

.gc-btn--ghost {
  background: var(--clean-white);
  color: var(--core-black);
}

.gc-btn--ghost:hover {
  background: var(--deal-lime);
  color: var(--core-black);
}

.gc-btn--sm {
  font-size: 0.82rem;
}

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

.gc-section--linen {
  background:
    linear-gradient(135deg, rgba(167, 216, 75, 0.18), rgba(255, 255, 255, 0) 45%),
    var(--soft-green);
}

.gc-section--ink {
  background:
    radial-gradient(circle at 86% 18%, rgba(167, 216, 75, 0.32), transparent 22rem),
    linear-gradient(145deg, var(--deep-green), var(--core-black) 72%);
  color: var(--clean-white);
}

.gc-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.2rem, 7vw, 6rem) 0 clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 86% 18%, rgba(167, 216, 75, 0.55), transparent 15rem),
    linear-gradient(90deg, var(--clean-white) 0 58%, rgba(0, 154, 68, 0.12) 58% 100%);
}

.gc-hero__layout {
  grid-template-columns: minmax(0, 1.24fr) minmax(280px, 0.68fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
}

.gc-hero::before {
  content: "";
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 3rem);
  z-index: -1;
  width: clamp(16rem, 44vw, 35rem);
  aspect-ratio: 1314 / 261;
  background: url('./brand/greencare-wordmark-green.png') center / contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.gc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    radial-gradient(var(--core-black) 0.8px, transparent 0.8px),
    radial-gradient(var(--core-black) 0.8px, transparent 0.8px);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent, black 52%, transparent);
}

.gc-hero__top {
  border-bottom: 2px solid var(--core-black);
}

.gc-hero__live,
.gc-intro__link:hover,
.gc-strain__cta:hover,
.gc-visit__address:hover,
.gc-fact p a:hover {
  color: var(--core-green);
}

.gc-hero__live-dot,
.gc-hero__live-dot::after {
  background: var(--core-green);
}

.gc-hero__title-sub {
  margin-top: 1.25rem;
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.3vw, 1.32rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink-60);
  max-width: 33ch;
  letter-spacing: 0;
}

.gc-hero__image {
  min-width: 0;
  width: min(100%, 420px);
  justify-self: end;
  border: 2px solid var(--core-black);
  border-radius: 18px;
  box-shadow: var(--shadow-hard);
  background:
    radial-gradient(circle at 74% 18%, var(--deal-lime) 0 9%, transparent 10%),
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.22), transparent 18%),
    radial-gradient(circle at 68% 72%, rgba(0, 0, 0, 0.34), transparent 30%),
    linear-gradient(155deg, var(--core-green), var(--deep-green) 55%, var(--core-black));
}

.gc-hero__image::before {
  content: "";
  position: absolute;
  width: 54%;
  aspect-ratio: 1;
  right: 9%;
  top: 13%;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22) 0 18%, transparent 19%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2) 0 2px, transparent 2px 17px);
  transform: rotate(-12deg);
}

.gc-hero__image::after {
  content: "120+";
  position: absolute;
  left: 7%;
  top: 12%;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.8;
  letter-spacing: -0.07em;
  color: var(--deal-lime);
  text-shadow: 4px 4px 0 var(--core-black);
}

.gc-hero__image-label {
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  width: auto;
  color: var(--clean-white);
  font-weight: 700;
}

.gc-hero__actions {
  position: relative;
  z-index: 2;
  border-top: 2px solid var(--core-black);
}

.gc-intro__grid {
  align-items: stretch;
}

.gc-intro__years {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  color: var(--core-green);
  font-size: clamp(4.4rem, 8vw, 6.4rem);
  line-height: 0.78;
  text-shadow: 4px 4px 0 var(--core-black);
}

.gc-intro__years-label {
  display: block;
  max-width: 12rem;
  line-height: 1.15;
  margin-top: 0;
  padding-top: 0.35rem;
  color: var(--core-black);
  text-shadow: none;
}

.gc-intro__body {
  padding: clamp(2rem, 4vw, 3rem);
  border: 2px solid var(--core-black);
  border-radius: 18px;
  background: var(--clean-white);
  box-shadow: var(--shadow-hard);
}

.gc-strains__grid,
.gc-values,
.gc-steps,
.gc-facts-grid,
.gc-deals__grid {
  background: var(--core-black);
  border: 2px solid var(--core-black);
  gap: 2px;
}

.gc-strain,
.gc-value,
.gc-step,
.gc-fact,
.gc-deal {
  background: var(--clean-white);
}

.gc-strain__image {
  border: 2px solid var(--core-black);
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 18%, var(--deal-lime) 0 11%, transparent 12%),
    linear-gradient(145deg, var(--core-green), var(--deep-green) 62%, var(--core-black));
}

.gc-strain__image::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 38%;
  height: 54%;
  border: 3px solid var(--clean-white);
  border-radius: 18px 18px 28px 28px;
  background:
    linear-gradient(var(--clean-white) 0 16%, transparent 16% 100%),
    linear-gradient(160deg, rgba(167, 216, 75, 0.72), rgba(0, 154, 68, 0.18));
  transform: translateX(-50%) rotate(7deg);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.24);
}

.gc-strain__image::after {
  content: "";
  position: absolute;
  left: 21%;
  top: 24%;
  width: 20%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--deal-lime);
  box-shadow: 28px 24px 0 rgba(167, 216, 75, 0.66), 64px 6px 0 rgba(255, 255, 255, 0.45);
}

.gc-strain__tag {
  border: 2px solid var(--core-black);
  background: var(--deal-lime);
  color: var(--core-black);
  font-weight: 700;
}

.gc-strain__thc-num,
.gc-strain__thc-label {
  color: var(--clean-white);
}

.gc-strain__foot,
.gc-visit__address,
.gc-visit__facts,
.gc-route,
.gc-rule-item {
  border-color: var(--core-black);
}

.gc-deal {
  min-height: 260px;
  border-radius: 0;
}

.gc-deal:hover {
  background: var(--soft-green);
}

.gc-deal__num {
  color: rgba(0, 0, 0, 0.22);
}

.gc-deal--today {
  background: var(--deal-lime);
  color: var(--core-black);
}

.gc-deal--today .gc-deal__day,
.gc-deal--today .gc-deal__sub,
.gc-deal--today .gc-deal__num {
  color: rgba(0, 0, 0, 0.65);
}

.gc-deal--today:hover {
  background: var(--deal-lime);
}

.gc-blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.gc-blog-card:hover {
  background: var(--soft-green);
  color: var(--core-black);
}

.gc-values .gc-blog-card--visual {
  padding: 0;
  overflow: hidden;
  background: var(--clean-white);
}

.gc-blog-card__thumb {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 2px solid var(--core-black);
  background: var(--core-black);
}

.gc-blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 520ms var(--ease), filter 520ms var(--ease);
}

.gc-blog-card--visual:hover .gc-blog-card__thumb img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.gc-blog-card__body {
  padding: clamp(1.35rem, 3vw, 2.25rem);
}

/* ============ JOURNAL — SEO hub with editorial cards ============ */
.gc-journal-hero,
.home .gc-journal-hero {
  padding: clamp(3.2rem, 7vw, 5.6rem) 0 clamp(4rem, 8vw, 6.5rem);
  background:
    linear-gradient(180deg, var(--clean-white) 0 64%, var(--soft-green) 64% 100%);
}

.gc-journal-hero::before,
.home .gc-journal-hero::before {
  opacity: 0.08;
}

.gc-journal-hero::after,
.home .gc-journal-hero::after {
  opacity: 0.1;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.gc-journal-hero .gc-hero__top,
.home .gc-journal-hero .gc-hero__top {
  border-bottom: 2px solid var(--core-black);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(1rem, 2vw, 1.35rem);
}

.gc-journal-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.74fr);
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: stretch;
}

.gc-journal-hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(1rem, 3vw, 2rem);
}

.gc-journal-hero .gc-hero__title,
.home .gc-journal-hero .gc-hero__title {
  max-width: 10.6ch;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--core-black);
  font-size: 5.35rem;
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: none;
}

.gc-journal-hero .gc-lede {
  margin-top: 1.25rem;
  max-width: 43ch;
  color: var(--ink-60);
  font-size: 1.18rem;
  line-height: 1.42;
}

.gc-journal-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: clamp(1.3rem, 3vw, 2rem);
}

.gc-journal-topics a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.05rem;
  border: 2px solid var(--core-black);
  background: var(--clean-white);
  color: var(--core-black);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.gc-journal-topics a:hover {
  background: var(--core-green);
  color: var(--clean-white);
  transform: translate(-2px, -2px);
}

.gc-journal-featured {
  display: grid;
  min-width: 0;
  min-height: 100%;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 2px solid var(--core-black);
  background: var(--core-black);
  box-shadow: var(--shadow-hard);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.gc-journal-featured:hover {
  box-shadow: 14px 14px 0 var(--deal-lime);
  transform: translate(-3px, -3px);
}

.gc-journal-featured__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 2px solid var(--core-black);
  background: var(--core-black);
}

.gc-journal-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(1.04) contrast(1.04);
  transition: transform 620ms var(--ease);
}

.gc-journal-featured:hover .gc-journal-featured__media img {
  transform: scale(1.045);
}

.gc-journal-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--clean-white);
}

.gc-journal-featured__tag,
.gc-journal-featured__link {
  color: var(--deal-lime);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gc-journal-featured h2 {
  margin-top: 0.7rem;
  max-width: 10ch;
  font-family: var(--display);
  font-size: 2.7rem;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gc-journal-featured p {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.4;
}

.gc-journal-featured__link {
  display: inline-flex;
  margin-top: 1.25rem;
}

.gc-journal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-journal-grid .gc-blog-card {
  min-height: 100%;
}

.gc-journal-grid .gc-value h3 {
  text-wrap: balance;
}

.gc-journal-local {
  background:
    linear-gradient(180deg, var(--clean-white), var(--soft-green));
}

.gc-journal-routes,
.gc-journal-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  border: 2px solid var(--core-black);
  background: var(--core-black);
}

.gc-journal-route {
  display: grid;
  min-height: 18rem;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  background: var(--clean-white);
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.gc-journal-route:hover {
  background: var(--deal-lime);
  color: var(--core-black);
}

.gc-journal-route__code {
  font-family: var(--display);
  font-size: 3.35rem;
  line-height: 0.82;
  letter-spacing: 0;
  color: var(--core-green);
  text-shadow: 3px 3px 0 var(--core-black);
}

.gc-journal-route h3 {
  margin-top: 0.8rem;
  font-family: var(--display);
  font-size: 2.35rem;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gc-journal-route p {
  margin-top: 0.9rem;
  color: var(--ink-60);
  font-size: 1rem;
  line-height: 1.45;
}

.gc-journal-answers .gc-eyebrow,
.gc-journal-answers .gc-body {
  color: rgba(255, 255, 255, 0.68);
}

.gc-journal-answers .gc-intro__link {
  color: var(--deal-lime);
  border-color: var(--deal-lime);
}

.gc-journal-answer {
  min-height: 16rem;
  padding: clamp(1.45rem, 3vw, 2.2rem);
  background: var(--clean-white);
  color: var(--core-black);
}

.gc-journal-answer h3 {
  max-width: 12ch;
  font-family: var(--display);
  font-size: 2.35rem;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gc-journal-answer p {
  margin-top: 1rem;
  color: var(--ink-60);
  font-size: 1rem;
  line-height: 1.45;
}

.gc-map {
  border: 2px solid var(--core-black);
  border-radius: 18px;
  box-shadow: var(--shadow-hard);
  background:
    radial-gradient(circle at 70% 24%, var(--deal-lime), transparent 13rem),
    linear-gradient(135deg, var(--core-green), var(--deep-green) 55%, var(--core-black));
}

.gc-stats,
.gc-footer {
  background:
    radial-gradient(circle at 82% 12%, rgba(167, 216, 75, 0.2), transparent 22rem),
    var(--core-black);
  color: var(--clean-white);
}

.gc-footer {
  border-top: 10px solid var(--core-green);
}

.gc-footer__brand img {
  filter: none;
  height: 48px;
  width: auto;
}

.gc-footer__top,
.gc-footer__bar {
  border-color: rgba(255, 255, 255, 0.18);
}

.gc-cta {
  background:
    linear-gradient(90deg, var(--core-green) 0 52%, var(--deal-lime) 52% 100%);
  border-top: 2px solid var(--core-black);
  border-bottom: 2px solid var(--core-black);
}

.gc-cta__title {
  color: var(--core-black);
  text-shadow: 4px 4px 0 rgba(255, 255, 255, 0.55);
}

.gc-cats {
  border-top: 2px solid var(--core-black);
  border-bottom: 2px solid var(--core-black);
  background: var(--clean-white);
}

.gc-cats__inner {
  background: var(--core-black);
  border: 2px solid var(--core-black);
}

.gc-cat {
  color: var(--core-black);
  background: var(--clean-white);
  font-weight: 700;
}

.gc-cat:hover,
.gc-cat.is-active {
  background: var(--core-green);
  color: var(--clean-white);
}

.gc-dutchie {
  border: 2px solid var(--core-black);
  border-radius: 18px;
  box-shadow: var(--shadow-hard);
}

.gc-shop-fast-menu {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: stretch;
  margin-bottom: 0.9rem;
  border: 2px solid var(--core-black);
  background: var(--clean-white);
  box-shadow: 7px 7px 0 var(--core-black);
}

.gc-shop-fast-menu > div:first-child {
  padding: clamp(1.05rem, 2vw, 1.45rem);
  background:
    linear-gradient(90deg, var(--core-green) 0 48%, var(--deal-lime) 48% 100%);
  color: var(--core-black);
}

.gc-shop-fast-menu .gc-eyebrow {
  color: rgba(0, 0, 0, 0.72);
}

.gc-shop-fast-menu h2 {
  max-width: 14ch;
  margin-top: 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gc-shop-fast-menu__links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--core-black);
  border-left: 2px solid var(--core-black);
}

.gc-shop-fast-menu__links a {
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: 1rem 0.7rem;
  background: var(--clean-white);
  color: var(--core-black);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.gc-shop-fast-menu__links a:hover,
.gc-shop-fast-menu__links a:focus {
  background: var(--deal-lime);
  color: var(--core-black);
}

.gc-shop-fast-menu__links .gc-shop-fast-menu__all {
  background: var(--core-black);
  color: var(--clean-white);
}

.gc-motion-menu-section {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
  padding-top: clamp(0.35rem, 1.2vw, 0.9rem);
}

.gc-motion-menu-section .gc-container {
  width: min(100% - 1rem, 1480px);
  max-width: none;
}

.gc-motion-menu-section .gc-dutchie {
  height: min(78svh, 860px);
  border-radius: 10px;
}

@media (max-width: 980px) {
  .gc-header__status {
    display: none;
  }

  .gc-header__actions {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 0px;
  }

  html {
    font-size: 16px;
  }

  .gc-header,
  .gc-site-header {
    display: none !important;
  }

  .gc-hero {
    background: var(--clean-white);
    padding-top: clamp(2rem, 7vw, 3rem);
    padding-bottom: calc(2.5rem + var(--app-tab-h, 56px) + env(safe-area-inset-bottom));
  }

  .gc-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.35rem;
    align-items: start;
  }

  .gc-hero__actions {
    padding-bottom: calc(1.5rem + var(--app-tab-h, 56px) + env(safe-area-inset-bottom));
  }

  .gc-hero__actions .gc-btn {
    min-height: 50px;
    justify-content: center;
  }

  .gc-hero__sub {
    flex-basis: 100%;
  }

  .gc-hero::before,
  .gc-hero::after {
    display: none;
  }

  .gc-h1 {
    max-width: 100%;
    font-size: clamp(2.78rem, 12vw, 3.25rem);
    line-height: 0.91;
    letter-spacing: -0.052em;
    overflow-wrap: normal;
  }

  .gc-h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .gc-hero__title-sub {
    display: block;
    max-width: 28ch;
    font-size: clamp(0.98rem, 4vw, 1.12rem);
    line-height: 1.35;
  }

  .gc-hero__image {
    width: min(100%, 20rem);
    justify-self: center;
    aspect-ratio: 1.08;
    margin-top: 0.2rem;
  }

  .gc-hero__image::after {
    font-size: clamp(3.45rem, 18vw, 5.4rem);
  }

  .gc-hero__image,
  .gc-intro__body,
  .gc-map,
  .gc-dutchie {
    box-shadow: 6px 6px 0 var(--core-black);
  }
}

/* ============================================================
   Launch hardening — P10 responsive contract
   Keeps the brand system stable across iPhone, Android, and tablet.
   ============================================================ */

html,
body,
.brx-body {
  overflow-x: clip;
}

.gc-container,
.gc-hero__layout,
.gc-hero__actions,
.gc-section-head,
.gc-section-head--split,
.gc-visit__grid,
.gc-deals__grid,
.gc-values,
.gc-steps,
.gc-facts-grid {
  min-width: 0;
}

.gc-hero__layout > *,
.gc-section-head > *,
.gc-visit__grid > *,
.gc-deals__grid > *,
.gc-values > *,
.gc-steps > *,
.gc-facts-grid > * {
  min-width: 0;
}

@media (max-width: 1100px) {
  .gc-hero__layout,
  .gc-intro__grid,
  .gc-strains__grid,
  .gc-visit__grid,
  .gc-section-head--split {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .gc-h1 {
    max-width: 12ch;
    font-size: clamp(4.1rem, 10vw, 6.2rem);
  }

  .gc-hero__image {
    width: min(100%, 34rem);
    justify-self: start;
  }

  .gc-hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .gc-hero__sub {
    max-width: 42ch;
    min-width: 0;
  }

  .gc-visit__copy {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .gc-app main,
  .gc-static-body-fallback #brx-content {
    padding-bottom: calc(6.75rem + env(safe-area-inset-bottom));
  }

  .gc-container {
    padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
  }

  .gc-section {
    padding-block: clamp(3.25rem, 14vw, 5rem);
  }

  .gc-hero__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.7rem;
    padding-bottom: 1.1rem;
    margin-bottom: 1.45rem;
  }

  .gc-h1 {
    max-width: 100%;
    font-size: clamp(2.68rem, 11.2vw, 3.35rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
  }

  .gc-h2,
  .gc-section-head__title {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.65rem);
    line-height: 0.9;
  }

  .gc-hero__title-sub,
  .gc-body,
  .gc-lede {
    max-width: 34ch;
  }

  .gc-hero__actions {
    gap: 0.8rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  .gc-hero__actions .gc-btn,
  .gc-cta__actions .gc-btn,
  .gc-btn--lg {
    width: 100%;
    min-height: 52px;
  }

  .gc-hero__image {
    width: min(100%, 20rem);
    justify-self: center;
  }

  .gc-deals__grid,
  .gc-deals__grid--full,
  .gc-values,
  .gc-steps,
  .gc-facts-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .gc-deal {
    min-height: 0;
    padding: 1.35rem;
  }

  .gc-map {
    min-height: 21rem !important;
    aspect-ratio: 1 / 1 !important;
  }

  .gc-dutchie {
    height: clamp(29rem, 66svh, 40rem);
    min-height: 0;
  }

  #dutchie--embed__container,
  #dutchie--embed__container iframe {
    height: 100% !important;
    min-height: 0 !important;
  }

  .gc-motion-menu-section {
    padding-top: 0.35rem;
  }

  .gc-motion-menu-section .gc-container {
    width: 100%;
    padding-inline: 0.65rem;
  }

  .gc-motion-menu-section .gc-dutchie {
    border-radius: 8px;
    box-shadow: 5px 5px 0 var(--core-black);
  }

  .gc-shop-fast-menu {
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 0.7rem;
    box-shadow: 5px 5px 0 var(--core-black);
  }

  .gc-shop-fast-menu > div:first-child {
    padding: 1rem;
  }

  .gc-shop-fast-menu h2 {
    max-width: 12ch;
    font-size: clamp(1.95rem, 8.6vw, 2.75rem);
  }

  .gc-shop-fast-menu__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 2px solid var(--core-black);
    border-left: 0;
  }

  .gc-shop-fast-menu__links a {
    min-height: 58px;
    padding: 0.85rem 0.55rem;
  }

  .gc-shop-fast-menu__links .gc-shop-fast-menu__all {
    grid-column: 1 / -1;
    min-height: 64px;
  }

  .gc-footer__top {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 380px) {
  .gc-h1 {
    font-size: clamp(2.48rem, 10.4vw, 3rem);
  }

  .gc-hero__image::after {
    font-size: clamp(3.1rem, 16vw, 4.5rem);
  }
}

/* ============================================================
   Photo system — professional GreenCare image set
   Replaces the synthetic hero graphic with real store photography.
   ============================================================ */

.gc-hero__image.has-photo {
  aspect-ratio: 4 / 3;
  background: var(--core-black);
  border-radius: 12px;
  overflow: hidden;
}

.gc-hero__image.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 58%);
  transform: none;
}

.gc-hero__image.has-photo::after {
  display: none !important;
}

.gc-hero__image.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--gc-photo-position, center);
}

.gc-hero__image.has-photo .gc-hero__image-label {
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  width: auto;
  max-width: calc(100% - 2rem);
  padding: 0.72rem 0.86rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--clean-white);
  text-shadow: none;
  backdrop-filter: blur(10px);
}

.gc-hero__image--home {
  width: min(100%, 520px);
  aspect-ratio: 1.12 / 1;
}

.gc-shop-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}

.gc-shop-hero__photo {
  width: min(100%, 560px);
  justify-self: end;
  min-height: 20rem;
}

@media (max-width: 1100px) {
  .gc-shop-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gc-hero__image--home,
  .gc-shop-hero__photo {
    width: min(100%, 40rem);
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .gc-shop-hero {
    padding-top: 1.15rem;
    padding-bottom: 1rem;
  }

  .gc-shop-hero .gc-hero__top {
    margin-bottom: 1rem;
    padding-bottom: 0.9rem;
  }

  .gc-shop-hero .gc-shop__meta {
    gap: 1px;
    margin-top: 1rem;
    padding-top: 0;
    border-top: 1px solid var(--ink-30);
    border-bottom: 1px solid var(--ink-30);
    background: var(--ink-30);
  }

  .gc-shop-hero .gc-shop__meta-item {
    min-width: 0;
    padding: 0.85rem 0.65rem;
    background: var(--clean-white);
  }

  .gc-shop-hero .gc-shop__meta-item h4 {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .gc-shop-hero .gc-shop__meta-item p {
    font-size: 1.18rem;
  }

  .gc-hero__image.has-photo {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1.12 / 1;
    border-radius: 10px;
  }

  .gc-hero__image.has-photo .gc-hero__image-label {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    max-width: calc(100% - 1.6rem);
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .gc-shop-hero__photo {
    display: none;
  }
}

/* ============================================================
   Shop page priority pass — live menu first, store story second.
   ============================================================ */

.gc-shop-live {
  padding: clamp(1rem, 2.2vw, 1.55rem) 0 clamp(1.25rem, 2.8vw, 2rem);
  border-top: 2px solid var(--core-black);
  border-bottom: 2px solid var(--core-black);
  background:
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.12) 1px, transparent 0) 0 0 / 22px 22px,
    linear-gradient(90deg, var(--clean-white) 0 58%, rgba(167, 216, 75, 0.2) 58% 100%);
}

.gc-shop-live .gc-container {
  width: min(100% - 1.5rem, 1480px);
  max-width: none;
}

.gc-shop-live__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.42fr);
  gap: clamp(0.85rem, 2vw, 1.5rem);
  align-items: stretch;
  margin-bottom: clamp(0.7rem, 1.5vw, 1rem);
}

.gc-shop-live__copy,
.gc-shop-live__panel {
  border: 2px solid var(--core-black);
  box-shadow: 7px 7px 0 var(--core-black);
}

.gc-shop-live__copy {
  display: grid;
  gap: clamp(0.7rem, 1.3vw, 1rem);
  padding: clamp(1rem, 2.2vw, 1.75rem);
  background: rgba(255, 255, 255, 0.94);
}

.gc-shop-live__copy .gc-hero__live {
  width: max-content;
  color: var(--core-black);
}

.gc-shop-live__copy .gc-h1 {
  max-width: 9.6ch;
  font-size: clamp(3.2rem, 6.7vw, 6.8rem);
  line-height: 0.8;
  letter-spacing: 0;
}

.gc-shop-live__copy p {
  max-width: 56ch;
  color: var(--ink-60);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.42;
}

.gc-shop-live__panel {
  display: grid;
  gap: 0.8rem;
  align-content: stretch;
  padding: 0.85rem;
  background: var(--core-black);
  color: var(--clean-white);
}

.gc-shop-live__primary {
  display: flex;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--deal-lime);
  color: var(--core-black);
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gc-shop-live__primary span {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--core-black);
  border-radius: 999px;
  background: var(--clean-white);
  font-family: var(--body);
  font-size: 1.15rem;
  line-height: 1;
}

.gc-shop-live__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.gc-shop-live__facts div {
  min-width: 0;
  padding: 0.8rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
}

.gc-shop-live__facts span {
  display: block;
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.05;
  text-transform: uppercase;
}

.gc-shop-live__facts strong {
  display: block;
  color: var(--clean-white);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gc-shop-live .gc-shop-fast-menu {
  position: relative;
  z-index: 8;
  grid-template-columns: minmax(13rem, 0.38fr) minmax(0, 1.62fr);
  margin-bottom: 0.7rem;
  box-shadow: 7px 7px 0 var(--core-black);
}

.gc-shop-live .gc-shop-fast-menu > div:first-child {
  padding: clamp(0.85rem, 1.4vw, 1.15rem);
}

.gc-shop-live .gc-shop-fast-menu h2 {
  max-width: 13ch;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
}

.gc-shop-live .gc-shop-fast-menu__links a {
  min-height: 4.75rem;
}

.gc-shop-live .gc-shop-fast-menu__links .gc-shop-fast-menu__all {
  font-size: 0.82rem;
}

.gc-shop-live__embed {
  height: clamp(12.5rem, 26svh, 18rem);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(0, 154, 68, 0.05), rgba(167, 216, 75, 0.08)),
    var(--clean-white);
  transition: height 360ms var(--ease);
}

.gc-shop-live__embed.gc-dutchie--active {
  height: clamp(34rem, 64svh, 780px);
}

.gc-shop-live__embed .gc-dutchie-loading {
  inset: 0.75rem 0.75rem auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  justify-content: stretch;
  padding: 0.85rem;
  border: 2px solid var(--core-black);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 4px 4px 0 var(--core-black);
  text-align: left;
  backdrop-filter: blur(12px);
}

.gc-shop-live__embed .gc-dutchie-loading .gc-eyebrow {
  margin-bottom: 0.35rem;
}

.gc-shop-live__embed .gc-dutchie-loading .gc-h2 {
  margin-bottom: 0.25rem;
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
}

.gc-shop-live__embed .gc-dutchie-loading p {
  max-width: 44ch;
  color: var(--ink-60);
  font-size: 0.92rem;
  line-height: 1.35;
}

.gc-dutchie-loading__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.gc-shop-live__embed .gc-dutchie-loading__link,
.gc-shop-live__embed .gc-dutchie-loading__ghost {
  margin-top: 0;
  white-space: nowrap;
}

.gc-shop-live__embed .gc-dutchie-loading__bar {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: -2px;
  width: auto;
  height: 2px;
}

.gc-shop-live__embed .gc-dutchie-fallback {
  top: auto;
  right: 0.85rem;
  bottom: 0.85rem;
}

.gc-shop-context {
  padding: clamp(2.25rem, 4vw, 3.75rem) 0;
  background: var(--clean-white);
}

.gc-shop-context__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.72fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.gc-shop-context__photo {
  position: relative;
  min-height: clamp(18rem, 33vw, 28rem);
  overflow: hidden;
  border: 2px solid var(--core-black);
  background: var(--core-black);
  box-shadow: 7px 7px 0 var(--core-black);
}

.gc-shop-context__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.gc-shop-context__photo span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.74);
  color: var(--clean-white);
  font-family: var(--display);
  font-size: 0.78rem;
  line-height: 1.05;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.gc-shop-context__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  border: 2px solid var(--core-black);
  background:
    linear-gradient(90deg, rgba(0, 154, 68, 0.08), rgba(167, 216, 75, 0.18)),
    var(--clean-white);
  box-shadow: 7px 7px 0 var(--core-black);
}

.gc-shop-context__copy .gc-h2 {
  max-width: 9ch;
  margin: 0.55rem 0 0.9rem;
  line-height: 0.86;
}

.gc-shop-context__copy p {
  max-width: 42ch;
  color: var(--ink-60);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .gc-shop-live__head,
  .gc-shop-context__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gc-shop-live .gc-shop-fast-menu {
    grid-template-columns: minmax(0, 1fr);
  }

  .gc-shop-live .gc-shop-fast-menu__links {
    border-top: 2px solid var(--core-black);
    border-left: 0;
  }
}

@media (max-width: 767px) {
  .gc-shop-live {
    padding: 0.75rem 0 1rem;
    background:
      radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.12) 1px, transparent 0) 0 0 / 18px 18px,
      linear-gradient(180deg, var(--clean-white) 0 42%, rgba(167, 216, 75, 0.18) 42% 100%);
  }

  .gc-shop-live .gc-container {
    width: 100%;
    padding-inline: 0.72rem;
  }

  .gc-shop-live__head {
    gap: 0.7rem;
    margin-bottom: 0.65rem;
  }

  .gc-shop-live__copy,
  .gc-shop-live__panel,
  .gc-shop-live .gc-shop-fast-menu,
  .gc-shop-context__photo,
  .gc-shop-context__copy {
    box-shadow: 5px 5px 0 var(--core-black);
  }

  .gc-shop-live__copy {
    padding: 0.95rem;
  }

  .gc-shop-live__copy .gc-hero__live {
    width: 100%;
  }

  .gc-shop-live__copy .gc-h1 {
    max-width: 7.6ch;
    font-size: clamp(3rem, 16vw, 4.45rem);
  }

  .gc-shop-live__copy p {
    font-size: 0.98rem;
  }

  .gc-shop-live__panel {
    padding: 0.7rem;
  }

  .gc-shop-live__primary {
    min-height: 4.55rem;
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .gc-shop-live__facts div {
    padding: 0.65rem 0.5rem;
  }

  .gc-shop-live__facts span {
    font-size: 0.54rem;
  }

  .gc-shop-live__facts strong {
    font-size: 1.06rem;
  }

  .gc-shop-live .gc-shop-fast-menu {
    margin-bottom: 0.6rem;
  }

  .gc-shop-live .gc-shop-fast-menu > div:first-child {
    padding: 0.9rem;
  }

  .gc-shop-live .gc-shop-fast-menu h2 {
    max-width: none;
    font-size: clamp(1.7rem, 8vw, 2.45rem);
  }

  .gc-shop-live .gc-shop-fast-menu__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gc-shop-live .gc-shop-fast-menu__links a {
    min-height: 3.65rem;
    padding: 0.75rem 0.55rem;
  }

  .gc-shop-live .gc-shop-fast-menu__links .gc-shop-fast-menu__all {
    grid-column: 1 / -1;
    min-height: 4.15rem;
  }

  .gc-shop-live__embed {
    height: clamp(13rem, 30svh, 17rem);
    border-radius: 8px;
  }

  .gc-shop-live__embed.gc-dutchie--active {
    height: clamp(32rem, 70svh, 42rem);
  }

  .gc-shop-live__embed .gc-dutchie-loading {
    inset: 0.55rem 0.55rem auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.72rem;
  }

  .gc-shop-live__embed .gc-dutchie-loading .gc-h2 {
    font-size: 1.22rem;
  }

  .gc-shop-live__embed .gc-dutchie-loading p {
    display: none;
  }

  .gc-dutchie-loading__actions {
    justify-content: stretch;
  }

  .gc-shop-live__embed .gc-dutchie-loading__link,
  .gc-shop-live__embed .gc-dutchie-loading__ghost {
    flex: 1 1 100%;
    min-height: 42px;
    white-space: normal;
  }

  .gc-shop-live__embed .gc-dutchie-fallback {
    right: 0.55rem;
    bottom: 0.55rem;
    max-width: calc(100% - 1.1rem);
    font-size: 0.66rem;
  }

  .gc-shop-context {
    padding: 1.75rem 0 2.25rem;
  }

  .gc-shop-context__photo {
    min-height: 18rem;
  }

  .gc-shop-context__copy {
    padding: 1.05rem;
  }

  .gc-shop-context__copy .gc-h2 {
    max-width: 8.6ch;
  }
}

/* ============================================================
   Shop unified console — fewer chunks, faster path to the menu.
   ============================================================ */

.gc-shop-live--unified {
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(1.4rem, 2.6vw, 2.2rem);
}

.gc-shop-live--unified .gc-container {
  width: min(100% - 1.5rem, 1360px);
}

.gc-shop-live--unified .gc-shop-live__head {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.34fr);
  gap: 0;
  margin-bottom: 0;
  border: 2px solid var(--core-black);
  background: var(--clean-white);
  box-shadow: 7px 7px 0 var(--core-black);
}

.gc-shop-live--unified .gc-shop-live__copy,
.gc-shop-live--unified .gc-shop-live__panel {
  border: 0;
  box-shadow: none;
}

.gc-shop-live--unified .gc-shop-live__copy {
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
}

.gc-shop-live--unified .gc-shop-live__copy .gc-h1 {
  max-width: 12ch;
  font-size: 4.8rem;
  line-height: 0.88;
}

.gc-shop-live--unified .gc-shop-live__copy p {
  max-width: 62ch;
}

.gc-shop-live--unified .gc-shop-live__panel {
  border-left: 2px solid var(--core-black);
}

.gc-shop-live--unified .gc-shop-live__primary {
  min-height: 4.8rem;
  font-size: 2.05rem;
}

.gc-shop-menu-console {
  position: relative;
  padding: 0.75rem;
  border: 2px solid var(--core-black);
  border-top: 0;
  background: var(--clean-white);
  box-shadow: 7px 7px 0 var(--core-black);
}

.gc-shop-menu-console .gc-shop-fast-menu {
  margin: 0 0 0.75rem;
  border: 0;
  box-shadow: none;
}

.gc-shop-menu-console .gc-shop-fast-menu h2 {
  font-size: 1.75rem;
}

.gc-shop-menu-console .gc-shop-fast-menu__links a {
  min-height: 3.7rem;
}

.gc-shop-live--unified .gc-shop-live__embed {
  height: clamp(18rem, 38svh, 26rem);
  border-radius: 0;
  box-shadow: none;
}

.gc-shop-live--unified .gc-shop-live__embed.gc-dutchie--active {
  height: clamp(36rem, 72svh, 820px);
}

@media (max-width: 1100px) {
  .gc-shop-live--unified .gc-shop-live__copy .gc-h1 {
    font-size: 4rem;
  }
}

@media (max-width: 980px) {
  .gc-shop-live--unified .gc-shop-live__head {
    grid-template-columns: minmax(0, 1fr);
  }

  .gc-shop-live--unified .gc-shop-live__panel {
    border-top: 2px solid var(--core-black);
    border-left: 0;
  }
}

@media (max-width: 767px) {
  .gc-shop-live--unified .gc-container {
    width: 100%;
  }

  .gc-shop-live--unified .gc-shop-live__copy {
    padding: 1rem;
  }

  .gc-shop-live--unified .gc-shop-live__copy .gc-h1 {
    max-width: 9.6ch;
    font-size: 3.05rem;
    line-height: 0.9;
  }

  .gc-shop-live--unified .gc-shop-live__primary {
    min-height: 4.25rem;
    font-size: 1.72rem;
  }

  .gc-shop-menu-console {
    padding: 0.55rem;
  }

  .gc-shop-menu-console .gc-shop-fast-menu {
    margin-bottom: 0.55rem;
  }

  .gc-shop-menu-console .gc-shop-fast-menu h2 {
    font-size: 1.8rem;
  }

  .gc-shop-live--unified .gc-shop-live__embed {
    height: clamp(16rem, 38svh, 20rem);
  }
}

/* ============================================================
   Shop menu reliability pass — keep Dutchie visible immediately.
   ============================================================ */

.gc-shop-live--unified .gc-shop-live__head {
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.28fr);
}

.gc-shop-live--unified .gc-shop-live__copy {
  padding: clamp(1rem, 1.8vw, 1.6rem);
}

.gc-shop-live--unified .gc-shop-live__copy .gc-h1 {
  max-width: 15ch;
  font-size: clamp(2.85rem, 4.8vw, 4.65rem);
}

.gc-shop-live--unified .gc-shop-live__copy p {
  max-width: 76ch;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.gc-shop-live--unified .gc-shop-live__primary {
  min-height: 4rem;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
}

.gc-shop-live--unified .gc-shop-live__embed {
  min-height: 680px;
  height: clamp(42rem, 78svh, 920px);
  background: var(--clean-white);
}

.gc-shop-live--unified .gc-shop-live__embed.gc-dutchie--active,
.gc-shop-live--unified .gc-shop-live__embed.gc-dutchie--ready {
  min-height: 680px;
  height: clamp(42rem, 78svh, 920px);
}

.gc-shop-live__embed.gc-dutchie--ready .gc-dutchie-fallback {
  opacity: 0;
  pointer-events: none;
}

.gc-shop-live__embed #dutchie--embed__container {
  height: 100%;
  min-height: 100%;
}

.gc-shop-live__embed #dutchie--embed__iframe,
.gc-shop-live__embed iframe[src*="dutchie.com/embedded-menu"] {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  border: 0 !important;
}

.gc-shop-live__embed .gc-dutchie-loading[data-gc-hidden="true"] {
  pointer-events: none;
}

@media (max-width: 767px) {
  .gc-shop-live--unified {
    padding-top: 0;
  }

  .gc-shop-live--unified .gc-shop-live__copy .gc-h1 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 13vw, 3.35rem);
  }

  .gc-shop-live--unified .gc-shop-live__copy p {
    font-size: 1rem;
  }

  .gc-shop-live--unified .gc-shop-live__embed,
  .gc-shop-live--unified .gc-shop-live__embed.gc-dutchie--active,
  .gc-shop-live--unified .gc-shop-live__embed.gc-dutchie--ready {
    min-height: 640px;
    height: calc(100svh - 5.75rem);
  }

  .gc-shop-live__embed .gc-dutchie-loading {
    inset: 0.45rem;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
  }
}

/* ============================================================
   Shop rebuild — embedded menu as the page, no off-site exits.
   ============================================================ */

.gc-menu-page {
  padding: clamp(0.45rem, 1vw, 0.8rem) 0 clamp(0.85rem, 1.5vw, 1.2rem);
  border-top: 2px solid var(--core-black);
  border-bottom: 2px solid var(--core-black);
  background:
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.12) 1px, transparent 0) 0 0 / 22px 22px,
    var(--clean-white);
}

.gc-menu-page__inner {
  width: min(100% - 1.5rem, 1220px);
  max-width: none;
}

.gc-menu-page__inner--wide {
  width: min(100% - clamp(0.75rem, 2vw, 2rem), 1150px);
}

.gc-menu-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.32fr);
  gap: clamp(0.75rem, 1.4vw, 1rem);
  align-items: stretch;
  margin-bottom: clamp(0.65rem, 1vw, 0.9rem);
}

.gc-menu-hero__copy {
  display: grid;
  gap: 0.45rem;
  align-content: center;
  padding: clamp(0.85rem, 1.4vw, 1.2rem);
  border: 2px solid var(--core-black);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 4px 4px 0 var(--core-black);
}

.gc-menu-hero__copy .gc-h1 {
  max-width: 18ch;
  font-size: clamp(2.05rem, 3.3vw, 3.55rem);
  line-height: 0.92;
}

.gc-menu-hero__copy p {
  max-width: 78ch;
  color: var(--ink-60);
  font-size: clamp(0.94rem, 1vw, 1.06rem);
  line-height: 1.42;
}

.gc-menu-hero__facts {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border: 2px solid var(--core-black);
  background: var(--core-black);
  box-shadow: 4px 4px 0 var(--core-black);
}

.gc-menu-hero__facts div {
  display: grid;
  gap: 0.28rem;
  align-content: center;
  min-height: 3.8rem;
  padding: 0.72rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--clean-white);
}

.gc-menu-hero__facts div:last-child {
  border-bottom: 0;
}

.gc-menu-hero__facts span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.gc-menu-hero__facts strong {
  color: var(--clean-white);
  font-family: var(--display);
  font-size: clamp(0.98rem, 1.35vw, 1.28rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gc-menu-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  justify-content: stretch;
  align-items: start;
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gc-menu-rail {
  display: grid;
  align-content: start;
  min-width: 0;
  position: sticky;
  top: calc(var(--header-h, 80px) + 0.75rem);
  border: 2px solid var(--core-black);
  background:
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.11) 1px, transparent 0) 0 0 / 20px 20px,
    var(--clean-white);
  box-shadow: 4px 4px 0 var(--core-black);
}

.gc-menu-rail__section,
.gc-menu-rail__note {
  border-bottom: 2px solid var(--core-black);
  background: rgba(255, 255, 255, 0.92);
}

.gc-menu-rail__section {
  padding: clamp(0.9rem, 1.4vw, 1.15rem);
}

.gc-menu-cats {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.gc-menu-cat,
.gc-menu-refresh {
  border: 2px solid var(--core-black);
  border-radius: 0;
  background: var(--clean-white);
  color: var(--core-black);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease), box-shadow 160ms var(--ease);
}

.gc-menu-cat {
  min-height: 3rem;
  padding: 0.8rem 0.7rem;
}

.gc-menu-cat:hover,
.gc-menu-cat:focus,
.gc-menu-cat.is-active {
  background: var(--deal-lime);
  color: var(--core-black);
  box-shadow: 3px 3px 0 var(--core-black);
  transform: translate(-1px, -1px);
}

.gc-menu-rail__section--pickup {
  background:
    linear-gradient(90deg, rgba(0, 154, 68, 0.1), rgba(167, 216, 75, 0.16)),
    var(--clean-white);
}

.gc-menu-mini-steps {
  display: grid;
  gap: 0.75rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.gc-menu-mini-steps li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
}

.gc-menu-mini-steps strong {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 2px solid var(--core-black);
  background: var(--clean-white);
  font-family: var(--display);
  line-height: 1;
}

.gc-menu-mini-steps span,
.gc-menu-rail__note p {
  color: var(--ink-60);
  font-size: 0.9rem;
  line-height: 1.35;
}

.gc-menu-rail__note {
  padding: 1rem;
  border-bottom: 0;
}

.gc-menu-rail__note strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gc-menu-stage {
  display: grid;
  grid-template-rows: auto;
  min-width: 0;
  width: 100%;
  max-width: none;
  border: 2px solid var(--core-black);
  background: var(--clean-white);
  box-shadow: 4px 4px 0 var(--core-black);
  overflow: hidden;
  contain: paint;
}

.gc-menu-stage--full {
  max-width: none;
}

.gc-menu-stage__bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.35rem;
  padding: 0.8rem 1rem;
  border-bottom: 2px solid var(--core-black);
  background:
    linear-gradient(90deg, rgba(0, 154, 68, 0.08), rgba(167, 216, 75, 0.18)),
    var(--clean-white);
}

.gc-menu-stage__bar strong {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gc-menu-stage__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  min-width: 0;
  min-height: 0;
  background: var(--clean-white);
  overflow: hidden;
}

.gc-menu-refresh {
  min-height: 2.75rem;
  flex: 0 0 auto;
  padding: 0.8rem 1rem;
  background: var(--core-black);
  color: var(--clean-white);
}

.gc-menu-refresh:hover,
.gc-menu-refresh:focus {
  background: var(--deal-lime);
  color: var(--core-black);
}

.gc-menu-embed {
  position: relative;
  height: auto;
  min-height: 1280px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--clean-white);
  overflow: hidden;
}

.gc-menu-embed.gc-dutchie--active,
.gc-menu-embed.gc-dutchie--ready {
  height: auto;
  min-height: 1280px;
}

.gc-menu-embed #dutchie--embed__container {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 1280px !important;
  transform: none !important;
  overflow: hidden;
}

.gc-menu-embed #dutchie--embed__iframe,
.gc-menu-embed iframe[src*="dutchie.com/embedded-menu"] {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 1280px !important;
  border: 0 !important;
}

.gc-menu-loading {
  inset: 0;
  z-index: 8;
  display: grid;
  align-content: start;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.11) 1px, transparent 0) 0 0 / 20px 20px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0 58%, rgba(167, 216, 75, 0.2) 58% 100%),
    var(--clean-white);
}

.gc-menu-loading .gc-h2 {
  max-width: 13ch;
  margin: 0.45rem 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.88;
}

.gc-menu-loading p {
  max-width: 34rem;
  color: var(--ink-60);
}

.gc-menu-loading[data-gc-hidden="true"] {
  pointer-events: none;
}

.gc-menu-aftercare {
  padding: clamp(1.4rem, 2.8vw, 2.2rem) 0;
  background: var(--clean-white);
}

.gc-menu-aftercare__grid {
  display: grid;
  grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.4rem) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  box-shadow: none;
}

.gc-menu-aftercare__grid .gc-h2 {
  margin-top: 0.45rem;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 0.9;
}

.gc-menu-aftercare__grid p {
  max-width: 70ch;
  color: var(--ink-60);
  line-height: 1.45;
}

.gc-menu-aftercare__grid a {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border: 2px solid var(--core-black);
  background: var(--core-black);
  color: var(--clean-white);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .gc-menu-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .gc-menu-stage {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .gc-menu-hero,
  .gc-menu-shell,
  .gc-menu-aftercare__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gc-menu-hero__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gc-menu-hero__facts div {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 0;
  }

  .gc-menu-hero__facts div:last-child {
    border-right: 0;
  }

  .gc-menu-rail {
    position: static;
    border: 2px solid var(--core-black);
  }

  .gc-menu-stage {
    max-width: none;
  }

  .gc-menu-stage__body {
    grid-template-columns: minmax(0, 1fr);
  }

  .gc-menu-cats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gc-menu-rail__section--pickup,
  .gc-menu-rail__note {
    display: none;
  }
}

@media (max-width: 767px) {
  .gc-menu-page {
    padding: 0.6rem 0 0.9rem;
    background:
      radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.12) 1px, transparent 0) 0 0 / 18px 18px,
      var(--clean-white);
  }

  .gc-menu-page__inner {
    width: 100%;
    padding-inline: 0.35rem;
  }

  .gc-menu-hero {
    gap: 0.6rem;
    margin-bottom: 0.6rem;
  }

  .gc-menu-hero__copy,
  .gc-menu-hero__facts,
  .gc-menu-shell {
    box-shadow: 4px 4px 0 var(--core-black);
  }

  .gc-menu-hero__copy {
    padding: 0.9rem;
  }

  .gc-menu-hero__copy .gc-h1 {
    max-width: 13ch;
    font-size: clamp(2.05rem, 10.5vw, 2.95rem);
  }

  .gc-menu-hero__copy p {
    font-size: 0.96rem;
  }

  .gc-menu-hero__facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .gc-menu-hero__facts div {
    min-height: auto;
    padding: 0.65rem 0.8rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .gc-menu-hero__facts div:last-child {
    border-bottom: 0;
  }

  .gc-menu-rail__section {
    padding: 0.65rem;
  }

  .gc-menu-cats {
    display: flex;
    gap: 0.45rem;
    margin-top: 0.55rem;
    overflow-x: auto;
    padding: 0 0.15rem 0.25rem;
    scroll-snap-type: x proximity;
  }

  .gc-menu-cat {
    min-width: max-content;
    min-height: 2.75rem;
    flex: 0 0 auto;
    padding: 0.75rem 0.85rem;
    scroll-snap-align: start;
  }

  .gc-menu-stage__bar {
    align-items: flex-start;
    min-height: auto;
    padding: 0.7rem;
  }

  .gc-menu-stage__bar strong {
    font-size: 1.25rem;
  }

  .gc-menu-refresh {
    min-height: 2.55rem;
    padding: 0.75rem 0.8rem;
    white-space: nowrap;
  }

  .gc-menu-embed,
  .gc-menu-embed.gc-dutchie--active,
  .gc-menu-embed.gc-dutchie--ready {
    min-height: 980px;
    height: auto;
  }

  .gc-menu-embed #dutchie--embed__container {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 980px !important;
    transform: none;
  }

  .gc-menu-embed #dutchie--embed__iframe,
  .gc-menu-embed iframe[src*="dutchie.com/embedded-menu"] {
    min-height: 980px !important;
  }

  .gc-menu-loading {
    padding: 0.9rem;
  }

  .gc-menu-loading .gc-h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .gc-menu-loading p {
    font-size: 0.92rem;
  }

  .gc-menu-aftercare {
    padding: 1rem 0 1.4rem;
  }

  .gc-menu-aftercare__grid {
    gap: 0.85rem;
    padding: 0.9rem;
  }

  .gc-menu-aftercare__grid a {
    width: 100%;
  }
}

/* ============================================================
   Homepage finish pass — truthful menu, stronger photo rhythm.
   ============================================================ */

.home .gc-hero__layout > .gc-hero__title {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.home .gc-hero {
  padding-bottom: clamp(3.25rem, 6vw, 5.25rem);
}

.home .gc-hero__title {
  width: fit-content;
  max-width: min(100%, 14ch);
  padding: 0.14em 0.2em 0.17em;
  border: 2px solid var(--core-black);
  border-radius: 0;
  background:
    linear-gradient(90deg, var(--core-green) 0 49%, var(--deal-lime) 49% 100%);
  color: var(--core-black);
  font-size: clamp(2.38rem, 5.25vw, 5.25rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0.08em 0.07em 0 rgba(244, 239, 228, 0.4);
  box-shadow: 8px 8px 0 var(--core-black);
}

.home .gc-hero__layout > .gc-hero__title-sub {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
  align-self: start;
}

.home .gc-hero__layout > .gc-hero__image {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.gc-home-proof .gc-intro__years {
  font-size: clamp(3.75rem, 6.8vw, 5.4rem);
  letter-spacing: -0.08em;
}

.gc-home-proof .gc-intro__body {
  padding: clamp(1.65rem, 3.2vw, 2.35rem);
}

.gc-home-proof .gc-intro__body p:last-of-type {
  margin-bottom: 1.35rem;
}

.gc-home-menu .gc-strains__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-home-menu .gc-strain {
  position: relative;
  min-height: clamp(21rem, 32vw, 28rem);
  display: grid;
  align-content: end;
  overflow: hidden;
  color: var(--clean-white);
}

.gc-home-menu .gc-strain__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.gc-home-menu .gc-strain__image::before {
  inset: 0;
  left: 0;
  bottom: auto;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 58%);
  box-shadow: none;
  transform: none;
}

.gc-home-menu .gc-strain__image::after {
  display: none;
}

.gc-home-menu .gc-strain__image--flower {
  background-image: url("./photos/greencare-interior-display.webp");
}

.gc-home-menu .gc-strain__image--vapes {
  background-image: url("./photos/greencare-interior-cases.webp");
}

.gc-home-menu .gc-strain__image--edibles {
  background-image: url("./photos/greencare-interior-wall.webp");
}

.gc-home-menu .gc-strain__tag {
  position: absolute;
  z-index: 2;
  left: 1rem;
  top: 1rem;
  bottom: auto;
  right: auto;
  background: var(--deal-lime);
}

.gc-home-menu .gc-strain__name,
.gc-home-menu .gc-strain__sub,
.gc-home-menu .gc-strain__foot {
  position: relative;
  z-index: 2;
}

.gc-home-menu .gc-strain__name {
  color: var(--clean-white);
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.62);
}

.gc-home-menu .gc-strain__sub {
  max-width: 26ch;
  min-height: 0;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.65);
}

.gc-home-menu .gc-strain__price {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.gc-home-menu .gc-strain__foot {
  border-color: rgba(255, 255, 255, 0.28);
}

.gc-home-menu .gc-strain__cta {
  color: var(--deal-lime);
}

.gc-map--photo {
  position: relative;
  overflow: hidden;
  background: var(--core-black);
}

.gc-map--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 64%);
  pointer-events: none;
}

.gc-map--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gc-map__label {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--clean-white);
  font-family: var(--display);
  font-size: 0.78rem;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.gc-visit-map-card {
  display: grid;
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.gc-visit-map-card .gc-map__label {
  left: auto;
  right: 1rem;
  width: max-content;
  max-width: calc(100% - 2rem);
}

.gc-visit-map-card__panel {
  position: relative;
  z-index: 2;
  width: min(100%, 28rem);
  padding: clamp(1rem, 2.4vw, 1.75rem);
  border: 2px solid var(--core-black);
  background: rgba(0, 0, 0, 0.78);
  color: var(--clean-white);
  box-shadow: 7px 7px 0 var(--core-black);
  backdrop-filter: blur(14px);
}

.gc-visit-map-card__panel .gc-eyebrow,
.gc-visit-map-card__panel p {
  color: rgba(255, 255, 255, 0.76);
}

.gc-visit-map-card__panel h2 {
  margin-top: 0.55rem;
  font-family: var(--display);
  font-size: 2.35rem;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gc-visit-map-card__panel p {
  max-width: 34ch;
  margin-top: 0.8rem;
  font-size: 1rem;
  line-height: 1.42;
}

.gc-visit-map-card__panel > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

@media (max-width: 767px) {
  .gc-visit-map-card {
    align-items: end;
    padding: 0.8rem;
  }

  .gc-visit-map-card__panel {
    width: 100%;
    padding: 0.95rem;
  }

  .gc-visit-map-card__panel h2 {
    font-size: 1.85rem;
  }

  .gc-visit-map-card__panel > div .gc-btn {
    width: 100%;
  }

  .gc-visit-map-card .gc-map__label {
    display: none;
  }
}

.gc-home-close {
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--core-green) 0 52%, var(--deal-lime) 52% 100%);
  color: var(--core-black);
}

.gc-home-close .gc-cta__title {
  max-width: 12ch;
  color: var(--core-black);
  font-size: clamp(3rem, 9vw, 7.4rem);
  line-height: 0.82;
  text-shadow: 0.08em 0.07em 0 rgba(244, 239, 228, 0.4);
}

@media (max-width: 1100px) {
  .home .gc-hero__layout > .gc-hero__title,
  .home .gc-hero__layout > .gc-hero__title-sub,
  .home .gc-hero__layout > .gc-hero__image {
    grid-column: 1;
    grid-row: auto;
  }

  .gc-home-menu .gc-strains__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .home .gc-hero__layout {
    gap: 0.75rem;
  }

  .home .gc-hero__layout > .gc-hero__title-sub {
    margin-bottom: 0.1rem;
  }

  .home .gc-hero__title {
    max-width: 100%;
    font-size: clamp(1.95rem, 9.2vw, 3rem);
    box-shadow: 6px 6px 0 var(--deal-lime);
  }

  .gc-home-proof .gc-intro__years {
    font-size: clamp(3.15rem, 15.5vw, 4.45rem);
  }

  .gc-home-proof .gc-intro__body {
    padding: 1.2rem;
  }

  .gc-home-menu .gc-strain__image {
    min-height: 0;
  }

  .gc-map__label {
    font-size: 0.66rem;
  }
}

/* ============================================================
   Homepage cinematic revision - photo first, green as accent.
   ============================================================ */

.home .gc-hero {
  min-height: calc(100svh - var(--header-h));
  padding: clamp(0.9rem, 2.4vw, 1.4rem) 0 clamp(2.35rem, 4.5vw, 4.5rem);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.92), var(--core-black));
  color: var(--clean-white);
}

.home .gc-hero::before,
.home .gc-hero::after {
  display: none;
}

.home .gc-hero__top {
  position: relative;
  z-index: 3;
  margin-bottom: clamp(0.75rem, 1.6vw, 1.15rem);
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.82);
}

.home .gc-hero__live,
.home .gc-hero__meta {
  color: inherit;
}

.home .gc-hero__layout {
  --gc-hero-stage-pad: clamp(1.05rem, 3.3vw, 3rem);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: end;
  gap: clamp(0.75rem, 1.4vw, 1.05rem);
  min-height: clamp(34rem, 73svh, 47rem);
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--core-black);
  background: var(--core-black);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 10px 10px 0 var(--deal-lime);
}

.home .gc-hero__layout::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(167, 216, 75, 0.22), transparent 22rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.58) 68%, rgba(0, 0, 0, 0.9)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.42));
}

.home .gc-hero__layout > .gc-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  grid-area: auto;
  width: 100%;
  max-width: none;
  height: 100%;
  justify-self: stretch;
  align-self: stretch;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--core-black);
}

.home .gc-hero__image.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--gc-photo-position, center);
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.015);
}

.home .gc-hero__image.has-photo::before,
.home .gc-hero__image.has-photo::after {
  display: none;
}

.home .gc-hero__image.has-photo .gc-hero__image-label {
  top: clamp(1rem, 2.8vw, 2rem);
  right: clamp(1rem, 2.8vw, 2rem);
  bottom: auto;
  left: auto;
  width: auto;
  max-width: min(18rem, calc(100% - 2rem));
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.62);
  color: var(--clean-white);
  font-family: var(--display);
  font-size: clamp(0.64rem, 1.2vw, 0.82rem);
  line-height: 1.04;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.home .gc-hero__layout > .gc-hero__title,
.home .gc-hero__layout > .gc-hero__title-sub {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: auto;
}

.home .gc-hero__title {
  width: auto;
  max-width: 11.2ch;
  margin: var(--gc-hero-stage-pad) var(--gc-hero-stage-pad) 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--clean-white);
  font-size: clamp(3.65rem, 10.4vw, 8.6rem);
  line-height: 0.79;
  letter-spacing: 0;
  text-shadow: 0.055em 0.045em 0 rgba(0, 0, 0, 0.78), 0 22px 54px rgba(0, 0, 0, 0.72);
}

.home .gc-hero__title::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.035em;
  bottom: 0.045em;
  width: min(7.2ch, 86%);
  height: 0.18em;
  background: linear-gradient(90deg, var(--core-green), var(--deal-lime));
  box-shadow: 0.06em 0.08em 0 rgba(0, 0, 0, 0.7);
}

.home .gc-hero__layout > .gc-hero__title-sub {
  max-width: 42ch;
  margin: 0 var(--gc-hero-stage-pad) var(--gc-hero-stage-pad);
  padding: 1rem 1.05rem 1.05rem;
  border-left: 0.35rem solid var(--deal-lime);
  background: rgba(0, 0, 0, 0.68);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.25vw, 1.24rem);
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.home .gc-hero__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.95rem;
  padding: clamp(0.85rem, 1.8vw, 1.15rem);
  border: 2px solid var(--core-black);
  background: var(--clean-white);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--core-black);
}

.home .gc-hero__sub {
  max-width: none;
  color: var(--ink-60);
}

.gc-home-moment {
  padding: clamp(2.5rem, 4.8vw, 4.6rem) 0;
  background:
    linear-gradient(90deg, var(--soft-green) 0 36%, var(--clean-white) 36% 100%);
  overflow: hidden;
}

.gc-home-moment .gc-container {
  display: grid;
  grid-template-columns: minmax(18rem, 0.58fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3.2vw, 3rem);
  align-items: center;
}

.gc-home-moment__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(0.8rem, 1.45vw, 1.15rem);
  padding-block: clamp(0.5rem, 2vw, 1.4rem);
}

.gc-home-moment__copy .gc-h2 {
  max-width: 9.6ch;
}

.gc-home-moment__copy p {
  max-width: 33ch;
  color: var(--ink-60);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.42;
}

.gc-home-moment__photos {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 0.78fr);
  grid-template-rows: repeat(2, minmax(10rem, 1fr));
  gap: clamp(0.7rem, 1.35vw, 1rem);
  min-height: clamp(22rem, 36vw, 34rem);
}

.gc-home-moment__photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--core-black);
  background: var(--core-black);
  box-shadow: 7px 7px 0 var(--core-black);
}

.gc-home-moment__photo--large {
  grid-row: 1 / 3;
}

.gc-home-moment__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 700ms var(--ease);
}

.gc-home-moment__photo:hover img {
  transform: scale(1.035);
}

.gc-home-moment__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.36));
}

@media (max-width: 900px) {
  .home .gc-hero__actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .home .gc-hero__actions .gc-btn {
    width: 100%;
    justify-content: center;
  }

  .gc-home-moment {
    background: linear-gradient(180deg, var(--clean-white), var(--soft-green));
  }

  .gc-home-moment .gc-container {
    display: block;
  }

  .gc-home-moment__copy {
    align-items: start;
    margin-bottom: clamp(1.35rem, 3vw, 2rem);
    padding-block: 0;
  }

  .gc-home-moment__photos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(18rem, 1.1fr) minmax(11rem, 0.7fr);
    min-height: 0;
  }

  .gc-home-moment__photo--large {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 767px) {
  .home .gc-hero {
    padding-top: 0.75rem;
    padding-bottom: 2.3rem;
  }

  .home .gc-hero__top {
    margin-bottom: 0.65rem;
    padding: 0.58rem 0;
  }

  .home .gc-hero__layout {
    --gc-hero-stage-pad: 1rem;
    min-height: min(74svh, 38.5rem);
    box-shadow: 6px 6px 0 var(--deal-lime);
  }

  .home .gc-hero__image.has-photo .gc-hero__image-label {
    top: 0.85rem;
    right: 0.85rem;
    max-width: 13rem;
    font-size: 0.62rem;
  }

  .home .gc-hero__title {
    max-width: 9.3ch;
    font-size: clamp(3rem, 15.6vw, 4.3rem);
    line-height: 0.8;
    text-shadow: 0.052em 0.048em 0 rgba(0, 0, 0, 0.86), 0 16px 42px rgba(0, 0, 0, 0.74);
  }

  .home .gc-hero__layout > .gc-hero__title-sub {
    max-width: none;
    padding: 0.82rem 0.9rem;
    font-size: 0.97rem;
  }

  .home .gc-hero__actions {
    padding: 0.78rem;
    box-shadow: 6px 6px 0 var(--core-black);
  }

  .gc-home-moment {
    padding: 3.25rem 0;
  }

  .gc-home-moment__copy .gc-h2 {
    max-width: 9.5ch;
  }

  .gc-home-moment__photos {
    grid-template-rows: minmax(16rem, 1fr) minmax(9rem, 0.65fr);
    gap: 0.62rem;
  }

  .gc-home-moment__photo {
    box-shadow: 5px 5px 0 var(--core-black);
  }
}

@media (max-width: 980px) {
  .gc-journal-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gc-journal-hero .gc-hero__title,
  .home .gc-journal-hero .gc-hero__title {
    max-width: 11ch;
    font-size: 4.35rem;
  }

  .gc-journal-featured {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    grid-template-rows: none;
  }

  .gc-journal-featured__media {
    aspect-ratio: auto;
    min-height: 18rem;
    border-right: 2px solid var(--core-black);
    border-bottom: 0;
  }

  .gc-journal-grid,
  .gc-journal-routes,
  .gc-journal-answer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .gc-journal-hero,
  .home .gc-journal-hero {
    padding-top: 1.2rem;
    padding-bottom: 3.2rem;
    background: linear-gradient(180deg, var(--clean-white) 0 70%, var(--soft-green) 70% 100%);
  }

  .gc-journal-hero .gc-hero__top,
  .home .gc-journal-hero .gc-hero__top {
    margin-bottom: 1.05rem;
    padding-bottom: 0.85rem;
  }

  .gc-journal-hero__copy {
    padding-block: 0.25rem 0.4rem;
  }

  .gc-journal-hero .gc-hero__title,
  .home .gc-journal-hero .gc-hero__title {
    max-width: 9.4ch;
    font-size: 3.35rem;
    line-height: 0.82;
  }

  .gc-journal-hero .gc-lede {
    max-width: 30rem;
    font-size: 1.02rem;
    line-height: 1.42;
  }

  .gc-journal-topics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.52rem;
  }

  .gc-journal-topics a {
    min-width: 0;
    padding-inline: 0.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .gc-journal-featured {
    grid-template-columns: minmax(0, 1fr);
    box-shadow: 6px 6px 0 var(--core-black);
  }

  .gc-journal-featured__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 2px solid var(--core-black);
  }

  .gc-journal-featured__body {
    padding: 1.15rem;
  }

  .gc-journal-featured h2,
  .gc-journal-route h3,
  .gc-journal-answer h3 {
    font-size: 2rem;
  }

  .gc-journal-grid,
  .gc-journal-routes,
  .gc-journal-answer-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .gc-journal-route {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
  }

  .gc-journal-route__code {
    font-size: 3rem;
  }

  .gc-journal-answer {
    min-height: 0;
  }
}

/* Blog restraint pass — helpful guide hub, not a shouting match. */
.gc-journal-hero .gc-hero__title,
.home .gc-journal-hero .gc-hero__title {
  max-width: 13ch;
  font-size: 4.55rem;
  line-height: 0.9;
}

.gc-journal-hero .gc-lede {
  max-width: 46ch;
  font-size: 1.08rem;
}

.gc-journal-featured h2,
.gc-journal-route h3,
.gc-journal-answer h3 {
  line-height: 0.96;
}

@media (max-width: 980px) {
  .gc-journal-hero .gc-hero__title,
  .home .gc-journal-hero .gc-hero__title {
    font-size: 3.55rem;
  }
}

@media (max-width: 767px) {
  .gc-journal-hero .gc-hero__title,
  .home .gc-journal-hero .gc-hero__title {
    max-width: 11.5ch;
    font-size: 2.85rem;
    line-height: 0.94;
  }

  .gc-journal-hero .gc-lede {
    font-size: 1rem;
  }

  .gc-journal-featured h2,
  .gc-journal-route h3,
  .gc-journal-answer h3 {
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gc-home-moment__photo img {
    transition: none;
  }

  .gc-journal-featured,
  .gc-journal-featured__media img,
  .gc-blog-card__thumb img,
  .gc-journal-topics a {
    transition: none;
  }
}

/* ============ MOTION — tasteful site choreography ============ */
.gc-motion-ready .gc-motion-item {
  opacity: 0;
  transform: translateY(1.15rem);
  transition:
    opacity 680ms var(--ease),
    transform 680ms var(--ease);
  transition-delay: calc(var(--gc-motion-order, 0) * 52ms);
  will-change: opacity, transform;
}

.gc-motion-ready .gc-motion-item.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.gc-motion-ready .gc-hero__image,
.gc-motion-ready .gc-journal-featured__media,
.gc-motion-ready .gc-blog-card__thumb,
.gc-motion-ready .gc-home-moment__photo {
  overflow: hidden;
}

.gc-motion-ready .gc-hero__image.has-photo img,
.gc-motion-ready .gc-journal-featured__media img,
.gc-motion-ready .gc-blog-card__thumb img,
.gc-motion-ready .gc-home-moment__photo img,
.gc-motion-ready .gc-map--photo img {
  transition:
    transform 900ms var(--ease),
    filter 700ms var(--ease);
}

.gc-motion-ready .gc-hero__image.has-photo:hover img,
.gc-motion-ready .gc-map--photo:hover img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.035);
}

.gc-motion-ready .gc-btn,
.gc-motion-ready .gc-intro__link,
.gc-motion-ready .gc-strain__cta,
.gc-motion-ready .gc-blog-card,
.gc-motion-ready .gc-journal-route,
.gc-motion-ready .gc-journal-featured {
  will-change: transform;
}

@media (max-width: 767px) {
  .gc-motion-ready .gc-motion-item {
    transform: translateY(0.75rem);
    transition-duration: 520ms;
    transition-delay: calc(var(--gc-motion-order, 0) * 34ms);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gc-motion-ready .gc-motion-item,
  .gc-motion-ready .gc-hero__image.has-photo img,
  .gc-motion-ready .gc-journal-featured__media img,
  .gc-motion-ready .gc-blog-card__thumb img,
  .gc-motion-ready .gc-home-moment__photo img,
  .gc-motion-ready .gc-map--photo img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Visit page cleanup — compact utility strip, no empty gray frame.
   ============================================================ */

.gc-visit-essentials {
  position: relative;
  z-index: 3;
  margin-top: calc(clamp(2.5rem, 5vw, 4.5rem) * -1);
  padding-top: 0;
}

.gc-visit-essentials .gc-container {
  max-width: min(100%, 1500px);
}

.gc-visit-essentials .gc-facts-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gc-visit-essentials .gc-fact {
  min-height: 0;
  padding: clamp(1rem, 1.45vw, 1.35rem);
  border: 2px solid var(--core-black);
  border-radius: 10px;
  background: var(--clean-white);
  box-shadow: 5px 5px 0 var(--core-black);
}

.gc-visit-essentials .gc-fact:last-child {
  border-right: 2px solid var(--core-black);
}

.gc-visit-essentials .gc-fact h4 {
  margin-bottom: 0.55rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.gc-visit-essentials .gc-fact__big {
  margin-bottom: 0.35rem;
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  line-height: 0.95;
}

.gc-visit-essentials .gc-fact p:not(.gc-fact__big) {
  max-width: 18ch;
  font-size: 0.84rem;
  line-height: 1.32;
}

.gc-motion-ready .gc-visit-essentials .gc-fact {
  opacity: 1 !important;
  transform: none !important;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.gc-visit-essentials .gc-fact:hover {
  background: var(--soft-green);
  transform: translateY(-2px) !important;
}

@media (max-width: 1100px) {
  .gc-visit-essentials {
    margin-top: 0;
  }

  .gc-visit-essentials .gc-facts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gc-visit-essentials .gc-fact {
    border: 2px solid var(--core-black);
  }
}

@media (max-width: 767px) {
  .gc-visit-essentials {
    padding-top: 0.35rem;
  }

  .gc-visit-essentials .gc-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.6rem;
  }

  .gc-visit-essentials .gc-fact {
    padding: 1rem;
    border: 2px solid var(--core-black);
    box-shadow: 4px 4px 0 var(--core-black);
  }
}
