/* =====================================================
 NY ELITE CANNABIS, Design System
 Premium dispensary, gold-on-forest aesthetic
 ===================================================== */

/* ----------- TOKENS ----------- */
:root {
 /* Gold palette */
 --gold-50: #FBF7EC;
 --gold-100: #F0E4C3;
 --gold-200: #E5D097;
 --gold-300: #D6B868;
 --gold-400: #C9A961;
 --gold-500: #B8924A;
 --gold-600: #8B6F33;
 --gold-700: #6B5526;
 --gold-grad: linear-gradient(135deg,#8B6F33 0%,#D6B868 35%,#F0E4C3 55%,#C9A961 75%,#8B6F33 100%);
 --gold-shimmer: linear-gradient(110deg,#B8924A,#F0E4C3,#C9A961,#8B6F33,#E5D097);

 /* Forest greens */
 --green-50: #EBF0EE;
 --green-100: #C7D5D0;
 --green-300: #5A7A73;
 --green-500: #1A4D45;
 --green-700: #0F3D38;
 --green-900: #08221E;

 /* Neutrals */
 --cream: #FAF6E9;
 --bone: #F8F5EE;
 --paper: #FFFFFF;
 --ink: #0F0F0F;
 --ink-soft: #2A2A2A;
 --ash: #6B6B6B;
 --mist: #C4C4C4;
 --line: rgba(15,61,56,.12);
 --line-light: rgba(15,61,56,.06);

 /* Semantic */
 --bg: var(--bone);
 --surface: var(--paper);
 --surface-alt: var(--cream);
 --text: var(--ink);
 --text-soft: var(--ink-soft);
 --text-muted: var(--ash);
 --accent: var(--gold-500);
 --accent-hover: var(--gold-600);
 --primary: var(--green-700);
 --primary-deep: var(--green-900);

 /* Type */
 --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
 --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
 --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

 /* Layout */
 --container: 1280px;
 --container-narrow: 880px;
 --container-wide: 1440px;

 /* Spacing scale */
 --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
 --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

 /* Radius */
 --r-sm: 4px; --r: 8px; --r-md: 12px; --r-lg: 20px; --r-xl: 32px; --r-pill: 999px;

 /* Shadow */
 --shadow-xs: 0 1px 2px rgba(8,34,30,.06);
 --shadow-sm: 0 2px 8px rgba(8,34,30,.07);
 --shadow: 0 8px 28px rgba(8,34,30,.10);
 --shadow-lg: 0 24px 64px rgba(8,34,30,.16);

 /* Motion */
 --ease-out: cubic-bezier(.2,.8,.2,1);
 --t-fast: 140ms;
 --t: 240ms;
 --t-slow: 480ms;
}

/* ----------- RESET ----------- */
*,*::before,*::after { box-sizing: border-box; }
/* Drop scroll-behavior: smooth — fights iOS native momentum scroll and creates a laggy feel.
   Hash links jump instantly which is the native, expected behavior on touch devices.
   scroll-padding-top reserves room for the sticky site-header so anchor jumps land cleanly. */
html { scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
 margin: 0;
 background: var(--bg);
 color: var(--text);
 font-family: var(--font-body);
 font-size: 16px;
 line-height: 1.6;
 font-feature-settings: 'kern','liga','ss01';
 -webkit-font-smoothing: antialiased;
 text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: var(--primary); text-decoration: none; transition: color var(--t-fast) var(--ease-out); }
a:hover { color: var(--accent); }
ul, ol { padding-left: 1.2em; }
hr { border: none; border-top: 1px solid var(--line); margin: var(--s-7) 0; }

/* ----------- TYPE ----------- */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -.01em; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw + .5rem, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3vw + .5rem, 3.2rem); }
h3 { font-size: clamp(1.4rem, 1.5vw + .5rem, 2rem); }
h4 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; }
.eyebrow {
 font-family: var(--font-body);
 font-size: .82rem;
 font-weight: 600;
 letter-spacing: .22em;
 text-transform: uppercase;
 color: var(--gold-600);
 margin: 0 0 var(--s-4);
}
.eyebrow-light { color: var(--gold-300); }
.lede { font-size: 1.18rem; line-height: 1.5; color: var(--text-soft); max-width: 60ch; }
.gold-text {
 background: var(--gold-grad);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent;
}
.serif { font-family: var(--font-display); font-style: italic; }

/* ----------- LAYOUT ----------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.container-narrow { max-width: var(--container-narrow); }
.container-wide { max-width: var(--container-wide); }
.section { padding: var(--s-9) 0; }

/* Blog hero figure — sits between the byline and the article body on every post */
.article-hero-figure {
 margin: 1.75rem 0 0;
 padding: 0;
 border-radius: var(--r-lg);
 overflow: hidden;
 box-shadow: 0 12px 32px rgba(15,61,56,.12), 0 2px 6px rgba(15,61,56,.05);
 aspect-ratio: 16 / 9;
 background: var(--cream);
}
.article-hero-figure img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}
@media (max-width: 700px) {
 .article-hero-figure { margin-top: 1.25rem; border-radius: var(--r); }
}

/* Tighten the stack of end-of-article sections (learn-more, author card, promo band)
   so they read as one cohesive footer block rather than three fully-padded stacks. */
.article > .section:has(.learn-more-block),
.article > .section:has(.author-card),
.article > .section:has(.promo-band) {
 padding-top: 1.25rem;
 padding-bottom: 1.25rem;
}
/* The first of those tail sections gets a bit of breathing room from the shop carousel above. */
.article > .blog-shop-section + .section { padding-top: 2rem; }
/* The last one (promo band) sits closer to the Related Articles cards. */
.article > .section:has(.promo-band) { padding-bottom: 2.5rem; }
.section-sm { padding: var(--s-7) 0; }
.section-lg { padding: var(--s-10) 0; }
.section--dark { background: var(--primary); color: var(--paper); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--paper); }
.section--cream { background: var(--cream); }
.section--ink { background: var(--primary-deep); color: var(--paper); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
.grid-auto-200 { grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); }
.grid-auto-280 { grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); }
.grid-auto-340 { grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); }
@media (max-width: 880px) {
 .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.row { display: flex; gap: var(--s-5); flex-wrap: wrap; align-items: center; }
.row-between { justify-content: space-between; }
.stack { display: flex; flex-direction: column; gap: var(--s-4); }
.center { text-align: center; }
.muted { color: var(--text-muted); }

/* ----------- BUTTONS ----------- */
.btn {
 display: inline-flex; align-items: center; justify-content: center;
 gap: var(--s-2);
 padding: 14px 28px;
 font-weight: 600;
 font-size: .95rem;
 letter-spacing: .04em;
 text-transform: uppercase;
 border-radius: var(--r-pill);
 border: 1px solid transparent;
 transition: all var(--t) var(--ease-out);
 cursor: pointer;
 white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--paper); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-deep); border-color: var(--primary-deep); color: var(--gold-200); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold-grad); color: var(--ink); border: 1px solid var(--gold-500); position: relative; }
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(184,146,74,.36); color: var(--ink); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { color: var(--gold-600); }
.btn-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-light:hover { background: var(--gold-100); border-color: var(--gold-100); }
.btn-sm { padding: 10px 18px; font-size: .82rem; }
.btn-lg { padding: 18px 38px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

/* ----------- ICON LINK / CHEVRON ----------- */
.link-arrow {
 display: inline-flex; align-items: center; gap: 6px;
 font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .85rem;
}
.link-arrow::after { content: '→'; transition: transform var(--t) var(--ease-out); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ----------- CARD ----------- */
.card {
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: var(--r-lg);
 padding: var(--s-6);
 transition: all var(--t) var(--ease-out);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--gold-300); }
.card-flat { background: var(--surface); border-radius: var(--r-lg); padding: var(--s-5); }
.card-dark { background: var(--primary); color: var(--paper); border-radius: var(--r-lg); padding: var(--s-6); }
.card-dark h3 { color: var(--gold-200); }

/* ----------- BADGE ----------- */
.badge {
 display: inline-flex; align-items: center; gap: 6px;
 padding: 6px 12px;
 background: var(--gold-100);
 color: var(--gold-700);
 font-size: .75rem;
 font-weight: 600;
 letter-spacing: .12em;
 text-transform: uppercase;
 border-radius: var(--r-pill);
}
.badge-dark { background: var(--green-900); color: var(--gold-300); }
.badge-live { background: #16a085; color: white; }
.badge-live::before { content: ''; width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ----------- HERO ----------- */
.hero {
 position: relative;
 background: var(--primary-deep);
 color: var(--paper);
 overflow: hidden;
 padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
}
.hero::before {
 content: '';
 position: absolute; inset: 0;
 background:
 radial-gradient(800px 400px at 80% -10%, rgba(201,169,97,.18), transparent 60%),
 radial-gradient(600px 600px at -10% 100%, rgba(26,77,69,.6), transparent 60%);
 pointer-events: none;
}
.hero h1 { color: var(--paper); }
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow { color: var(--gold-300); }
.hero-meta { display: flex; gap: var(--s-5); flex-wrap: wrap; color: var(--gold-100); font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; }

/* ----------- HERO + PROMO LAYOUT -----------
 Two-column layout (used on inner pages). Homepage uses hero-video instead. */
.hero-grid {
 display: grid;
 grid-template-columns: minmax(0, 1fr) minmax(0.85fr);
 gap: var(--s-7);
 align-items: center;
}
.hero-grid .hero-copy { min-width: 0; }
@media (max-width: 980px) {
 .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); }
 .hero-grid .promo-rail-wrap { order: -1; }
}

/* ===== FULL-BLEED VIDEO HERO ===== */
.hero-video {
 position: relative;
 overflow: hidden;
 padding: 0;
 background: var(--primary-deep);
 /* Use svh (small viewport height) so the hero doesn't resize on iOS when the URL bar
    auto-hides during scroll. Fallback to vh for browsers without svh support. */
 min-height: clamp(420px, 75vh, 760px);
 min-height: clamp(420px, 75svh, 760px);
 color: var(--paper);
 display: flex;
}
.hero-video::before { display: none; } /* drop the default radial overlays */
.hero-video .hero-bg {
 position: absolute; inset: 0; z-index: 0;
 overflow: hidden;
 transform: translateZ(0); /* GPU layer so the video doesn't repaint during scroll */
}
.hero-video .hero-bg video, .hero-video .hero-bg img {
 position: absolute;
 top: 50%; left: 50%;
 min-width: 100%;
 min-height: 100%;
 width: auto; height: auto;
 transform: translate3d(-50%, -50%, 0);
 object-fit: cover;
 will-change: transform;
}
/* Dark gradient overlay for text legibility */
.hero-video .hero-bg::after {
 content: '';
 position: absolute; inset: 0;
 background:
 linear-gradient(180deg, rgba(8,34,30,.45) 0%, rgba(8,34,30,.15) 30%, rgba(8,34,30,.4) 65%, rgba(8,34,30,.85) 100%),
 radial-gradient(800px 400px at 80% 0%, rgba(201,169,97,.15), transparent 60%);
}
.hero-video .container {
 position: relative;
 z-index: 1;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: flex-end; /* anchor text to BOTTOM of video */
 text-align: center;
 padding-top: clamp(60px, 10vh, 100px);
 padding-bottom: clamp(28px, 5vh, 56px);
 width: 100%;
}
.hero-video h1 {
 color: var(--paper);
 text-shadow: 0 2px 24px rgba(0,0,0,.85), 0 1px 3px rgba(0,0,0,.6);
 max-width: 38ch;
 font-size: clamp(1.6rem, 3.2vw, 2.55rem);
 font-weight: 700;
 line-height: 1.15;
 margin: 0;
}
.hero-video .hero-h2 {
 font-family: var(--font-body);
 font-size: clamp(1rem, 1.4vw, 1.15rem);
 font-weight: 700;
 letter-spacing: .02em;
 color: #F0E4C3;
 margin: var(--s-3) 0 0;
 text-shadow: 0 2px 18px rgba(0,0,0,.85), 0 1px 3px rgba(0,0,0,.6);
 text-transform: none;
 font-style: normal;
}
.hero-video .lede {
 color: #FFFFFF;
 text-shadow: 0 2px 14px rgba(0,0,0,.85), 0 1px 3px rgba(0,0,0,.65);
 max-width: 60ch;
 margin: var(--s-2) auto 0;
 font-size: clamp(.95rem, 1.2vw, 1.05rem);
 line-height: 1.55;
 font-weight: 500;
}
.hero-video .hero-meta {
 color: var(--gold-200);
 justify-content: center;
 font-size: .76rem;
}
.hero-video .row { justify-content: center; }
/* Bottom-weighted gradient, keeps the upper video frame visible while
   darkening the lower half where the H1/lede/CTA sit. Two stacked gradients:
   (1) global dim across the whole frame for consistent contrast, (2) heavy
   bottom-half darken so headlines and body text always sit on ~85% dark. */
.hero-video .hero-bg::after {
 background:
   linear-gradient(180deg, rgba(8,34,30,.35) 0%, rgba(8,34,30,.15) 25%, rgba(8,34,30,.55) 55%, rgba(8,34,30,.95) 100%),
   linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0,0,0,.35) 100%);
}
@media (max-width: 760px) {
 .hero-video { min-height: 78vh; min-height: 78svh; max-height: 720px; }
 .hero-video .container { padding-left: var(--s-4); padding-right: var(--s-4); padding-top: clamp(48px, 10vh, 100px); padding-bottom: var(--s-5); }
 .hero-video h1 {
   font-size: clamp(1.6rem, 7vw, 2.1rem);
   line-height: 1.18;
   letter-spacing: -.005em;
   max-width: 22ch;
 }
 .hero-video .hero-h2 {
   font-size: .92rem;
   line-height: 1.4;
   max-width: 32ch;
   margin-left: auto;
   margin-right: auto;
 }
 .hero-video .lede {
   display: block;
   color: rgba(255,255,255,.9);
   font-size: .82rem;
   line-height: 1.45;
   max-width: 36ch;
 }
 .hero-video .hero-meta { font-size: .68rem; gap: var(--s-2); }
 .hero-video .row { flex-direction: column; gap: 10px; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
 .hero-video .row .btn { width: 100%; justify-content: center; }
}

/* ===== BANNER STRIP SECTION (below hero) ===== */
.banner-strip-section {
 background: var(--primary-deep);
 padding: var(--s-6) 0 var(--s-7);
 position: relative;
 overflow: hidden;
}
.banner-strip-section::before {
 content: '';
 position: absolute; inset: 0;
 background: radial-gradient(800px 300px at 50% 100%, rgba(201,169,97,.08), transparent 70%);
 pointer-events: none;
}
.banner-strip-section .container { position: relative; }
.banner-strip-section .promo-rail-wrap { max-width: 1100px; margin: 0 auto; }
@media (max-width: 980px) {
 .banner-strip-section { padding: var(--s-5) 0; }
}

/* ----------- PROMO BANNER RAIL -----------
 Full-bleed image slides. Aspect ratio matches uploaded assets (~2.6:1). */
.promo-rail-wrap {
 position: relative;
 width: 100%;
 aspect-ratio: 2060 / 792;
 border-radius: var(--r-lg);
 overflow: hidden;
 box-shadow: 0 24px 60px rgba(0,0,0,.45);
 background: #000;
}
.promo-rail {
 position: absolute; inset: 0;
}
.promo-slide {
 position: absolute; inset: 0;
 display: block;
 text-decoration: none;
 opacity: 0;
 transition: opacity 700ms var(--ease-out);
 background: #000;
}
.promo-slide.is-active { opacity: 1; }
.promo-slide img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
 display: block;
}

/* dots + arrows */
.promo-dots {
 position: absolute;
 bottom: 10px; left: 50%; transform: translateX(-50%);
 display: flex; gap: 6px;
 z-index: 3;
}
.promo-dot {
 width: 7px; height: 7px; border-radius: 50%;
 background: rgba(255,255,255,.35);
 cursor: pointer;
 transition: background var(--t) var(--ease-out), transform var(--t) var(--ease-out);
}
.promo-dot.is-active { background: var(--gold-300); transform: scale(1.25); }
.promo-arrow {
 position: absolute;
 top: 50%; transform: translateY(-50%);
 z-index: 3;
 width: 36px; height: 36px;
 border-radius: 50%;
 background: rgba(0,0,0,.4);
 color: #fff;
 display: flex; align-items: center; justify-content: center;
 cursor: pointer;
 transition: background var(--t) var(--ease-out);
}
.promo-arrow:hover { background: rgba(0,0,0,.7); }
.promo-arrow.prev { left: 8px; }
.promo-arrow.next { right: 8px; }
.promo-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

/* ----------- HEADER / NAV ----------- */
.utility-bar {
 background: var(--primary-deep);
 color: var(--gold-200);
 padding: 8px 0;
 font-size: .8rem;
 letter-spacing: .06em;
}
.utility-bar .container { display: flex; justify-content: space-between; gap: var(--s-5); flex-wrap: wrap; align-items: center; }
.utility-bar a { color: var(--gold-200); }
.utility-bar a:hover { color: var(--gold-100); }
.utility-bar .pill { display: inline-flex; align-items: center; gap: 6px; }
.utility-bar .pill::before { content: '●'; color: #4ade80; font-size: .7rem; }
/* Mobile: collapse to one tight line */
.utility-bar .util-mobile-hide { display: inline-flex; }
.utility-bar .util-mobile-only { display: none; }
@media (max-width: 760px) {
 .utility-bar { font-size: .68rem; padding: 5px 0; letter-spacing: .04em; }
 .utility-bar .container { justify-content: center; gap: var(--s-3); flex-wrap: nowrap; padding-left: var(--s-3); padding-right: var(--s-3); }
 .utility-bar .util-mobile-hide { display: none !important; }
 .utility-bar .util-mobile-only { display: inline-flex !important; white-space: nowrap; }
}

.site-header {
 position: sticky; top: 0; z-index: 50;
 /* Solid background instead of translucent + blur. backdrop-filter is the #1 cause of
    scroll jank on mid-tier mobile because it recalculates a full-viewport blur every
    scroll frame. The visual difference is minimal here, the perf gain is significant. */
 background: var(--paper);
 border-bottom: 1px solid var(--line);
 transform: translateZ(0); /* promote to its own GPU layer for stable composite */
 will-change: transform;
 transition: box-shadow .25s var(--ease-out);
}
.site-header.is-scrolled { box-shadow: 0 6px 22px rgba(8,34,30,.08); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); padding-top: var(--s-3); padding-bottom: var(--s-3); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 56px; width: auto; aspect-ratio: 1 / 1; object-fit: contain; }
.brand-name { font-family: var(--font-display); font-size: 1.7rem; line-height: 1; color: var(--ink); letter-spacing: .06em; font-weight: 800; text-transform: uppercase; }
.brand-name span { display: block; font-size: .65rem; letter-spacing: .3em; color: var(--gold-600); margin-top: 4px; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; }

.nav-primary { display: flex; gap: var(--s-5); align-items: center; }
.nav-primary a, .nav-primary .nav-trigger {
 color: var(--ink);
 font-size: .82rem;
 font-weight: 600;
 letter-spacing: .14em;
 text-transform: uppercase;
 padding: 8px 0;
 position: relative;
 background: none;
 border: none;
 font-family: inherit;
 cursor: pointer;
 display: inline-flex;
 align-items: center;
 gap: 4px;
}
.nav-primary a:hover, .nav-primary .nav-trigger:hover { color: var(--gold-600); }
.nav-primary a.active::after, .nav-primary a:hover::after, .nav-primary .nav-trigger:hover::after, .nav-item.open > .nav-trigger::after {
 content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad);
}
.nav-trigger svg { width: 12px; height: 12px; transition: transform var(--t) var(--ease-out); }
.nav-item.open .nav-trigger svg { transform: rotate(180deg); }
.nav-cta { display: flex; gap: var(--s-3); align-items: center; }

/* SHOP DROPDOWN */
.nav-item { position: relative; }
.nav-dropdown {
 position: absolute;
 top: 100%;
 left: -16px;
 z-index: 60;
 min-width: 240px;
 background: var(--paper);
 border: 1px solid var(--line);
 border-radius: var(--r-md);
 padding: var(--s-3);
 box-shadow: var(--shadow-lg);
 opacity: 0;
 visibility: hidden;
 transform: translateY(-4px);
 transition: opacity var(--t) var(--ease-out), transform var(--t) var(--ease-out), visibility var(--t);
 margin-top: 8px;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown, .nav-item.open .nav-dropdown {
 opacity: 1;
 visibility: visible;
 transform: translateY(0);
}
.nav-dropdown ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.nav-dropdown li a {
 display: block;
 padding: 10px 14px;
 font-size: .82rem;
 font-weight: 600;
 letter-spacing: .12em;
 text-transform: uppercase;
 color: var(--ink);
 border-radius: var(--r);
 transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.nav-dropdown li a:hover {
 background: var(--gold-100);
 color: var(--gold-700);
}
.nav-dropdown li a:hover::after { display: none; }
.nav-dropdown .nav-divider {
 height: 1px;
 background: var(--line);
 margin: var(--s-2) 4px;
}
.nav-dropdown .nav-feature {
 background: var(--primary);
 color: var(--paper);
}
.nav-dropdown .nav-feature:hover { background: var(--primary-deep); color: var(--gold-200); }

/* Mobile nav sub-items */
.mobile-nav .mobile-sublist {
 display: grid; gap: var(--s-2);
 margin-top: var(--s-3);
 padding-left: var(--s-4);
 border-left: 2px solid var(--gold-300);
}
.mobile-nav .mobile-sublist a {
 font-family: var(--font-body);
 font-size: 1rem;
 letter-spacing: .14em;
 text-transform: uppercase;
 color: rgba(255,255,255,.85);
}
.mobile-nav .mobile-section-label {
 font-family: var(--font-body);
 font-size: .75rem;
 letter-spacing: .2em;
 text-transform: uppercase;
 color: var(--gold-300);
 margin-top: var(--s-3);
}

.menu-toggle {
 display: none;
 padding: 10px;
 color: var(--ink);
 background: transparent;
 border: 1px solid var(--line);
 border-radius: var(--r);
 align-items: center;
 justify-content: center;
 cursor: pointer;
 transition: background var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.menu-toggle:hover { background: var(--gold-100); border-color: var(--gold-300); }
.menu-toggle svg { width: 24px; height: 24px; display: block; }
@media (max-width: 1080px) {
 .nav-primary, .nav-cta .btn-outline { display: none; }
 .menu-toggle { display: inline-flex; }
}
@media (max-width: 760px) {
 /* Compact mobile header */
 .brand img { height: 40px; }
 .brand-name { display: none; } /* logo speaks for itself on mobile */
 .nav-cta { gap: 8px; }
 .nav-cta .btn-primary { padding: 9px 12px; font-size: .72rem; }
 .menu-toggle { padding: 8px; }
 .menu-toggle svg { width: 22px; height: 22px; }
 .site-header .container { padding-top: 10px; padding-bottom: 10px; padding-left: var(--s-4); padding-right: var(--s-4); gap: var(--s-3); }
}

/* mobile drawer */
.mobile-nav {
 position: fixed; inset: 0; background: var(--primary-deep); color: var(--paper);
 z-index: 100; transform: translateY(-100%); transition: transform var(--t-slow) var(--ease-out);
 display: flex; flex-direction: column; padding: var(--s-5);
 /* Clip so off-screen overflow can't leak into the viewport above the page */
 overflow: hidden;
}
.mobile-nav.open { transform: translateY(0); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.mobile-nav .close { align-self: flex-end; color: var(--gold-200); padding: var(--s-3); }
.mobile-nav nav { display: flex; flex-direction: column; gap: var(--s-4); margin-top: var(--s-6); }
.mobile-nav a { color: var(--paper); font-family: var(--font-display); font-size: 2rem; }
.mobile-nav .mobile-cta { margin-top: auto; display: grid; gap: var(--s-3); }

/* ----------- FOOTER ----------- */
.site-footer { background: var(--primary-deep); color: var(--paper); padding: var(--s-9) 0 var(--s-6); position: relative; }
.site-footer h4 { color: var(--gold-300); font-size: .9rem; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font-body); margin-bottom: var(--s-4); }
.site-footer a { color: rgba(255,255,255,.78); font-size: .92rem; }
.site-footer a:hover { color: var(--gold-300); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.footer-grid { display: grid; gap: var(--s-7); grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
@media (max-width: 1080px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 96px; width: 96px; margin-bottom: var(--s-4); aspect-ratio: 1 / 1; object-fit: contain; display: block; filter: drop-shadow(0 4px 18px rgba(201,169,97,.4)); }
.footer-brand p { color: rgba(255,255,255,.7); max-width: 36ch; }
.footer-legal {
 margin-top: var(--s-7);
 padding-top: var(--s-5);
 border-top: 1px solid rgba(255,255,255,.1);
 font-size: .78rem;
 color: rgba(255,255,255,.55);
 display: flex; justify-content: space-between; gap: var(--s-5); flex-wrap: wrap;
}

/* Social icon row */
.footer-social {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: var(--s-5);
 margin-top: var(--s-7);
 padding-top: var(--s-5);
 border-top: 1px solid rgba(255,255,255,.08);
}
.footer-social a {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 44px;
 height: 44px;
 color: var(--gold-300);
 border-radius: 50%;
 transition: color var(--t) var(--ease-out), background var(--t) var(--ease-out), transform var(--t) var(--ease-out);
}
.footer-social a:hover {
 color: var(--gold-100);
 background: rgba(201,169,97,.1);
 transform: translateY(-2px);
}
.footer-social svg { width: 26px; height: 26px; fill: currentColor; }
.compliance {
 margin-top: var(--s-6);
 padding: var(--s-5) var(--s-6);
 background: #F0C842;
 border: 1px solid #D4AC2C;
 border-radius: var(--r-md);
 font-size: .82rem;
 color: #1A1A1A;
 line-height: 1.6;
 text-align: center;
}
.compliance strong { color: #1A1A1A; font-weight: 700; }
.compliance a { color: #1A1A1A; text-decoration: underline; text-decoration-color: rgba(26,26,26,.5); text-underline-offset: 2px; }
.compliance a:hover { text-decoration-color: #1A1A1A; }

/* ----------- AGE GATE ----------- */
.age-gate {
 position: fixed; inset: 0; z-index: 200;
 background: rgba(8,34,30,.92);
 backdrop-filter: blur(8px);
 display: none;
 align-items: center; justify-content: center;
 padding: var(--s-5);
}
.age-gate.show { display: flex; }
.age-gate-card {
 background: var(--paper);
 max-width: 520px; width: 100%;
 border-radius: var(--r-xl);
 padding: var(--s-8) var(--s-7);
 text-align: center;
 border: 1px solid var(--gold-200);
}
.age-gate-card img { height: 96px; width: 96px; margin: 0 auto var(--s-5); aspect-ratio: 1 / 1; object-fit: contain; display: block; }
.age-gate-card h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: var(--s-3); }
.age-gate-card p { color: var(--text-muted); margin-bottom: var(--s-5); font-size: .95rem; }
.age-gate-card .actions { display: flex; gap: var(--s-3); justify-content: center; }
.age-gate-card .legal { font-size: .72rem; color: var(--text-muted); margin-top: var(--s-5); }

/* ----------- SPECIALS / DEAL CARDS ----------- */
.deal-card {
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: var(--r-lg);
 overflow: hidden;
 display: flex;
 flex-direction: column;
 transition: all var(--t) var(--ease-out);
 position: relative;
}
.deal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold-300); }
.deal-card .deal-tag {
 position: absolute; top: var(--s-3); right: var(--s-3); z-index: 2;
 background: var(--gold-grad);
 color: var(--ink); font-weight: 700;
 padding: 6px 12px; border-radius: var(--r-pill);
 font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
}
.deal-card .deal-img {
 aspect-ratio: 16/10;
 background: linear-gradient(135deg, var(--green-700), var(--green-900));
 display: flex; align-items: center; justify-content: center;
 color: var(--gold-200); font-family: var(--font-display); font-size: 2.4rem;
 text-align: center; padding: var(--s-5);
}
.deal-card .deal-body { padding: var(--s-5); }
.deal-card h3 { font-size: 1.3rem; margin-bottom: var(--s-2); }
.deal-card .deal-meta { font-size: .8rem; color: var(--text-muted); letter-spacing: .04em; }
.deal-card .deal-price { font-family: var(--font-display); font-size: 2rem; color: var(--gold-600); }
.deal-card .deal-price s { color: var(--text-muted); font-size: 1.2rem; margin-right: 8px; }

/* ----------- MOOD RAIL, large, horizontally scrollable ----------- */
.mood-rail-wrap { position: relative; }
.mood-rail {
 display: flex;
 gap: var(--s-5);
 overflow-x: auto;
 overflow-y: visible;
 scroll-snap-type: x mandatory;
 -webkit-overflow-scrolling: touch;
 scrollbar-width: none;
 padding: var(--s-2) var(--s-5) var(--s-3);
 margin: 0 calc(var(--s-5) * -1);
}
.mood-rail::-webkit-scrollbar { display: none; }
.mood-tile {
 flex: 0 0 220px;
 display: flex; flex-direction: column; align-items: center;
 text-decoration: none;
 color: var(--ink);
 scroll-snap-align: start;
 transition: transform var(--t) var(--ease-out);
}
.mood-tile:hover { transform: translateY(-4px); }
.mood-tile .mood-img {
 width: 100%;
 aspect-ratio: 1;
 display: flex; align-items: center; justify-content: center;
 background: transparent;
 border: 1px solid transparent;
 border-radius: 50%;
 overflow: hidden;
 overflow: hidden;
 transition: border-color var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out), background var(--t) var(--ease-out);
}
.mood-tile:hover .mood-img { background: var(--gold-50); border-color: var(--gold-300); box-shadow: var(--shadow-sm); }
.mood-tile img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.mood-tile .mood-label {
 margin-top: var(--s-3);
 font-family: var(--font-display);
 font-size: 1.5rem;
 letter-spacing: .01em;
 color: var(--ink);
}
.mood-tile .mood-sub {
 font-size: .78rem;
 letter-spacing: .14em;
 text-transform: uppercase;
 color: var(--gold-600);
 margin-top: 2px;
}
@media (max-width: 700px) {
 .mood-tile { flex: 0 0 160px; }
 .mood-tile .mood-label { font-size: 1.2rem; }
}

/* Scroll arrows */
.rail-nav {
 position: absolute; top: 50%;
 transform: translateY(-50%);
 z-index: 2;
 width: 44px; height: 44px;
 border-radius: 50%;
 background: var(--paper);
 border: 1px solid var(--line);
 box-shadow: var(--shadow-sm);
 display: flex; align-items: center; justify-content: center;
 cursor: pointer;
 transition: all var(--t) var(--ease-out);
}
.rail-nav:hover { background: var(--gold-100); border-color: var(--gold-400); }
.rail-nav.prev { left: -8px; }
.rail-nav.next { right: -8px; }
.rail-nav svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 2; stroke-linecap: round; }
@media (max-width: 700px) { .rail-nav { display: none; } }

/* Legacy tile (still used elsewhere) */
.tile-grid { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); }
.tile {
 position: relative;
 display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
 aspect-ratio: 1;
 padding: var(--s-3);
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: var(--r-md);
 text-align: center;
 transition: all var(--t) var(--ease-out);
 text-decoration: none;
 color: var(--ink);
 overflow: hidden;
}
.tile:hover { transform: translateY(-2px); border-color: var(--gold-400); box-shadow: var(--shadow-sm); }
.tile img { width: 80%; aspect-ratio: 1; object-fit: contain; margin-bottom: var(--s-3); }
.tile-label {
 font-weight: 700; font-size: .85rem;
 letter-spacing: .12em; text-transform: uppercase;
 color: var(--text);
}

/* ----------- DUTCHIE CAROUSEL STACK -----------
 Carousels share one continuous white block so the iframe's white
 background blends with the page. Each card needs ~600px to render
 image + title + brand + THC badge + price + Shop button + padding.
 We set a stable floor so cards never clip; if Dutchie's postMessage
 resize fires, it'll grow taller (handled in JS). */
.carousel-stack { background: var(--paper); padding: var(--s-5) 0 var(--s-5); }
.dutchie-carousel-section {
 padding: var(--s-7) 0;
 background: var(--paper);
}
/* When stacked inside .carousel-stack, collapse vertical spacing */
.carousel-stack .dutchie-carousel-section { padding: var(--s-2) 0; }
.carousel-stack .dutchie-carousel-section + .dutchie-carousel-section { padding-top: 0; }
.dutchie-carousel-section .container > .row { margin-bottom: var(--s-3); }
.carousel-stack .dutchie-carousel-section .container > .row { margin-bottom: var(--s-2); }
.dutchie-carousel-container {
 width: 100%;
 min-height: 540px;
 overflow: visible;
 position: relative;
 background: transparent;
}
.dutchie-carousel-container iframe {
 width: 100% !important;
 min-height: 540px !important;
 height: 540px;
 border: 0 !important;
 background: transparent !important;
 display: block;
}
@media (max-width: 1080px) {
 .dutchie-carousel-container, .dutchie-carousel-container iframe { min-height: 580px; height: 580px; }
}
@media (max-width: 700px) {
 /* On mobile Dutchie shows one card at a time and is much shorter, so we tighten
    the iframe floor to match the actual rendered card height and kill the dead space. */
 .dutchie-carousel-container, .dutchie-carousel-container iframe { min-height: 460px; height: 460px; }
 .carousel-stack { padding: var(--s-4) 0 var(--s-4); }
 .carousel-stack .dutchie-carousel-section { padding: var(--s-1) 0; }
 .dutchie-carousel-section { padding: var(--s-5) 0; }
 .dutchie-carousel-section .container > .row { margin-bottom: var(--s-2); }
 .carousel-stack .dutchie-carousel-section .container > .row { margin-bottom: var(--s-1); }
}

/* Compact variant, used by Specials carousel which has banner-style cards
 (text + Shop button, no product photos). Height-only override. */
.dutchie-carousel-section--compact .dutchie-carousel-container, .dutchie-carousel-section--compact .dutchie-carousel-container iframe {
 min-height: 300px !important;
 height: 300px !important;
}
@media (max-width: 700px) {
 .dutchie-carousel-section--compact .dutchie-carousel-container, .dutchie-carousel-section--compact .dutchie-carousel-container iframe {
 min-height: 240px !important;
 height: 240px !important;
 }
}

/* ----------- FORMS ----------- */
.form-row { display: grid; gap: var(--s-3); }
.form-row label { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-soft); }
.input, select, textarea {
 width: 100%;
 padding: 14px 16px;
 border: 1px solid var(--line);
 border-radius: var(--r);
 background: var(--paper);
 font: inherit; color: var(--text);
 transition: border-color var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out);
}
.input:focus, select:focus, textarea:focus {
 outline: none;
 border-color: var(--gold-400);
 box-shadow: 0 0 0 4px rgba(201,169,97,.15);
}
.input-group { display: flex; gap: var(--s-2); }
.input-group .input { flex: 1; }

/* ----------- ZONE CHECKER ----------- */
.zone-checker {
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: var(--r-xl);
 padding: var(--s-7);
 box-shadow: var(--shadow-sm);
}
.zone-result { margin-top: var(--s-4); padding: var(--s-4); border-radius: var(--r); display: none; }
.zone-result.show { display: block; }
.zone-result.success { background: #ECF7F4; color: #0F3D38; border: 1px solid #99CCC2; }
.zone-result.warning { background: #FBF6E4; color: #6B5526; border: 1px solid #E5D097; }
.zone-result.fail { background: #FAECEC; color: #8B2A2A; border: 1px solid #E5A8A8; }
.zone-result h4 { color: inherit; font-family: var(--font-body); font-size: 1.05rem; margin-bottom: 4px; }

/* ----------- LIST FEATURES ----------- */
.feature-list { list-style: none; padding: 0; display: grid; gap: var(--s-4); }
.feature-list li { display: grid; grid-template-columns: 32px 1fr; gap: var(--s-3); align-items: start; }
.feature-list .icon { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold-100); color: var(--gold-700); }
.feature-list strong { color: var(--ink); display: block; margin-bottom: 4px; }

/* ----------- MEDIA + IMAGE TREATMENTS ----------- */
.image-frame { border-radius: var(--r-lg); overflow: hidden; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame--gold { border: 1px solid var(--gold-300); padding: 6px; background: var(--gold-50); }
.image-mask { aspect-ratio: 4/5; }
.image-tall { aspect-ratio: 3/4; }
.image-wide { aspect-ratio: 16/9; }

/* ----------- BLOG ----------- */
.post-card { display: flex; flex-direction: column; gap: var(--s-3); text-decoration: none; }
.post-card .image-frame { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--green-700), var(--green-900)); }
.post-card h3 { color: var(--ink); transition: color var(--t) var(--ease-out); }
.post-card:hover h3 { color: var(--gold-600); }
.post-card .post-meta { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); }

/* ----------- TESTIMONIAL ----------- */
.quote {
 font-family: var(--font-display);
 font-size: 1.4rem;
 line-height: 1.4;
 color: var(--ink);
 font-style: italic;
}
.quote-attribution { display: flex; align-items: center; gap: var(--s-3); margin-top: var(--s-4); font-style: normal; }
.quote-attribution .stars { color: var(--gold-500); font-size: 1rem; letter-spacing: 2px; }
.quote-attribution .author { font-size: .9rem; font-family: var(--font-body); font-weight: 600; }

/* ----------- TABLE ----------- */
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
th { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }

/* ----------- FAQ ----------- */
.faq { display: grid; gap: var(--s-3); }
.faq details {
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: var(--r);
 padding: var(--s-4) var(--s-5);
 transition: border-color var(--t) var(--ease-out);
}
.faq details[open] { border-color: var(--gold-300); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); font-weight: 600; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--gold-600); transition: transform var(--t) var(--ease-out); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: var(--s-3) 0 0; color: var(--text-soft); }

/* ----------- HERO BANNER STRIP (for shop / specials promo) ---- */
.banner-strip {
 background: var(--gold-grad);
 color: var(--ink);
 padding: 10px var(--s-4);
 text-align: center;
 font-weight: 600;
 font-size: .88rem;
 letter-spacing: .08em;
 text-transform: uppercase;
}
.banner-strip a { color: var(--ink); border-bottom: 1px solid var(--ink); }

/* ----------- NEIGHBORHOOD GRID ----------- */
.neighborhood-card {
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: var(--r-lg);
 padding: var(--s-5);
 display: flex; flex-direction: column; gap: var(--s-2);
 text-decoration: none;
 color: var(--ink);
 transition: all var(--t) var(--ease-out);
 position: relative;
 overflow: hidden;
}
.neighborhood-card::before {
 content: '';
 position: absolute; top: 0; left: 0; right: 0; height: 3px;
 background: var(--gold-grad);
 transform: scaleX(0); transform-origin: left;
 transition: transform var(--t) var(--ease-out);
}
.neighborhood-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--gold-300); }
.neighborhood-card:hover::before { transform: scaleX(1); }
.neighborhood-card h3 { margin: 0; font-size: 1.4rem; color: var(--ink); }
.neighborhood-card .meta { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); }
.neighborhood-card .desc { color: var(--text-muted); font-size: .92rem; }
.neighborhood-card .arrow { margin-top: var(--s-3); color: var(--gold-600); font-weight: 600; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }

/* ----------- REWARDS / LOYALTY FORM -----------
 Two-column treatment for the Alpine IQ signup iframe.
 Form is tall (800px) and narrow (~500px) so it pairs naturally with
 benefit copy on the left. Stacks on mobile. */
.rewards-section {
 background: var(--primary-deep);
 color: var(--paper);
 position: relative;
 overflow: hidden;
}
.rewards-section::before {
 content: '';
 position: absolute; inset: 0;
 background:
 radial-gradient(700px 400px at 90% -10%, rgba(201,169,97,.18), transparent 60%),
 radial-gradient(500px 500px at -10% 110%, rgba(26,77,69,.6), transparent 60%);
 pointer-events: none;
}
.rewards-section .container { position: relative; z-index: 1; }
.rewards-section h2, .rewards-section h3 { color: var(--paper); }
.rewards-grid {
 display: grid;
 grid-template-columns: 1fr 520px;
 gap: var(--s-7);
 align-items: start;
}
@media (max-width: 980px) {
 .rewards-grid { grid-template-columns: 1fr; }
}
.rewards-copy { padding-top: var(--s-3); }
.rewards-copy .eyebrow { color: var(--gold-300); }
.rewards-copy .lede { color: rgba(255,255,255,.85); }
.rewards-copy ul {
 list-style: none; padding: 0; margin: var(--s-5) 0; display: grid; gap: var(--s-3);
}
.rewards-copy ul li {
 display: grid;
 grid-template-columns: 28px 1fr;
 gap: var(--s-3);
 align-items: start;
 font-size: 1rem;
 line-height: 1.5;
 color: rgba(255,255,255,.92);
}
.rewards-copy ul li::before {
 content: '✓';
 width: 28px; height: 28px;
 border-radius: 50%;
 background: var(--gold-grad);
 color: var(--ink);
 display: inline-flex;
 align-items: center; justify-content: center;
 font-weight: 700;
 font-size: .85rem;
}

/* Tier table on dark */
.rewards-tiers {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: var(--s-3);
 margin-top: var(--s-5);
}
@media (max-width: 700px) { .rewards-tiers { grid-template-columns: repeat(2, 1fr); } }
.rewards-tier {
 background: rgba(255,255,255,.05);
 border: 1px solid rgba(201,169,97,.25);
 border-radius: var(--r-md);
 padding: var(--s-4);
 text-align: center;
}
.rewards-tier .pts {
 font-family: var(--font-display);
 font-size: 1.5rem;
 color: var(--gold-300);
 letter-spacing: .04em;
}
.rewards-tier .reward {
 font-size: .82rem;
 color: rgba(255,255,255,.72);
 letter-spacing: .12em;
 text-transform: uppercase;
 margin-top: 4px;
}

/* The form card */
.rewards-form-card {
 background: var(--paper);
 border-radius: var(--r-lg);
 padding: var(--s-3);
 box-shadow: 0 24px 64px rgba(0,0,0,.36);
 border: 1px solid var(--gold-300);
 position: relative;
}
.rewards-form-card::before {
 content: 'JOIN FREE';
 position: absolute;
 top: -14px;
 left: 50%;
 transform: translateX(-50%);
 background: var(--gold-grad);
 color: var(--ink);
 font-weight: 700;
 font-size: .72rem;
 letter-spacing: .18em;
 padding: 6px 14px;
 border-radius: var(--r-pill);
 white-space: nowrap;
}
.rewards-form-card iframe {
 display: block;
 width: 100%;
 max-width: 500px;
 height: 800px;
 border: 0;
 border-radius: var(--r-md);
 margin: 0 auto;
 background: var(--paper);
}
.rewards-fineprint {
 color: rgba(255,255,255,.55);
 font-size: .82rem;
 margin-top: var(--s-4);
 line-height: 1.5;
}

/* ----------- DELIVERY PAGE COMPONENTS ----------- */

/* Hero stats card, sits on the right of the delivery hero */
.hero-stats {
 background: rgba(255,255,255,.06);
 border: 1px solid rgba(201,169,97,.35);
 border-radius: var(--r-lg);
 padding: var(--s-5);
 backdrop-filter: blur(6px);
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: var(--s-4);
}
.hero-stat .stat-num {
 font-family: var(--font-display);
 font-size: clamp(2rem, 4vw, 2.6rem);
 line-height: 1;
 background: var(--gold-grad);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent;
}
.hero-stat .stat-label {
 font-size: .76rem;
 letter-spacing: .14em;
 text-transform: uppercase;
 color: rgba(255,255,255,.7);
 margin-top: 6px;
 line-height: 1.3;
}

/* Three-up Tier Showcase Cards */
.tier-showcase {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: var(--s-5);
}
@media (max-width: 980px) { .tier-showcase { grid-template-columns: 1fr; } }
.tier-card {
 position: relative;
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: var(--r-lg);
 padding: var(--s-6);
 display: flex;
 flex-direction: column;
 gap: var(--s-3);
 transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out);
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier-card::before {
 content: '';
 position: absolute; top: 0; left: 0; right: 0;
 height: 4px;
 border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.tier-card[data-tier="70"]::before { background: var(--gold-grad); }
.tier-card[data-tier="100"]::before { background: linear-gradient(135deg, #1A4D45, #5A7A73, #1A4D45); }
.tier-card[data-tier="150"]::before { background: linear-gradient(135deg, #0F3D38, #08221E, #0F3D38); }
.tier-card .tier-eyebrow {
 font-size: .76rem;
 letter-spacing: .18em;
 text-transform: uppercase;
 font-weight: 700;
 color: var(--gold-600);
}
.tier-card[data-tier="100"] .tier-eyebrow { color: var(--green-500); }
.tier-card[data-tier="150"] .tier-eyebrow { color: var(--green-700); }
.tier-card .tier-amount {
 font-family: var(--font-display);
 font-size: clamp(3rem, 5vw, 4.4rem);
 line-height: 1;
 color: var(--ink);
 font-weight: 500;
}
.tier-card .tier-amount sup {
 font-size: .4em;
 vertical-align: top;
 margin-right: 4px;
 color: var(--gold-600);
}
.tier-card .tier-min { font-size: .9rem; color: var(--text-muted); margin-top: -8px; }
.tier-card .tier-meta {
 display: flex; gap: var(--s-3); flex-wrap: wrap;
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
 padding: var(--s-3) 0;
 margin-top: var(--s-2);
}
.tier-card .tier-meta-item { flex: 1; min-width: 100px; }
.tier-card .tier-meta-item .v { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }
.tier-card .tier-meta-item .l { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.tier-card .tier-desc { color: var(--text-soft); font-size: .95rem; }

/* Neighborhood pill grid */
.zone-band {
 display: grid;
 grid-template-columns: 1fr auto;
 align-items: end;
 gap: var(--s-4);
 margin: var(--s-7) 0 var(--s-4);
 padding-bottom: var(--s-3);
 border-bottom: 1px solid var(--line);
}
.zone-band .zone-title { display: flex; align-items: baseline; gap: var(--s-3); flex-wrap: wrap; }
.zone-band h3 { margin: 0; font-size: clamp(1.6rem, 2.5vw, 2rem); }
.zone-band .zone-count {
 font-size: .82rem;
 letter-spacing: .12em;
 text-transform: uppercase;
 color: var(--text-muted);
}
.zone-band .badge { white-space: nowrap; }
.zone-band-amount {
 font-family: var(--font-display);
 font-size: 1.6rem;
 color: var(--gold-600);
 font-weight: 500;
}

.zone-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
 gap: var(--s-3);
}
.nb-pill {
 display: flex; flex-direction: column; gap: 2px;
 padding: var(--s-3) var(--s-4);
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: var(--r-md);
 position: relative;
 transition: border-color var(--t) var(--ease-out), transform var(--t) var(--ease-out);
}
.nb-pill::before {
 content: '';
 position: absolute; top: 0; bottom: 0; left: 0;
 width: 3px;
 border-radius: var(--r-md) 0 0 var(--r-md);
}
.nb-pill[data-tier="70"]::before { background: var(--gold-grad); }
.nb-pill[data-tier="100"]::before { background: linear-gradient(180deg, #1A4D45, #5A7A73); }
.nb-pill[data-tier="150"]::before { background: linear-gradient(180deg, #0F3D38, #08221E); }
.nb-pill:hover { transform: translateY(-1px); border-color: var(--gold-300); }
.nb-pill .nb-name {
 font-family: var(--font-display);
 font-size: 1.15rem;
 color: var(--ink);
 line-height: 1.2;
 font-weight: 500;
}
.nb-pill .nb-zip {
 font-family: var(--font-mono);
 font-size: .78rem;
 color: var(--text-muted);
 letter-spacing: .04em;
}

/* ----------- ASIDES & PROMO ----------- */
.promo-band {
 background: var(--primary);
 color: var(--paper);
 border-radius: var(--r-xl);
 padding: var(--s-7);
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: var(--s-5);
 align-items: center;
}
.promo-band h2 { color: var(--paper); }
.promo-band p { color: rgba(255,255,255,.85); }
@media (max-width: 880px) { .promo-band { grid-template-columns: 1fr; } }

/* ----------- HELPERS ----------- */
.hide { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.divider-gold { width: 80px; height: 2px; background: var(--gold-grad); border: none; margin: var(--s-4) 0; }
.text-gold { color: var(--gold-600); }
.text-cream { color: var(--cream); }
.text-paper { color: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }

/* ----------- ANIMATIONS ----------- */
/* GPU-promoted reveal animation. translate3d puts each fade-up element on its own
   composite layer so the scroll-triggered animation never forces a layout/paint pass. */
.fade-up { opacity: 0; transform: translate3d(0, 16px, 0); transition: opacity .45s var(--ease-out), transform .45s var(--ease-out); will-change: opacity, transform; }
.fade-up.in { opacity: 1; transform: translate3d(0, 0, 0); }
.fade-up.in { will-change: auto; } /* drop will-change once the animation is done */

@media (prefers-reduced-motion: reduce) {
 *,*::before,*::after { animation-duration: 0s !important; transition-duration: 0s !important; }
}

/* ----------- SCROLLBAR ----------- */
::selection { background: var(--gold-300); color: var(--ink); }

/* ----------- BLOG PROSE & CARDS ----------- */
.prose { max-width: 70ch; margin-left: auto; margin-right: auto; }
.prose p { font-size: 1.075rem; line-height: 1.75; margin: 0 0 1.25em; color: var(--text); }
.prose h2 {
 font-family: var(--font-display);
 font-size: clamp(1.4rem, 2.6vw, 1.85rem);
 line-height: 1.2;
 letter-spacing: -.005em;
 color: var(--ink);
 margin: 2.4rem 0 .6rem;
 padding-top: .8rem;
 border-top: 1px solid var(--gold-200);
}
.prose h3 {
 font-family: var(--font-display);
 font-size: clamp(1.2rem, 2vw, 1.45rem);
 color: var(--ink);
 margin: 1.6rem 0 .5rem;
}
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.prose ul li, .prose ol li { margin-bottom: .55em; line-height: 1.6; font-size: 1.05rem; }
.prose strong { color: var(--ink); }
.prose a { color: var(--gold-700); text-decoration: underline; text-decoration-color: var(--gold-300); text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-600); text-decoration-color: var(--gold-500); }
.prose blockquote {
 border-left: 3px solid var(--gold-500);
 background: var(--cream);
 padding: 1.25em 1.5em;
 margin: 1.6em 0;
 font-family: var(--font-display);
 font-style: italic;
 font-size: 1.2rem;
 color: var(--ink);
}
.prose img { max-width: 100%; height: auto; border-radius: var(--r); margin: 1.5em 0; }
.prose hr { margin: 2.5em 0; border: 0; border-top: 1px solid var(--line); }
.prose .pullquote {
 font-family: var(--font-display);
 font-size: 1.6rem;
 line-height: 1.3;
 color: var(--forest-700);
 padding: 1em 0;
}

/* === ARTICLE / BLOG POST TEMPLATE === */
.article { background: var(--paper); }
.article-hero {
 background: linear-gradient(180deg, #0F3D38 0%, #122a26 100%);
 color: var(--paper);
 padding: 64px 0 56px;
 position: relative;
 overflow: hidden;
}
.article-hero::after {
 content: '';
 position: absolute;
 left: 50%; bottom: -1px;
 transform: translateX(-50%);
 width: 80px; height: 3px;
 background: var(--gold-500);
}
.article-hero .container { position: relative; z-index: 1; }
.article-meta-row {
 display: flex; align-items: center; justify-content: space-between;
 gap: 1rem; margin-bottom: 1.5rem;
 font-size: .8rem;
 letter-spacing: .12em;
 text-transform: uppercase;
}
.article-back {
 color: rgba(255,255,255,.7);
 text-decoration: none;
 transition: color var(--t) var(--ease-out);
}
.article-back:hover { color: var(--gold-300); }
.article-cat-badge {
 display: inline-flex;
 padding: .35rem .8rem;
 background: var(--gold-500);
 color: var(--ink);
 border-radius: 999px;
 font-weight: 600;
 letter-spacing: .14em;
 font-size: .68rem;
}
.article-hero h1 {
 color: var(--paper);
 font-family: var(--font-display);
 font-size: clamp(1.85rem, 4vw, 3rem);
 line-height: 1.15;
 margin: 0 0 1.25rem;
 max-width: 22ch;
}
.article-byline {
 display: flex; align-items: center; flex-wrap: wrap;
 gap: .55rem;
 color: rgba(255,255,255,.78);
 font-size: .92rem;
}
.article-byline .byline-dot {
 width: 28px; height: 28px;
 background: var(--gold-500);
 color: var(--ink);
 border-radius: 50%;
 display: inline-flex; align-items: center; justify-content: center;
 font-family: var(--font-display);
 font-weight: 700;
 font-size: .75rem;
}
.article-byline .byline-dot::before { content: "NE"; }
.article-byline .byline-sep { color: rgba(255,255,255,.4); }

.article-body { padding: 56px 0 32px; }
.article-prose { max-width: 70ch; margin-left: auto; margin-right: auto; }
/* Drop cap on the first paragraph */
.article-prose > p:first-of-type::first-letter {
 font-family: var(--font-display);
 font-size: 4.4rem;
 font-weight: 600;
 line-height: .9;
 float: left;
 margin: .12em .12em -.05em -.04em;
 color: var(--gold-700);
}
.article-prose > p:first-of-type {
 font-size: 1.15rem;
 line-height: 1.7;
 color: var(--ink);
}
.article-prose ul, .article-prose ol { padding-left: 0; list-style: none; }
.article-prose ul li, .article-prose ol li {
 position: relative;
 padding-left: 2rem;
 margin-bottom: .75em;
 line-height: 1.6;
 font-size: 1.05rem;
}
.article-prose ul li::before {
 content: '';
 position: absolute; left: 0; top: .55em;
 width: 14px; height: 2px;
 background: var(--gold-500);
}
.article-prose ol { counter-reset: ordl; }
.article-prose ol li { counter-increment: ordl; }
.article-prose ol li::before {
 content: counter(ordl);
 position: absolute; left: 0; top: 0;
 width: 22px; height: 22px;
 line-height: 22px;
 text-align: center;
 font-family: var(--font-display);
 font-size: .85rem;
 font-weight: 700;
 color: var(--ink);
 background: var(--gold-300);
 border-radius: 50%;
}

.tldr-card {
 background: var(--cream);
 border-left: 4px solid var(--gold-500);
 padding: 1.5rem 1.75rem;
 border-radius: 0 var(--r-lg) var(--r-lg) 0;
 max-width: 70ch;
 margin: 0 auto 2.5rem;
 box-shadow: 0 2px 12px rgba(15,61,56,.04);
}
.tldr-eyebrow {
 font-family: var(--font-body);
 font-size: .68rem;
 letter-spacing: .2em;
 text-transform: uppercase;
 color: var(--gold-700);
 margin: 0 0 .35rem;
}
.tldr-body {
 font-family: var(--font-display);
 font-size: 1.18rem;
 line-height: 1.5;
 color: var(--ink);
 margin: 0;
 font-style: italic;
}

.author-card {
 display: grid;
 grid-template-columns: auto 1fr;
 gap: 1.25rem;
 align-items: center;
 padding: 1.5rem 1.75rem;
 background: var(--cream);
 border-radius: var(--r-lg);
 border: 1px solid var(--gold-200);
 max-width: 70ch;
 margin: 0 auto;
}
.author-avatar {
 width: 56px; height: 56px;
 background: var(--ink);
 color: var(--gold-300);
 border-radius: 50%;
 display: inline-flex; align-items: center; justify-content: center;
 font-family: var(--font-display);
 font-weight: 700;
 font-size: 1.15rem;
 letter-spacing: .04em;
}

.blog-shop-section { padding: 56px 0 64px; }
.blog-shop-section h2 {
 text-align: center;
 font-size: clamp(1.6rem, 2.6vw, 2rem);
 margin: 0 0 1.5rem;
}
.blog-shop-section .eyebrow { text-align: center; }

@media (max-width: 760px) {
 .article-hero { padding: 48px 0 40px; }
 .article-hero h1 { font-size: clamp(1.6rem, 7vw, 2.1rem); }
 .article-meta-row { font-size: .68rem; }
 .article-prose > p:first-of-type::first-letter { font-size: 3rem; }
 .author-card { grid-template-columns: 1fr; text-align: center; }
 .author-avatar { margin: 0 auto; }
}

.blog-card {
 display: flex;
 flex-direction: column;
 gap: .5rem;
 padding: 1.5rem;
 background: var(--paper);
 border: 1px solid var(--line);
 border-radius: var(--r-lg);
 transition: transform var(--t) var(--ease-out), border-color var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out);
 text-decoration: none;
 color: inherit;
}
.blog-card:hover {
 transform: translateY(-3px);
 border-color: var(--gold-400);
 box-shadow: 0 12px 32px rgba(15,61,56,.08);
}
.blog-card .eyebrow { color: var(--gold-700); margin: 0; font-size: .68rem; }
.blog-card h3 { font-size: 1.25rem; line-height: 1.3; color: var(--ink); margin: .25rem 0 .5rem; }
.blog-card .muted { color: var(--text-soft); font-size: .92rem; line-height: 1.5; flex: 1; }
.blog-card .link-arrow { margin-top: .5rem; color: var(--gold-700); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.blog-grid { gap: 1.5rem; }
.section section--cream + .blog-card { background: var(--paper); }
@media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr; } }

/* ----------- REVIEWS SECTION ----------- */
.reviews-section { background: var(--paper); padding: var(--s-9) 0; }
.reviews-header { text-align: center; max-width: 60ch; margin: 0 auto 3rem; }
.reviews-header h2 { margin-top: .25rem; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.reviews-aggregate {
 display: inline-flex; align-items: baseline; gap: .55rem;
 margin-top: 1rem; padding: .55rem 1.1rem;
 background: var(--cream);
 border: 1px solid var(--gold-200);
 border-radius: 999px;
 font-family: var(--font-body); font-size: .92rem;
}
.reviews-stars { color: var(--gold-500); font-size: 1.1rem; letter-spacing: 1px; }
.reviews-rating-value { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); font-weight: 600; }
.reviews-rating-out-of { color: var(--text-soft); font-size: .85rem; }
.reviews-rating-source { color: var(--text-soft); font-size: .85rem; padding-left: .35rem; border-left: 1px solid var(--gold-200); margin-left: .35rem; }
.reviews-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 1.5rem;
 max-width: 1200px;
 margin: 0 auto;
}
@media (max-width: 980px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
 background: var(--cream);
 border: 1px solid var(--gold-200);
 border-radius: var(--r-lg);
 padding: 1.5rem 1.6rem 1.4rem;
 display: flex; flex-direction: column;
 gap: .75rem;
 margin: 0;
}
.review-stars { color: var(--gold-500); font-size: 1.1rem; letter-spacing: 1px; }
.review-body {
 font-family: var(--font-display);
 font-size: 1.1rem;
 line-height: 1.5;
 color: var(--ink);
 margin: 0;
 flex: 1;
}
.review-meta { display: flex; flex-direction: column; gap: 2px; padding-top: .5rem; border-top: 1px solid var(--line); }
.review-author { font-weight: 600; color: var(--ink); font-size: .95rem; }
.review-date { font-size: .8rem; color: var(--text-soft); letter-spacing: .04em; }

/* (cookie banner removed) */

/* ----------- BLOG LISTING (Lodestar-style search + filter + card grid) ----------- */
.blog-listing { padding: 3.5rem 0 5rem; }
.blog-toolbar {
 display: flex;
 flex-direction: column;
 gap: 1.25rem;
 margin-bottom: 1.25rem;
}
@media (min-width: 900px) {
 .blog-toolbar { flex-direction: row; align-items: center; gap: 1.5rem; }
}

.blog-search {
 flex: 0 0 340px;
 display: flex;
 align-items: center;
 gap: .55rem;
 padding: 0 .95rem;
 background: var(--paper);
 border: 1px solid var(--line);
 border-radius: 999px;
 transition: border-color var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out);
 min-height: 44px;
}
.blog-search:focus-within {
 border-color: var(--gold-400);
 box-shadow: 0 0 0 4px rgba(201,169,97,.14);
}
.blog-search svg { width: 18px; height: 18px; color: var(--text-soft); flex-shrink: 0; }
.blog-search input {
 flex: 1;
 border: 0;
 background: transparent;
 padding: .55rem 0;
 font: inherit;
 font-size: .95rem;
 color: var(--ink);
 outline: none;
 min-width: 0;
}
.blog-search input::placeholder { color: var(--text-soft); }
.blog-search-clear {
 background: none;
 border: 0;
 padding: 0 .25rem;
 color: var(--text-soft);
 font-size: 1.4rem;
 line-height: 1;
 cursor: pointer;
 flex-shrink: 0;
}
.blog-search-clear:hover { color: var(--ink); }

.blog-filters {
 display: flex;
 gap: .45rem;
 flex-wrap: wrap;
 flex: 1;
}
.blog-filter {
 padding: .45rem .9rem;
 background: transparent;
 border: 1px solid var(--line);
 border-radius: 999px;
 font: inherit;
 font-size: .78rem;
 letter-spacing: .04em;
 color: var(--text);
 cursor: pointer;
 transition: all var(--t) var(--ease-out);
 white-space: nowrap;
}
.blog-filter:hover { border-color: var(--gold-400); color: var(--ink); }
.blog-filter.is-active {
 background: var(--ink);
 border-color: var(--ink);
 color: var(--paper);
}
.blog-filter-count {
 display: inline-block;
 padding: 0 .35rem;
 margin-left: .25rem;
 font-size: .68rem;
 color: currentColor;
 opacity: .6;
}
.blog-filter.is-active .blog-filter-count { opacity: .75; }

.blog-count {
 font-size: .82rem;
 color: var(--text-soft);
 letter-spacing: .06em;
 text-transform: uppercase;
 margin: 0 0 1.5rem;
}
.blog-count [data-count] { color: var(--ink); font-weight: 600; }

.blog-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 1.5rem;
}
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card-lodestar {
 background: var(--paper);
 border: 1px solid var(--line);
 border-radius: var(--r-lg);
 transition: transform var(--t) var(--ease-out), border-color var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out);
}
.blog-card-lodestar:hover {
 transform: translateY(-3px);
 border-color: var(--gold-400);
 box-shadow: 0 12px 30px rgba(15,61,56,.08);
}
.blog-card-link {
 display: flex;
 flex-direction: column;
 gap: .55rem;
 padding: 1.5rem 1.5rem 1.35rem;
 height: 100%;
 text-decoration: none;
 color: inherit;
}
.blog-card-meta {
 display: flex;
 align-items: center;
 gap: .45rem;
 font-size: .68rem;
 letter-spacing: .14em;
 text-transform: uppercase;
 color: var(--gold-700);
}
.blog-card-sep { color: var(--line); }
.blog-card-time { color: var(--text-soft); font-weight: 400; }
.blog-card-title {
 font-family: var(--font-display);
 font-size: 1.4rem;
 line-height: 1.25;
 color: var(--ink);
 margin: .2rem 0 .45rem;
 letter-spacing: -.005em;
}
.blog-card-desc {
 font-size: .95rem;
 line-height: 1.55;
 color: var(--text-soft);
 margin: 0;
 flex: 1;
}
.blog-card-arrow {
 margin-top: .85rem;
 font-size: .82rem;
 letter-spacing: .08em;
 text-transform: uppercase;
 font-weight: 600;
 color: var(--gold-700);
 transition: transform var(--t) var(--ease-out), color var(--t) var(--ease-out);
}
.blog-card-lodestar:hover .blog-card-arrow { color: var(--gold-600); }

.blog-empty {
 text-align: center;
 padding: 3rem 1rem;
 color: var(--text-soft);
 font-size: 1rem;
}

/* Blog card hero image (blog index page) */
.blog-card-img {
 aspect-ratio: 16 / 9;
 overflow: hidden;
 background: var(--cream);
 border-top-left-radius: var(--r-lg);
 border-top-right-radius: var(--r-lg);
}
.blog-card-img img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 transition: transform var(--t) var(--ease-out);
}
.blog-card-lodestar:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-body {
 padding: 1.5rem 1.5rem 1.75rem;
}
/* On cards WITHOUT an image, restore the original padding since .blog-card-body inherits it */
.blog-card-lodestar > .blog-card-link > .blog-card-body:first-child { padding: 1.75rem; }

/* ==========================================================
   CATEGORY PILLS — Reserve-style "Jump straight to a category"
   Emitted via <!-- CATEGORY_PILLS --> marker on hub pages.
   ========================================================== */
.category-pills-section .eyebrow { color: var(--gold-700); }
.category-pills-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 1rem;
 margin-top: 1rem;
}
@media (max-width: 900px) { .category-pills-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .category-pills-grid { grid-template-columns: 1fr; } }

.cat-pill {
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 1rem 1.5rem;
 border-radius: 999px;
 background: transparent;
 border: 1.5px solid var(--gold-700);
 color: var(--ink);
 font-family: var(--font-body);
 font-size: .85rem;
 font-weight: 600;
 letter-spacing: .14em;
 text-transform: uppercase;
 text-decoration: none;
 text-align: center;
 transition: background var(--t) var(--ease-out), color var(--t) var(--ease-out), border-color var(--t) var(--ease-out);
}
.cat-pill:hover {
 background: var(--gold-100);
 border-color: var(--gold-500);
}
.cat-pill--primary {
 background: var(--ink);
 color: var(--paper);
 border-color: var(--ink);
}
.cat-pill--primary:hover {
 background: var(--gold-700);
 border-color: var(--gold-700);
 color: var(--paper);
}

/* ==========================================================
   CATEGORY TILES GRID — image-tile variant used on every hub
   page (delivery, faq, about, neighborhoods, etc.) via the
   <!-- CATEGORY_PILLS --> marker. Same visual as the homepage
   rail but laid out as a 3×2 desktop grid instead of scrolling.
   ========================================================== */
.category-tiles-section .eyebrow { color: var(--gold-700); }
.category-tiles-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 20px;
 margin-top: 1rem;
}
@media (max-width: 900px) { .category-tiles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .category-tiles-grid { grid-template-columns: 1fr; } }

/* Grid variant of the tile: full-width in its grid cell, no fixed width,
   still 1:1 aspect ratio so it stays square regardless of column width. */
.cat-tile.cat-tile--grid {
 width: 100%;
 aspect-ratio: 1 / 1;
}

/* ----------- DELIVERY PAGE (Reserve-style zone finder + zones + coverage) ----------- */
.delivery-zone-section { padding: 4rem 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.delivery-zip-finder {
 display: flex;
 gap: .5rem;
 flex-wrap: wrap;
 align-items: center;
 max-width: 520px;
 margin: 1.5rem 0 1rem;
 position: relative;
}
.delivery-zip-finder input {
 flex: 1;
 min-width: 220px;
 padding: 14px 18px;
 border: 1px solid var(--line);
 border-radius: 999px;
 background: var(--paper);
 font: inherit;
 font-size: 1rem;
 color: var(--ink);
 transition: border-color var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out);
}
.delivery-zip-finder input:focus {
 outline: none;
 border-color: var(--gold-400);
 box-shadow: 0 0 0 4px rgba(201,169,97,.14);
}
.delivery-zip-finder .btn {
 border-radius: 999px;
 padding: 14px 24px;
}
.delivery-zip-finder .zone-result {
 flex-basis: 100%;
 margin-top: .5rem;
 min-height: 1.2em;
}

.delivery-quick-pills {
 display: flex;
 gap: .45rem;
 flex-wrap: wrap;
 margin: 1rem 0 2rem;
}
.delivery-quick-pills a {
 display: inline-block;
 padding: .4rem .85rem;
 background: transparent;
 border: 1px solid var(--line);
 border-radius: 999px;
 font-size: .82rem;
 color: var(--text);
 text-decoration: none;
 transition: all var(--t) var(--ease-out);
}
.delivery-quick-pills a:hover { border-color: var(--gold-400); color: var(--ink); background: var(--cream); }

.delivery-features {
 display: flex;
 gap: 1.5rem 2.25rem;
 flex-wrap: wrap;
 padding: 1rem 0;
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
 margin: 2rem 0;
 font-size: .82rem;
 letter-spacing: .08em;
 text-transform: uppercase;
 color: var(--text);
}
.delivery-features span::before {
 content: "· ";
 color: var(--gold-500);
 font-weight: 700;
 margin-right: .3rem;
}
.delivery-features span:first-child::before { display: none; }

.delivery-zones {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 1.25rem;
 margin: 2rem 0 1.5rem;
}
@media (max-width: 900px) { .delivery-zones { grid-template-columns: 1fr; } }

.delivery-zone {
 background: var(--paper);
 border: 1px solid var(--line);
 border-radius: var(--r-lg);
 padding: 1.75rem 1.5rem 1.5rem;
 display: flex;
 flex-direction: column;
 gap: .55rem;
 transition: border-color var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out);
}
.delivery-zone:hover {
 border-color: var(--gold-400);
 box-shadow: 0 8px 22px rgba(15,61,56,.05);
}
.delivery-zone .zone-badge {
 display: inline-block;
 padding: .3rem .7rem;
 background: var(--ink);
 color: var(--gold-300);
 border-radius: 999px;
 font-size: .68rem;
 letter-spacing: .14em;
 text-transform: uppercase;
 font-weight: 600;
 margin: 0;
 width: fit-content;
}
.delivery-zone h3 {
 font-family: var(--font-display);
 font-size: 1.25rem;
 line-height: 1.2;
 color: var(--ink);
 margin: .35rem 0 .35rem;
}
.delivery-zone .zone-desc {
 font-size: .92rem;
 color: var(--text-soft);
 line-height: 1.5;
 margin: 0;
 flex: 1;
}
.delivery-zone .zone-min {
 font-family: var(--font-display);
 font-size: 1.6rem;
 color: var(--ink);
 margin: .5rem 0 0;
}
.delivery-zone .zone-min strong { color: var(--gold-700); font-weight: 600; }
.delivery-zone .zone-eta {
 font-size: .82rem;
 color: var(--text-soft);
 letter-spacing: .04em;
 margin: 0;
}

.delivery-hours {
 display: flex;
 gap: 1.5rem 2rem;
 flex-wrap: wrap;
 align-items: center;
 padding: 1rem 1.5rem;
 background: var(--cream);
 border: 1px solid var(--gold-200);
 border-radius: var(--r-lg);
 margin: 2rem 0;
 font-size: .9rem;
 color: var(--text);
}
.delivery-hours strong { color: var(--gold-700); letter-spacing: .1em; text-transform: uppercase; font-size: .74rem; }

.delivery-steps {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 1.5rem;
 margin-top: 2.5rem;
}
@media (max-width: 900px) { .delivery-steps { grid-template-columns: 1fr; } }
.delivery-step {
 background: var(--paper);
 border: 1px solid var(--line);
 border-radius: var(--r-lg);
 padding: 2rem 1.75rem;
 text-align: left;
}
.delivery-step-num {
 font-family: var(--font-display);
 font-size: 2.4rem;
 font-weight: 500;
 line-height: 1;
 color: var(--gold-500);
 margin-bottom: 1rem;
}
.delivery-step h3 { margin: 0 0 .5rem; font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.delivery-step p { margin: 0; color: var(--text-soft); line-height: 1.55; font-size: .95rem; }

.coverage-zone { margin: 2.5rem 0; }
.coverage-zone h3 {
 font-family: var(--font-display);
 font-size: 1.35rem;
 color: var(--ink);
 margin: 0 0 .5rem;
 display: flex;
 align-items: center;
 gap: .75rem;
 flex-wrap: wrap;
}
.coverage-zone h3 .zone-badge {
 display: inline-block;
 padding: .25rem .6rem;
 background: var(--ink);
 color: var(--gold-300);
 border-radius: 999px;
 font-size: .66rem;
 letter-spacing: .14em;
 text-transform: uppercase;
 font-weight: 600;
 font-family: var(--font-body);
}
.coverage-chips {
 display: flex;
 gap: .45rem;
 flex-wrap: wrap;
}
.coverage-chips a,
.coverage-chips span {
 display: inline-block;
 padding: .45rem .9rem;
 border: 1px solid var(--line);
 border-radius: 999px;
 font-size: .85rem;
 color: var(--text);
 text-decoration: none;
 transition: all var(--t) var(--ease-out);
}
.coverage-chips a:hover {
 border-color: var(--gold-400);
 color: var(--ink);
 background: var(--cream);
}
.coverage-chips span { opacity: .7; }

/* ================================================================
   HOME DELIVERY BLOCK (Reserve-style: map + horizontal zone cards)
   Prefixed .hd-* so it doesn't collide with /delivery/ page classes.
   ================================================================ */
.hd-delivery { padding: 5rem 0 6rem; }

.hd-intro {
 text-align: center;
 max-width: 720px;
 margin: 0 auto 3rem;
}
.hd-eyebrow {
 letter-spacing: .2em;
 color: var(--gold-700);
 font-size: .8rem;
 margin-bottom: 1.25rem;
}
.hd-title {
 font-family: var(--font-display);
 font-size: clamp(2.4rem, 5vw, 3.6rem);
 line-height: 1.05;
 letter-spacing: -.01em;
 color: var(--ink);
 margin: 0 auto 1.25rem;
 max-width: 14ch;
 text-transform: none;
}
.hd-lede {
 max-width: 60ch;
 margin: 0 auto 1.75rem;
 color: var(--text);
 font-size: 1.02rem;
 line-height: 1.6;
}

/* ZIP finder — center variant */
.hd-zip-finder {
 max-width: 520px;
 margin: 0 auto 1.25rem;
 justify-content: center;
}
.hd-zip-finder input {
 flex: 1;
 min-width: 220px;
 text-align: left;
}
.hd-zip-finder .zone-result {
 flex-basis: 100%;
 text-align: center;
}

/* Feature strip — inline, center-aligned, icon + label */
.hd-features {
 list-style: none;
 margin: 1.75rem auto 0;
 padding: 0;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 1rem 2rem;
 font-size: .78rem;
 letter-spacing: .12em;
 text-transform: uppercase;
 color: var(--text);
 font-weight: 500;
}
.hd-features li {
 display: inline-flex;
 align-items: center;
 gap: .55rem;
 white-space: nowrap;
}
.hd-feat-ic {
 width: 16px;
 height: 16px;
 color: var(--gold-600);
 flex-shrink: 0;
}

/* Map + zones split */
.hd-map-grid {
 display: grid;
 grid-template-columns: minmax(300px, 1fr) minmax(380px, 1.15fr);
 gap: 2.5rem;
 align-items: start;
 margin-top: 2.5rem;
}
@media (max-width: 900px) {
 .hd-map-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.hd-map {
 background: #FAF3DE;
 border: 1px solid var(--gold-200);
 border-radius: var(--r-lg);
 padding: 1.25rem;
 position: sticky;
 top: 96px;
}
@media (max-width: 900px) { .hd-map { position: static; } }
.hd-map svg {
 width: 100%;
 height: auto;
 display: block;
 max-width: 460px;
 margin: 0 auto;
}

/* Zone cards — horizontal variant with left color bar */
.hd-zones {
 display: flex;
 flex-direction: column;
 gap: .9rem;
}
.hd-zone-card {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 background: var(--paper);
 border: 1px solid var(--line);
 border-left: 5px solid var(--gold-500);
 border-radius: var(--r);
 padding: 1.1rem 1.35rem;
 transition: box-shadow var(--t) var(--ease-out), border-color var(--t) var(--ease-out);
}
.hd-zone-card:hover { box-shadow: 0 6px 18px rgba(15,61,56,.06); }
.hd-zone--1 { border-left-color: #0F3D38; }
.hd-zone--2 { border-left-color: #B8974A; }
.hd-zone--3 { border-left-color: #C9A961; }

.hd-zone-body { flex: 1; min-width: 0; }
.hd-zone-eyebrow {
 margin: 0 0 .3rem;
 font-size: .82rem;
 letter-spacing: .1em;
 text-transform: uppercase;
 color: var(--text);
 font-weight: 500;
}
.hd-zone-num {
 color: var(--gold-700);
 font-weight: 700;
 margin-right: .35rem;
}
.hd-zone--1 .hd-zone-num { color: #0F3D38; }
.hd-zone-towns {
 margin: 0 0 .5rem;
 color: var(--text-soft);
 font-size: .88rem;
 line-height: 1.45;
}
.hd-zone-min {
 margin: 0;
 color: var(--ink);
 font-size: .95rem;
 letter-spacing: .02em;
}
.hd-zone-min strong {
 font-family: var(--font-display);
 font-size: 1.15rem;
 color: var(--gold-700);
 font-weight: 600;
 margin-left: .15rem;
}

.hd-zone-pill {
 flex-shrink: 0;
 display: inline-block;
 padding: .35rem .85rem;
 background: var(--cream);
 border: 1px solid var(--gold-300);
 border-radius: 999px;
 font-size: .68rem;
 letter-spacing: .14em;
 text-transform: uppercase;
 color: var(--gold-700);
 font-weight: 600;
 white-space: nowrap;
}

@media (max-width: 560px) {
 .hd-zone-card { flex-direction: column; align-items: flex-start; }
 .hd-zone-pill { align-self: flex-start; }
}

.hd-hours-strip {
 margin-top: .5rem;
 padding: .85rem 1.25rem;
 background: transparent;
 border-top: 1px solid var(--line);
 display: flex;
 flex-wrap: wrap;
 gap: .5rem 1.5rem;
 align-items: center;
 font-size: .85rem;
 color: var(--text);
}
.hd-hours-label {
 letter-spacing: .16em;
 text-transform: uppercase;
 font-size: .7rem;
 color: var(--gold-700);
 font-weight: 600;
}

.hd-ctas {
 margin-top: 1rem;
 display: flex;
 gap: .85rem;
 flex-wrap: wrap;
}
.hd-ctas .btn { border-radius: 999px; }

/* ================================================================
   SHOP BY CATEGORY — horizontal scrolling rail with SHOP NOW CTAs
   ================================================================ */
.cat-rail-section { position: relative; }

.cat-rail-wrap {
 position: relative;
 margin: 0 -12px;
}
.cat-rail {
 display: flex;
 gap: 20px;
 overflow-x: auto;
 scroll-snap-type: x mandatory;
 -webkit-overflow-scrolling: touch;
 padding: 12px 12px 24px;
 scrollbar-width: none;
}
.cat-rail::-webkit-scrollbar { display: none; }

.cat-tile {
 flex: 0 0 auto;
 width: 280px;
 aspect-ratio: 1 / 1;
 position: relative;
 border-radius: 22px;
 overflow: hidden;
 background: var(--paper);
 box-shadow: 0 10px 28px rgba(15,61,56,.10), 0 2px 6px rgba(15,61,56,.06);
 text-decoration: none;
 scroll-snap-align: start;
 transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out);
 display: block;
}
@media (max-width: 640px) {
 .cat-tile { width: 240px; }
}
.cat-tile:hover {
 transform: translateY(-4px);
 box-shadow: 0 18px 40px rgba(15,61,56,.18), 0 4px 10px rgba(15,61,56,.10);
}

.cat-tile-img {
 position: absolute;
 inset: 0;
 overflow: hidden;
}
.cat-tile-img img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 transition: transform var(--t) var(--ease-out);
}
.cat-tile:hover .cat-tile-img img { transform: scale(1.03); }

.cat-tile-label {
 position: absolute;
 top: 22px;
 left: 0;
 right: 0;
 text-align: center;
 color: #FFFFFF;
 font-family: var(--font-body);
 font-size: 1.35rem;
 font-weight: 800;
 letter-spacing: .06em;
 text-transform: uppercase;
 text-shadow: 0 2px 8px rgba(0,0,0,.45);
 padding: 0 1rem;
 pointer-events: none;
}

.cat-tile-btn {
 position: absolute;
 bottom: 20px;
 left: 50%;
 transform: translateX(-50%);
 background: #0F0F0F;
 color: #FFFFFF;
 padding: 12px 32px;
 border-radius: 999px;
 font-family: var(--font-body);
 font-size: .78rem;
 letter-spacing: .16em;
 font-weight: 600;
 text-transform: uppercase;
 white-space: nowrap;
 box-shadow: 0 6px 18px rgba(0,0,0,.28);
 transition: background var(--t) var(--ease-out), transform var(--t) var(--ease-out);
}
.cat-tile:hover .cat-tile-btn {
 background: var(--gold-700);
 transform: translateX(-50%) translateY(-1px);
}

.cat-rail-nav {
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 z-index: 3;
 width: 44px;
 height: 44px;
 border-radius: 999px;
 background: var(--paper);
 border: 1px solid var(--line);
 color: var(--ink);
 display: flex;
 align-items: center;
 justify-content: center;
 cursor: pointer;
 box-shadow: 0 6px 16px rgba(15,61,56,.12);
 transition: background var(--t) var(--ease-out), border-color var(--t) var(--ease-out);
}
.cat-rail-nav:hover { background: var(--cream); border-color: var(--gold-400); }
.cat-rail-nav.prev { left: -8px; }
.cat-rail-nav.next { right: -8px; }
@media (max-width: 700px) { .cat-rail-nav { display: none; } }

/* ----------- PRESS LOGO WALL + ARTICLE CARDS ----------- */
.press-logo-wall {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 2rem;
 align-items: center;
 max-width: 960px;
 margin: 2.5rem auto 0;
}
.press-logo {
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 1.25rem 1rem;
 background: var(--paper);
 border: 1px solid var(--gold-200);
 border-radius: var(--r-lg);
 transition: transform var(--t) var(--ease-out), border-color var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out);
 min-height: 88px;
}
.press-logo img {
 max-width: 100%;
 max-height: 56px;
 width: auto;
 height: auto;
 filter: grayscale(60%);
 opacity: .85;
 transition: filter var(--t) var(--ease-out), opacity var(--t) var(--ease-out);
}
.press-logo:hover {
 transform: translateY(-2px);
 border-color: var(--gold-400);
 box-shadow: 0 8px 22px rgba(15,61,56,.08);
}
.press-logo:hover img { filter: none; opacity: 1; }
@media (max-width: 760px) {
 .press-logo-wall { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
 .press-logo { min-height: 76px; }
 .press-logo img { max-height: 44px; }
}

.press-articles { gap: 1.5rem; }
.press-card {
 display: block;
 padding: 1.75rem 1.75rem 1.5rem;
 background: var(--paper);
 border: 1px solid var(--line);
 border-radius: var(--r-lg);
 text-decoration: none;
 color: inherit;
 transition: transform var(--t) var(--ease-out), border-color var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out);
}
.press-card:hover {
 transform: translateY(-3px);
 border-color: var(--gold-400);
 box-shadow: 0 12px 30px rgba(15,61,56,.08);
}
.press-card .press-card-logo {
 height: 32px;
 display: flex;
 align-items: center;
 margin-bottom: 1rem;
}
.press-card .press-card-logo img {
 max-height: 32px;
 max-width: 140px;
 width: auto;
 height: auto;
 filter: grayscale(60%);
 opacity: .85;
}
.press-card:hover .press-card-logo img { filter: none; opacity: 1; }
.press-card .eyebrow { color: var(--gold-700); margin: 0 0 .35rem; font-size: .68rem; }
.press-card h3 { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.25; color: var(--ink); margin: .25rem 0 .65rem; }
.press-card .muted { font-size: .95rem; line-height: 1.55; }
.press-card .link-arrow { display: inline-block; margin-top: .85rem; color: var(--gold-700); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
