/* =========================================
   CYMELICRA MARKET — styles.css
   Enchanted Idyll × Urban Decay × Pop Punk
   Stencil shouts. Elegance anchors.
   ========================================= */

/* ── Custom Properties ── */
:root {
  --void:        #090d09;
  --ink:         #f4f1ea;
  --ink-dim:     rgba(244, 241, 234, 0.65);
  --ink-whisper: rgba(244, 241, 234, 0.32);
  --cap-red:     #cc2222;
  --amber-glow:  #ffaa00;
  --amber-dim:   rgba(255, 170, 0, 0.45);
  --moss-glow:   #4aff6a;
  --bruise:      #1a0f2e;
  --muted:       rgba(244, 241, 234, 0.38);
  --forest-deep: #0b1c0b;

  --nav-h: 68px;
  --t:     0.25s ease;
  --t-slow: 0.45s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Kill scrollbar everywhere — html, body, and universal fallback */
html, body {
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE/old Edge */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none;               /* Chrome/Safari/Edge */
  width: 0;
  height: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

/* Hard clip wrapper — absorbs cultivator rotation overflow */
.clip-wrap {
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}
a     { color: inherit; text-decoration: none; }

body {
  background: var(--void);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* =========================================
   LAYER 1 — Fixed forest background
   Bright bioluminescent image. Overlay tames
   it into warm atmospheric depth.
   ========================================= */
/* Hidden SVG filter definitions */
.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.forest-bg {
  position: fixed;
  inset: -3%;
  z-index: 0;
  background-color: var(--forest-deep);
  background-image:
    url('assets/forest-bg.jpg'),
    linear-gradient(160deg,
      #071409 0%, #0b2210 30%, #08190d 60%, #0b1c0b 100%
    );
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  /* CSS breathing — the forest inhales and exhales.
     GPU-composited via will-change for smooth scrolling. */
  will-change: transform;
  animation: forestBreathe 14s ease-in-out infinite;
}

@keyframes forestBreathe {
  0%, 100% {
    transform: scale(1.0) translate(0, 0);
  }
  33% {
    transform: scale(1.025) translate(-0.3%, 0.2%);
  }
  66% {
    transform: scale(1.015) translate(0.2%, -0.2%);
  }
}

/* Firefly canvas — sits between forest and overlay */
.firefly-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .forest-bg {
    animation: none;
    filter: none;
    inset: 0;
  }
  .firefly-canvas { display: none; }
}

/* =========================================
   LAYER 2a — Warm dark overlay
   Tinted toward deep forest-green amber so
   the mushroom glow bleeds through the glass
   rather than getting murdered by cold black.
   ========================================= */
.overlay-dark {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 90% 75% at 50% 42%,
    rgba(4, 14, 5, 0.70) 0%,
    rgba(3, 11, 4, 0.80) 55%,
    rgba(2, 8, 3, 0.90) 100%
  );
  pointer-events: none;
}

/* =========================================
   LAYER 2b — Film grain
   JS replaces this with a canvas noise tile.
   ========================================= */
.overlay-grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(255,255,255,0.6) 0px, rgba(255,255,255,0.6) 1px,
      transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0.3) 0px, rgba(255,255,255,0.3) 1px,
      transparent 1px, transparent 3px);
  background-size: 3px 3px;
  pointer-events: none;
}

/* =========================================
   LAYER 2c — Vignette + ambient glow
   Warm amber pooling at the bottom edges
   (mushroom light rising from the floor).
   ========================================= */
.overlay-vignette {
  position: fixed;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse 70% 35% at 50% 0%,
      rgba(0, 0, 0, 0.4) 0%, transparent 65%);
  box-shadow: inset 0 0 160px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

/* ── Content sits above all layers ── */
nav, main, footer { position: relative; z-index: 10; }

/* =========================================
   NAVIGATION
   ========================================= */
/* City skyline — positioned to start right below the nav,
   blends down into the forest. More distinct, seamless fade. */
.nav-banner {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  height: clamp(300px, 50vh, 550px);
  z-index: 5;
  background-image: url('assets/city-banner.jpg');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  filter: invert(1) contrast(1.1) brightness(0.65);
  mix-blend-mode: screen;
  opacity: 0.65;
  /* Fade: solid at top (meets graffiti edge), long dissolve into forest */
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 85%);
  mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 85%);
  pointer-events: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: var(--nav-h);
  /* Graffiti background — crop to the colorful center strip,
     skip the black bars above/below in the source image */
  background:
    url('assets/graffiti-banner.png') center 42% / 120% auto no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: opacity var(--t);
}

.nav--scrolled {
  opacity: 0.95;
}

/* Brand + tagline stacked */
.nav-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  color: #ffcba4;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: color var(--t);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.nav-brand:hover { color: #ffe0c2; }

/* "The copy precedes the original" — tiny, Cormorant italic */
.nav-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255, 203, 164, 0.45);
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Nav links — peach, visible on graffiti */
.nav-links {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 203, 164, 0.75);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  transition: color var(--t);
}

.nav-links a:hover { color: #ffe0c2; }

.nav-prefix {
  color: rgba(204, 34, 34, 0.7);
  margin-right: 1px;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(6rem, 14vh, 12rem) clamp(1.5rem, 6vw, 5rem)
           clamp(4rem, 10vh, 8rem);
  overflow-x: hidden;
  overflow-y: visible;
}

/* Ambient glow removed */
.hero::before { display: none; }

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

/* Eyebrow row — [ACTIVE] stays but whispers */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  color: var(--moss-glow);
  letter-spacing: 0.2em;
  opacity: 0.75;
  animation: statusBlink 4s ease-in-out infinite;
}

@keyframes statusBlink {
  0%, 88%, 100% { opacity: 0.75; }
  93%           { opacity: 0.25; }
}

.hero-status-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── Title — Nabla color font does the 3D work ── */
.hero-title {
  display: flex;
  flex-direction: column;
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  text-shadow:
    0 4px 8px rgba(0, 0, 0, 0.6),
    0 10px 24px rgba(0, 0, 0, 0.35);
}

.hero-line1 {
  font-size: clamp(4rem, 10vw, 9rem);
  color: var(--ink);
  letter-spacing: 0.04em;
}

.hero-line2 {
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  color: var(--cap-red);
  margin-left: clamp(1.5rem, 5vw, 6rem);
  letter-spacing: 0.04em;
}

/* ── Description — Cormorant italic, comfortable ── */
.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(244, 241, 234, 0.72);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

/* ── CTA button ── */
.btn-primary {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cap-red);
  padding: 1rem 2.4rem;
  border: 2px solid var(--cap-red);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
}

/* Amber shimmer sweep */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 0%, rgba(255,170,0,0.25) 45%,
    rgba(255,170,0,0.25) 55%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  background: transparent;
  color: var(--cap-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(204, 34, 34, 0.2);
}

.btn-primary:hover::after { transform: translateX(130%); }

/* ── Pop-art mascot ── */
.hero-mascot {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: clamp(260px, 38vw, 560px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.mascot-img {
  width: 100%;
  aspect-ratio: 1 / 1; /* prevent reflow when canvas swaps src */
  mix-blend-mode: screen;
  filter: saturate(1.2) contrast(1.25);
}

/* Hero bottom accent — removed */
.hero-border { display: none; }

/* =========================================
   SECTION HEADER SYSTEM
   Eyebrow whispers in mono; title shouts
   in Playfair Display italic.
   ========================================= */
.section-header {
  margin-bottom: clamp(3rem, 5vh, 4.5rem);
}

/* The barely-there mono label */
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 170, 0, 0.4);
  margin-bottom: 0.65rem;
}

.eyebrow-sep {
  color: rgba(255, 170, 0, 0.2);
  margin: 0 0.4em;
}

/* Stencil spray-painted section heading */
.section-title {
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: var(--ink);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Section header rule — removed */
.section-header::after { display: none; }

/* =========================================
   INVENTORY GRID
   ========================================= */
.inventory {
  padding: clamp(5rem, 10vh, 9rem) clamp(1.5rem, 6vw, 5rem);
}

/* Grid */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}

/* Cards — geometric wireframe, transparent.
   Angular clip-path cuts the corners for a
   hexagonal/crystal shard feel that matches
   Nabla's isometric geometry. Nearly transparent
   bg lets the forest breathe through. */
.card {
  display: block;
  position: relative;
  padding: 2.75rem 2.25rem 3rem;
  background: rgba(9, 16, 9, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  cursor: pointer;
  /* Geometric clip — angled top-right and bottom-left corners */
  clip-path: polygon(
    0 0,
    calc(100% - 28px) 0,
    100% 28px,
    100% 100%,
    28px 100%,
    0 calc(100% - 28px)
  );
  transition:
    background var(--t),
    transform var(--t),
    filter var(--t);
}

/* Border via inset shadow since clip-path kills CSS borders */
.card::before {
  content: '';
  position: absolute;
  inset: 1px;
  clip-path: polygon(
    0 0,
    calc(100% - 27px) 0,
    100% 27px,
    100% 100%,
    27px 100%,
    0 calc(100% - 27px)
  );
  z-index: -1;
}

/* Card accents — removed */
.card-accent { display: none; }
.card::after  { display: none; }

.card:hover {
  background: rgba(9, 16, 9, 0.5);
  transform: translateY(-6px);
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.4));
}

/* Desktop stagger */
.card--offset { margin-top: 44px; }

/* Card title — Nabla 3D isometric */
.card-title {
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--ink);
  margin-bottom: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--t);
}

.card:hover .card-title { color: var(--amber-glow); }

/* Card body — Cormorant italic */
.card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.78;
  color: rgba(244, 241, 234, 0.6);
  margin-bottom: 2rem;
}

/* Listing count — tiny mono, accent-coloured */
.card-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.card-count { color: var(--ink-whisper); }

/* Entrance animation states */
.card-enter          { opacity: 0; transform: translateY(28px); }
.card-enter.in-view  { opacity: 1; transform: translateY(0);    }

/* =========================================
   CULTIVATOR ZONE
   Red block, rotated 0.8deg. The one
   deliberately-raw punk section. It
   still gets Playfair for its headline so
   the elegance carries through.
   ========================================= */
.cultivator {
  position: relative;
  margin: clamp(2rem, 5vh, 4rem) 0;
  background: var(--cap-red);
  transform: rotate(0.8deg);
  overflow: hidden;
  box-shadow:
    inset 0 8px 60px rgba(0, 0, 0, 0.4),
    inset 0 -8px 60px rgba(0, 0, 0, 0.3),
    0 28px 80px rgba(0, 0, 0, 0.55);
}

/* Diagonal line texture — concrete / stencil */
.cultivator::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg,
    rgba(0,0,0,0.08) 0px, rgba(0,0,0,0.08) 1px,
    transparent 1px, transparent 10px);
  pointer-events: none;
}

/* Spray-paint bleed at top edge */
.cultivator::after {
  content: '';
  position: absolute;
  top: -8px; left: 0; right: 0;
  height: 16px;
  background:
    radial-gradient(ellipse 55% 100% at 20% 0%, rgba(155,18,18,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 35% 90% at 65% 0%, rgba(155,18,18,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 20% 80% at 87% 0%, rgba(155,18,18,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.cultivator-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(4.5rem, 10vh, 7.5rem) clamp(2rem, 6vw, 5rem);
}

/* Small Cormorant italic label above the headline */
.cultivator-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: rgba(244, 241, 234, 0.55);
  margin-bottom: 0.5rem;
  text-transform: lowercase;
}

.cultivator-headline {
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 8rem);
  color: var(--ink);
  line-height: 0.95;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 3px 6px 30px rgba(0, 0, 0, 0.5);
}

.cultivator-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(244, 241, 234, 0.82);
  margin-bottom: 3.25rem;
  line-height: 1.7;
}

/* Vendor button — stencil on red, inverts on hover */
.btn-vendor {
  display: inline-block;
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border: 2px solid rgba(244, 241, 234, 0.7);
  padding: 1.1rem 3rem;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}

.btn-vendor:hover {
  background: var(--ink);
  color: var(--cap-red);
  border-color: var(--ink);
  transform: scale(1.025);
}

/* Easter egg figure */
.cultivator-easter {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 0;
  width: clamp(110px, 15vw, 220px);
  opacity: 0.15;
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 0.5s ease;
  filter: saturate(1.5);
}

.cultivator:hover .cultivator-easter { opacity: 0.28; }

/* =========================================
   PROTOCOL / HOW IT WORKS
   ========================================= */
.protocol {
  padding: clamp(5rem, 10vh, 9rem) clamp(1.5rem, 6vw, 5rem);
}

.protocol .section-header { margin-bottom: clamp(3.5rem, 6vh, 5rem); }

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
}

.step { position: relative; }

/* Large stencil numeral — faded red watermark */
.step-num {
  display: block;
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--cap-red);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  user-select: none;
}

.step-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.step-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(244, 241, 234, 0.6);
  line-height: 1.85;
}

/* Entrance states */
.step-enter         { opacity: 0; transform: translateY(20px); }
.step-enter.in-view { opacity: 1; transform: translateY(0);    }

/* =========================================
   COMPLIANCE
   Legally present. Visually a rumour.
   ========================================= */
.compliance {
  padding: 2rem clamp(2rem, 10vw, 10rem) 3.5rem;
  text-align: center;
}

.compliance p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.9;
  color: rgba(244, 241, 234, 0.2);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  padding: 2.5rem clamp(1.5rem, 6vw, 5rem) 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(5, 10, 5, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-brand,
.footer-powered {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(244, 241, 234, 0.3);
  line-height: 2;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-right a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(244, 241, 234, 0.3);
  transition: color var(--t);
}

.footer-right a:hover { color: var(--amber-glow); }

.footer-sep {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: rgba(244, 241, 234, 0.15);
}

.footer-bottom p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(244, 241, 234, 0.2);
  line-height: 2;
}

/* "The map is not the territory." — Cormorant italic, slightly more visible */
.footer-motto {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 13px !important;
  letter-spacing: 0.03em !important;
  color: rgba(244, 241, 234, 0.32) !important;
  margin-top: 0.35rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
  .inventory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card--offset { margin-top: 0; }
  .protocol-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 640px) {
  /* Nav */
  .nav-tagline { display: none; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 8px; }

  /* Hero — bottom-anchor on mobile */
  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding: 5rem 1.5rem 4rem;
  }

  .hero-mascot {
    right: -10%;
    bottom: auto;
    top: var(--nav-h);
    width: 65vw;
    opacity: 0.22;
  }

  /* Grids */
  .inventory-grid { grid-template-columns: 1fr; }
  .card--offset   { margin-top: 0; }
  .protocol-grid  { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Cultivator: lose rotation on mobile */
  .cultivator { transform: none; }
  .cultivator-easter { display: none; }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 1.25rem;
  }
  .footer-right { justify-content: flex-start; }
}

@media (max-width: 400px) {
  .hero-mascot { display: none; }
}
