/* ============================================================
   FIRELEAF NY — Ultra-modern redesign
   Theme: red / black / grey
   ============================================================ */

:root {
  --black: #060607;
  --bg: #0a0a0c;
  --panel: #101014;
  --panel-2: #15161b;
  --grey: #1c1d23;
  --line: rgba(255, 255, 255, 0.08);
  --line-red: rgba(255, 46, 31, 0.35);
  --text: #f2f2f4;
  --muted: #a2a3ac;
  --dim: #6d6e78;
  --red: #ff2e1f;
  --red-soft: #ff5a3c;
  --red-deep: #8f1a10;
  --ember: #ff7a45;
  --cream: #f8ede3;
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--red); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #26272e; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-deep); }

.container { width: min(1240px, 92vw); margin: 0 auto; }

/* ============================================================
   AGE GATE
   ============================================================ */
.age-gate {
  position: fixed; inset: 0; z-index: 1000;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(255, 46, 31, 0.14), transparent 70%),
    radial-gradient(80% 60% at 50% 110%, rgba(255, 46, 31, 0.08), transparent 70%),
    #050506;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 1; transition: opacity 0.45s ease;
}
.age-gate.hidden { opacity: 0; pointer-events: none; }
.age-gate-card {
  width: min(520px, 100%);
  background: linear-gradient(180deg, rgba(22, 22, 27, 0.96), rgba(12, 12, 15, 0.98));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 0 80px rgba(255, 46, 31, 0.12), 0 30px 80px rgba(0, 0, 0, 0.7);
}
.age-gate-logo { width: 96px; margin: 0 auto 20px; }
.age-gate-kicker {
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--red-soft); margin-bottom: 10px;
}
.age-gate h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 38px); line-height: 1.1; margin-bottom: 10px;
}
.age-gate p { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
.age-gate-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.age-gate-deny {
  background: transparent; border: 1px solid var(--line);
  color: var(--muted); padding: 14px 28px; border-radius: 999px;
  font-size: 15px; transition: 0.25s;
}
.age-gate-deny:hover { border-color: var(--dim); color: var(--text); }
.age-gate-msg { margin-top: 18px; color: var(--red-soft); font-size: 14px; display: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 15px; letter-spacing: 0.02em;
  padding: 15px 32px; border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.btn-red {
  background: linear-gradient(135deg, #ff3b22, #d81f10);
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 46, 31, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 0 44px rgba(255, 46, 31, 0.55), inset 0 1px 0 rgba(255,255,255,0.25); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--line-red); box-shadow: 0 0 24px rgba(255, 46, 31, 0.2); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  position: relative; z-index: 60;
  background: linear-gradient(90deg, #7d130a, #d81f10 40%, #ff4a2b 60%, #7d130a);
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em;
  text-align: center; padding: 9px 16px; color: #fff;
}
.announce a { text-decoration: underline; text-underline-offset: 3px; }
.announce a:hover { color: #ffe0d5; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 7, 9, 0.92);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 1px 0 var(--line-red); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 0;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  color: var(--muted); padding: 9px 14px; border-radius: 999px;
  transition: 0.22s;
}
.nav-links a:hover { color: #fff; background: rgba(255, 46, 31, 0.1); }
.nav-links a.active { color: #fff; background: rgba(255, 46, 31, 0.16); box-shadow: inset 0 0 0 1px var(--line-red); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-burger {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 10px; width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 4vw 20px; background: rgba(7, 7, 9, 0.98);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a {
  font-family: var(--font-display); font-size: 16px; padding: 12px 16px;
  border-radius: 12px; color: var(--muted);
}
.nav-mobile a:hover, .nav-mobile a.active { color: #fff; background: rgba(255, 46, 31, 0.12); }
.nav-mobile.open { display: flex; }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta .btn { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(55% 45% at 72% 40%, rgba(255, 46, 31, 0.12), transparent 65%),
    radial-gradient(40% 35% at 20% 80%, rgba(255, 46, 31, 0.06), transparent 70%),
    var(--black);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 100%);
          mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 40px; align-items: center;
  padding: 60px 0 80px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--red-soft);
  border: 1px solid var(--line-red); border-radius: 999px;
  padding: 8px 18px; margin-bottom: 26px;
  background: rgba(255, 46, 31, 0.06);
}
.hero-kicker .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red), 0 0 20px var(--red);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 50% { opacity: 0.35; } }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.6vw, 84px);
  line-height: 1.02; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(100deg, #ff6a3d 0%, var(--red) 55%, #c11607 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub { color: var(--muted); font-size: clamp(16px, 2vw, 19px); max-width: 480px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat .num {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  background: linear-gradient(120deg, #fff, #ffb1a0);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat .lbl { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); }

/* --- Logo orb: smoke + rotating glow ring --- */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 480px; }
.logo-orb { position: relative; width: min(430px, 78vw); aspect-ratio: 1; }
.logo-orb .smoke-canvas {
  position: absolute; left: 50%; top: 50%;
  width: 175%; height: 175%;
  transform: translate(-50%, -54%);
  pointer-events: none; z-index: 4;
}
.orb-glow {
  position: absolute; inset: -12%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 46, 31, 0.22), rgba(255, 46, 31, 0.05) 55%, transparent 72%);
  border-radius: 50%;
  animation: orb-breathe 5.5s ease-in-out infinite;
}
@keyframes orb-breathe { 50% { opacity: 0.55; transform: scale(1.045); } }
.ring-static {
  position: absolute; inset: 4.5%;
  border-radius: 50%;
  border: 1px solid rgba(255, 46, 31, 0.28);
  box-shadow:
    0 0 18px rgba(255, 46, 31, 0.25),
    inset 0 0 24px rgba(255, 46, 31, 0.14);
}
.ring-rotor {
  position: absolute; inset: 2%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 46, 31, 0.05) 40deg,
    rgba(255, 70, 40, 0.85) 88deg,
    #ff2e1f 100deg,
    rgba(255, 70, 40, 0.85) 112deg,
    rgba(255, 46, 31, 0.05) 160deg,
    transparent 200deg,
    transparent 230deg,
    rgba(255, 46, 31, 0.35) 275deg,
    rgba(255, 46, 31, 0.05) 320deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 13px), #000 calc(100% - 11px), #000 calc(100% - 2px), transparent 100%);
          mask: radial-gradient(closest-side, transparent calc(100% - 13px), #000 calc(100% - 11px), #000 calc(100% - 2px), transparent 100%);
  animation: ring-spin 14s linear infinite;
}
.ring-rotor.rev {
  inset: -2.5%;
  opacity: 0.5;
  animation: ring-spin 26s linear infinite reverse;
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 7px), #000 calc(100% - 5px), #000 calc(100% - 1px), transparent 100%);
          mask: radial-gradient(closest-side, transparent calc(100% - 7px), #000 calc(100% - 5px), #000 calc(100% - 1px), transparent 100%);
}
@keyframes ring-spin { to { transform: rotate(360deg); } }
.orb-core {
  position: absolute; inset: 9%;
  border-radius: 50%;
  background:
    radial-gradient(60% 60% at 50% 38%, rgba(255, 46, 31, 0.12), transparent 70%),
    radial-gradient(closest-side, #17181d, #0b0b0e 78%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.75);
}
.orb-core img {
  width: 62%;
  position: relative; z-index: 3;
  animation: leaf-float 6s ease-in-out infinite;
}
@keyframes leaf-float { 50% { transform: translateY(-9px); } }
.orb-tag {
  position: absolute; z-index: 5;
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  background: rgba(10, 10, 13, 0.85);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px;
}
.orb-tag b { color: var(--red-soft); }
.orb-tag.t1 { top: 9%; right: -2%; animation: tag-bob 7s ease-in-out infinite; }
.orb-tag.t2 { bottom: 13%; left: -6%; animation: tag-bob 8s ease-in-out 1.2s infinite; }
@keyframes tag-bob { 50% { transform: translateY(-8px); } }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 30px; }
  .hero-kicker { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-stats { justify-content: center; }
  .hero-visual { min-height: 0; order: -1; margin-top: 10px; }
  .logo-orb { width: min(320px, 74vw); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.section { padding: 96px 0; }
.section-head { margin-bottom: 48px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--red-soft);
  margin-bottom: 14px;
}
.section-label::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08; font-weight: 700; letter-spacing: -0.015em;
}
.section-sub { color: var(--muted); max-width: 560px; margin-top: 14px; font-size: 16.5px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.section-head.center .section-label::before { display: none; }
.section-head.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

.bg-panel { background: linear-gradient(180deg, var(--bg), var(--black)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   DUTCHIE EMBEDS
   ============================================================ */
.dutchie-block {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 26px;
}
/* Dutchie's embed defaults the carousel iframe to 485px and then keeps it
   sized to content via setHeight messages. Floor at that default so a bogus
   tiny setHeight can't collapse the window; never force it taller. */
.dutchie-block iframe {
  width: 100% !important;
  min-height: 485px;
}
/* Specials carousel renders shorter content than the other two — pin its
   window at half height so the frame hugs the product cards. Desktop only:
   mobile cards stack taller, so the pin would clip them on phones. */
@media (min-width: 641px) {
  #dutchie--carousel-embed-e36a1fd1-eb1b-455c-9646-fcc49bc1daeb__iframe {
    height: 242px !important;
    min-height: 242px;
  }
}
.dutchie-block h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  padding: 6px 10px 16px; display: flex; align-items: center; gap: 12px;
}
.dutchie-block h3::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--line-red), transparent);
}
.menu-shell {
  background: #f7f7f7;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 700px;
}
.menu-note { text-align: center; color: var(--dim); font-size: 13px; margin-top: 16px; }

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.cat-card {
  position: relative;
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}
.cat-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 110%, rgba(255, 46, 31, 0.16), transparent 70%);
  opacity: 0; transition: opacity 0.35s;
}
.cat-card:hover { transform: translateY(-6px); border-color: var(--line-red); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55), 0 0 30px rgba(255, 46, 31, 0.14); }
.cat-card:hover::before { opacity: 1; }
.cat-card img {
  height: 120px; width: auto; max-width: 82%;
  margin: 0 auto 18px; object-fit: contain;
  position: relative; z-index: 1;
  transition: transform 0.35s;
}
.cat-card:hover img { transform: scale(1.07) translateY(-4px); }
.cat-card .cat-name {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  display: flex; align-items: center; justify-content: space-between;
}
.cat-card .cat-name span.arrow { color: var(--red-soft); transition: transform 0.3s; }
.cat-card:hover .cat-name span.arrow { transform: translateX(5px); }
.cat-card .cat-sub { position: relative; z-index: 1; font-size: 12.5px; color: var(--dim); letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 1020px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   DELIVERY STEPS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.step-card:hover { transform: translateY(-5px); border-color: var(--line-red); }
.step-num {
  font-family: var(--font-display); font-size: 64px; font-weight: 700; line-height: 1;
  background: linear-gradient(180deg, rgba(255, 46, 31, 0.9), rgba(255, 46, 31, 0.1));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.step-card h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 8px; }
.step-card .step-tag { color: var(--red-soft); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; font-weight: 600; }
.step-card p { color: var(--muted); font-size: 15px; }
.step-line {
  position: absolute; top: 0; left: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.step-card:hover .step-line { opacity: 1; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }

/* Delivery banner */
.delivery-banner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background:
    radial-gradient(70% 90% at 85% 20%, rgba(255, 46, 31, 0.12), transparent 60%),
    linear-gradient(160deg, var(--panel-2), var(--black));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 52px;
  overflow: hidden;
}
.delivery-banner img { width: 100%; max-width: 460px; margin: 0 auto; }
.delivery-banner h3 { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; line-height: 1.12; }
.delivery-banner p { color: var(--muted); margin-bottom: 26px; }
@media (max-width: 880px) { .delivery-banner { grid-template-columns: 1fr; padding: 36px 26px; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media .frame {
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-media::after {
  content: "";
  position: absolute; inset: -14px -14px auto auto; width: 60%; height: 60%;
  border: 1px solid var(--line-red); border-radius: 24px;
  z-index: -1;
}
.about-copy p { color: var(--muted); margin-bottom: 18px; font-size: 16.5px; }
.about-copy p b, .about-copy p strong { color: var(--text); }
@media (max-width: 940px) { .about-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ============================================================
   REWARDS
   ============================================================ */
.rewards-wrap {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(255, 46, 31, 0.13), transparent 65%),
    linear-gradient(180deg, var(--panel-2), var(--black));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 64px 56px;
  overflow: hidden; position: relative;
}
.rewards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 44px 0; }
.reward-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.reward-card:hover { transform: translateY(-5px); border-color: var(--line-red); background: rgba(255, 46, 31, 0.05); }
.reward-icon {
  width: 58px; height: 58px; margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(255, 46, 31, 0.22), rgba(255, 46, 31, 0.05));
  border: 1px solid var(--line-red);
  display: flex; align-items: center; justify-content: center;
}
.reward-icon img { width: 34px; height: 34px; object-fit: contain; }
.reward-card h4 { font-family: var(--font-display); font-size: 16.5px; margin-bottom: 6px; }
.reward-card p { color: var(--muted); font-size: 13.5px; }
.rewards-stats { display: flex; gap: 56px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.rewards-stats .num {
  font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 52px); font-weight: 700;
  background: linear-gradient(120deg, #fff 20%, var(--red-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.rewards-stats .lbl { color: var(--dim); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; text-align: center; }
@media (max-width: 1000px) { .rewards-grid { grid-template-columns: repeat(2, 1fr); } .rewards-wrap { padding: 44px 26px; } }
@media (max-width: 520px) { .rewards-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BRANDS MARQUEE
   ============================================================ */
.brands-marquee {
  overflow: hidden; position: relative;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 34px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 70px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.brands-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-track a { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.marquee-track img {
  height: 54px; width: auto; max-width: 150px; object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.25s, transform 0.25s;
}
.marquee-track a:hover img { opacity: 1; transform: scale(1.08); }

/* ============================================================
   STORE GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.gallery-grid .g-item {
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.gallery-grid .g-item img, .gallery-grid .g-item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-grid .g-item.wide { grid-column: span 2; }
.gallery-grid .g-item.tall { grid-row: span 2; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--line-red); }
.review-stars { color: var(--red-soft); letter-spacing: 3px; font-size: 15px; margin-bottom: 12px; }
.review-card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.review-who { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(140deg, var(--red-deep), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #fff;
}
.review-who .name { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; }
.review-who .src { font-size: 12px; color: var(--dim); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 22px; }
.visit-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px;
}
.visit-card h3 { font-family: var(--font-display); font-size: 28px; margin-bottom: 26px; }
.visit-row { display: flex; gap: 16px; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid var(--line); }
.visit-row:last-of-type { border-bottom: none; }
.visit-ic {
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 12px;
  background: rgba(255, 46, 31, 0.1); border: 1px solid var(--line-red);
  display: flex; align-items: center; justify-content: center;
  color: var(--red-soft); font-size: 17px;
}
.visit-row .k { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); }
.visit-row .v { font-size: 16px; font-weight: 500; }
.visit-row .v a:hover { color: var(--red-soft); }
.map-card {
  border-radius: 24px; overflow: hidden; border: 1px solid var(--line);
  min-height: 420px; position: relative;
}
.map-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
@media (max-width: 940px) { .visit-grid { grid-template-columns: 1fr; } .visit-card { padding: 30px 24px; } }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background:
    radial-gradient(50% 100% at 50% 100%, rgba(255, 46, 31, 0.14), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
  padding: 72px 0;
  text-align: center;
}
.newsletter h3 { font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 24px; }
.newsletter-form {
  display: flex; gap: 10px; justify-content: center;
  max-width: 480px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 15px 24px;
  color: var(--text); font-size: 15px; font-family: inherit;
  outline: none; transition: border-color 0.25s, box-shadow 0.25s;
}
.newsletter-form input:focus { border-color: var(--line-red); box-shadow: 0 0 20px rgba(255, 46, 31, 0.15); }
.newsletter-form input::placeholder { color: var(--dim); letter-spacing: 0.06em; }
.newsletter-msg { margin-top: 16px; font-size: 14px; color: var(--red-soft); min-height: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 64px 0 34px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 44px; margin-bottom: 44px;
}
.footer-brand img.leaf { width: 74px; margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 13px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--red-soft); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 14.5px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { color: var(--muted); font-size: 14.5px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: 0.25s;
}
.footer-social a:hover { border-color: var(--line-red); color: var(--red-soft); box-shadow: 0 0 18px rgba(255, 46, 31, 0.2); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-warning {
  border: 1px solid var(--line);
  border-left: 3px solid var(--red-deep);
  background: rgba(255, 46, 31, 0.03);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  color: var(--dim); font-size: 12.5px; line-height: 1.7;
  margin-bottom: 28px;
}
.footer-warning b { color: var(--muted); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  color: var(--dim); font-size: 13px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.footer-bottom .lic { letter-spacing: 0.06em; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   SUBPAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  padding: 96px 0 72px;
  background:
    radial-gradient(55% 70% at 50% 0%, rgba(255, 46, 31, 0.13), transparent 65%),
    var(--black);
  border-bottom: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}
.page-hero .hero-grid-bg { opacity: 0.8; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.06; font-weight: 700; letter-spacing: -0.02em;
  margin: 14px auto 16px;
  max-width: 800px;
}
.page-hero h1 .accent {
  background: linear-gradient(100deg, #ff6a3d, var(--red) 60%, #c11607);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto 30px; font-size: 17px; }

/* ============================================================
   EDUCATIONAL EXTRAS
   ============================================================ */
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.edu-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s, border-color 0.3s;
}
.edu-card:hover { transform: translateY(-4px); border-color: var(--line-red); }
.edu-card h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 10px; }
.edu-card p { color: var(--muted); font-size: 15px; }
@media (max-width: 860px) { .edu-grid { grid-template-columns: 1fr; } }

.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.guide-card:hover { transform: translateY(-6px); border-color: var(--line-red); box-shadow: 0 0 34px rgba(255, 46, 31, 0.12); }
.guide-card img {
  width: 96px; height: 96px; object-fit: contain; margin: 0 auto 20px;
  background: radial-gradient(closest-side, var(--cream) 82%, rgba(248, 237, 227, 0) 84%);
  border-radius: 50%; padding: 14px;
}
.guide-card h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; }
.guide-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.guide-link {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--red-soft);
}
.guide-link:hover { color: #fff; }
@media (max-width: 860px) { .guides-grid { grid-template-columns: 1fr; } }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: border-color 0.3s, background 0.3s;
}
.benefit-card:hover { border-color: var(--line-red); background: rgba(255, 46, 31, 0.04); }
.benefit-card h4 { font-family: var(--font-display); font-size: 16.5px; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.benefit-card h4::before { content: "◆"; color: var(--red); font-size: 10px; }
.benefit-card p { color: var(--muted); font-size: 14px; }
@media (max-width: 860px) { .benefit-grid { grid-template-columns: 1fr; } }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blog-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.blog-card:hover { transform: translateY(-5px); border-color: var(--line-red); }
.blog-card .thumb { height: 200px; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .thumb img { transform: scale(1.06); }
.blog-card .body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-card h3 { font-family: var(--font-display); font-size: 18px; line-height: 1.35; }
.blog-card p { color: var(--muted); font-size: 14px; flex: 1; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* Big statement strip */
.statement {
  text-align: center; padding: 80px 0;
}
.statement h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 54px); font-weight: 700; line-height: 1.15;
  max-width: 900px; margin: 0 auto;
}
.statement h2 .accent {
  background: linear-gradient(100deg, #ff6a3d, var(--red) 60%, #c11607);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ============================================================
   HOUSE PICKS + MESSAGE BOARD (dashboard-managed)
   ============================================================ */
.picks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pick-card {
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.pick-card:hover { transform: translateY(-5px); border-color: var(--line-red); box-shadow: 0 0 30px rgba(255, 46, 31, 0.12); }
.pick-card .pick-img {
  height: 130px; display: flex; align-items: center; justify-content: center;
}
.pick-card .pick-img img { max-height: 100%; max-width: 80%; object-fit: contain; }
.pick-card .pick-badge {
  align-self: flex-start;
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red-soft);
  background: rgba(255, 46, 31, 0.1);
  border: 1px solid var(--line-red);
  border-radius: 999px; padding: 4px 12px;
}
.pick-card h3 { font-family: var(--font-display); font-size: 18px; }
.pick-card .pick-cat { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); }
.pick-card p { color: var(--muted); font-size: 14px; flex: 1; }
.pick-card .pick-price {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--red-soft);
}
@media (max-width: 1020px) { .picks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .picks-grid { grid-template-columns: 1fr; } }

.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.board-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-left: 3px solid var(--red-deep);
  border-radius: var(--radius-sm);
  padding: 26px;
  transition: transform 0.3s, border-color 0.3s;
}
.board-card:hover { transform: translateY(-4px); border-left-color: var(--red); }
.board-card .board-date {
  font-family: var(--font-display); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--red-soft);
  margin-bottom: 10px;
}
.board-card h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 8px; }
.board-card p { color: var(--muted); font-size: 14.5px; white-space: pre-line; }
@media (max-width: 900px) { .board-grid { grid-template-columns: 1fr; } }

/* Utility */
.mt-30 { margin-top: 30px; }
.center { text-align: center; }

@media (max-width: 480px) {
  .hero-kicker { letter-spacing: 0.18em; font-size: 11px; padding: 7px 14px; }
  .page-hero h1 { font-size: clamp(30px, 9vw, 40px); }
}

/* Test mode (screenshot QA): fixed hero height instead of vh */
html.test-mode .hero { min-height: 860px; }
html.test-mode .hero .hero-inner { padding-top: 40px; }
