/* ============================================================
   ECO SATHI NEPAL — v2 "Botanical Editorial"
   Mobile-first (300px+). Single family: DM Sans (100–1000).
   Dark botanical hero · quick-shop cards · typographic band ·
   bento impact · involvement rows · arch gallery.
   ============================================================ */

:root {
  /* palette */
  --forest: #16281e;
  --forest-2: #1e3527;
  --pine: #2c5540;
  --leaf: #4a7c59;
  --sage: #a8c3ae;
  --sage-mist: #e2ecdb;
  --sage-soft: #d6e4cf;
  --cream: #f6f1e5;
  --paper: #fdfbf4;
  --sand: #ece3d0;
  --clay: #c05a2a;
  --clay-deep: #9e4a20;
  --amber: #dfa244;
  --ink: #1b2419;
  --ink-soft: #55614f;
  --line: #ddd5c2;
  --line-dark: rgba(246, 241, 229, 0.16);

  --font: "DM Sans", "Segoe UI", system-ui, sans-serif;

  --r-sm: 0.75rem;
  --r-md: 1.15rem;
  --r-lg: 1.75rem;
  --r-xl: 2.5rem;
  --shadow-soft: 0 18px 38px -22px rgba(22, 40, 30, 0.35);
  --shadow-lift: 0 30px 60px -28px rgba(22, 40, 30, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 80rem;
  --gutter: clamp(1rem, 4vw, 2rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--forest); color: var(--cream); }

/* ---------- type ---------- */
h1, h2, h3 { line-height: 1.02; font-weight: 700; letter-spacing: -0.035em; color: var(--forest); text-wrap: balance; }
.h-hero    { font-size: clamp(2.1rem, 8.5vw, 4.6rem); font-weight: 800; }
.h-section { font-size: clamp(1.7rem, 6vw, 3.1rem);  font-weight: 800; }
.h-card    { font-size: clamp(1.15rem, 3vw, 1.5rem); }
.h-hero em, .h-section em { font-style: normal; color: var(--clay); }

/* highlighter accent (inspo 2) */
.mark {
  font-style: normal;
  background: linear-gradient(0deg, var(--sage-soft) 0 42%, transparent 42%);
  padding-inline: 0.08em;
  border-radius: 2px;
}
.on-dark .mark, .mark.on-dark { background: linear-gradient(0deg, rgba(223, 162, 68, 0.4) 0 42%, transparent 42%); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--leaf);
}
.eyebrow::before { content: ""; width: 1.6rem; height: 2px; background: var(--clay); border-radius: 2px; }
.eyebrow svg { width: 1em; height: 1em; flex: none; }
.lede { font-size: clamp(1rem, 2.6vw, 1.2rem); color: var(--ink-soft); max-width: 40rem; }

/* ---------- layout ---------- */
.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section-head { display: grid; gap: 0.9rem; max-width: 46rem; margin-bottom: clamp(2rem, 6vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; justify-items: center; }
.section-head.split { max-width: none; gap: 1.2rem; }

/* ---------- pills & buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(4px) rotate(-45deg); }
.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 14px 26px -14px rgba(192, 90, 42, 0.7); }
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-2px); }
.btn-forest { background: var(--forest); color: var(--cream); }
.btn-forest:hover { background: var(--pine); transform: translateY(-2px); }
.btn-cream { background: var(--cream); color: var(--forest); }
.btn-cream:hover { background: #fff; transform: translateY(-2px); }
.btn-ghost { box-shadow: inset 0 0 0 2px var(--forest); color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: var(--cream); }
.btn-ghost.on-dark { box-shadow: inset 0 0 0 2px var(--line-dark); color: var(--cream); }
.btn-ghost.on-dark:hover { background: var(--cream); color: var(--forest); box-shadow: none; }

/* circular icon button (inspo 2) */
.orb {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  transition: transform 0.25s var(--ease), background 0.25s;
  flex: none;
}
.orb svg { width: 20px; height: 20px; transition: transform 0.25s var(--ease); }
.orb:hover { background: var(--clay); }
.orb:hover svg { transform: rotate(-45deg); }

/* ---------- announce bar ---------- */
.announce {
  background: var(--forest);
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 0.55rem var(--gutter);
}
.announce a { color: var(--amber); font-weight: 800; white-space: nowrap; }
.announce a:hover { text-decoration: underline; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--line), 0 14px 30px -24px rgba(22, 40, 30, 0.45); }
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; min-width: 0; }
.brand img { width: 44px; height: 44px; object-fit: contain; flex: none; }
.brand-name { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--forest); line-height: 1; }
.brand-name small {
  display: block;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 0.28rem;
}
.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.nav-cta .btn { display: none; }

.nav-toggle {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* --- mobile drawer (base) --- */
.nav-drawer {
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 90;
  background: var(--forest);
  color: var(--cream);
  padding: 8.5rem var(--gutter) 3rem;
  overflow-y: auto;
  transform: translateY(-102%);
  transition: transform 0.5s var(--ease);
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer > ul { display: grid; gap: 0.2rem; max-width: 30rem; margin-inline: auto; }
.nav-drawer a, .nav-drawer .sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.85rem 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 1px solid var(--line-dark);
  color: var(--cream);
}
.nav-drawer a[aria-current="page"] { color: var(--amber); }
.nav-drawer .sub-toggle svg { width: 1rem; height: 1rem; transition: transform 0.3s var(--ease); }
.nav-drawer .sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-drawer .sub-list { display: none; padding: 0.4rem 0 0.6rem 1rem; }
.nav-drawer .sub-list.open { display: grid; gap: 0.1rem; }
.nav-drawer .sub-list a { font-size: 1rem; font-weight: 600; color: var(--sage); border-bottom: none; padding-block: 0.5rem; }
.nav-drawer .drawer-cta { margin-top: 2rem; display: grid; gap: 0.8rem; max-width: 30rem; margin-inline: auto; }

/* --- desktop nav --- */
.nav-desktop { display: none; }

@media (min-width: 1024px) {
  .nav-toggle, .nav-drawer { display: none; }
  .nav-cta .btn { display: inline-flex; }
  .nav-desktop { display: flex; align-items: center; gap: 0.15rem; }
  .nav-desktop > li { position: relative; }
  .nav-desktop > li > a, .nav-desktop > li > button {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--ink-soft);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }
  .nav-desktop > li > a:hover, .nav-desktop > li > button:hover { color: var(--forest); background: var(--sage-mist); }
  .nav-desktop > li > a[aria-current="page"] { color: var(--cream); background: var(--forest); }
  .nav-desktop svg.caret { width: 0.8rem; height: 0.8rem; transition: transform 0.25s; }
  .nav-desktop li:hover svg.caret, .nav-desktop li:focus-within svg.caret { transform: rotate(180deg); }
  .dropdown {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 50%;
    translate: -50% 8px;
    min-width: 15rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 0.5rem;
    box-shadow: var(--shadow-lift);
    display: grid;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), translate 0.25s var(--ease), visibility 0.25s;
  }
  .nav-desktop li:hover .dropdown, .nav-desktop li:focus-within .dropdown { opacity: 1; visibility: visible; translate: -50% 0; }
  .dropdown a {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.6rem 0.9rem;
    border-radius: 0.6rem;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink);
  }
  .dropdown a small { color: var(--ink-soft); font-size: 0.75rem; font-weight: 700; }
  .dropdown a:hover { background: var(--sage-mist); color: var(--forest); }
  .dropdown .dd-all { border-top: 1px dashed var(--line); margin-top: 0.3rem; color: var(--clay); font-weight: 800; }
}

/* ============================================================
   HERO — dark botanical (inspo 1)
   ============================================================ */
.hero {
  background: var(--forest);
  color: var(--cream);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  overflow: clip;
  position: relative;
}
.hero-inner {
  display: grid;
  gap: 0;
  grid-template-rows: auto auto;
}
.hero-copy {
  padding: clamp(2.5rem, 8vw, 5.5rem) 0 clamp(2rem, 6vw, 4rem);
  display: grid;
  gap: 1.4rem;
  justify-items: start;
}
.hero-copy h1 { color: var(--cream); }
.hero-copy .lede { color: var(--sage); }
.hero-ticks { display: grid; gap: 0.55rem; font-size: 0.92rem; font-weight: 600; color: var(--sage); }
.hero-ticks li { display: flex; align-items: center; gap: 0.6rem; }
.hero-ticks svg { width: 1rem; height: 1rem; color: var(--amber); flex: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero-stage {
  position: relative;
  min-height: min(88vw, 30rem);
  border-radius: var(--r-lg) var(--r-lg) var(--r-xl) var(--r-xl);
  overflow: hidden;
  margin-bottom: calc(-1 * var(--r-xl));
}
.hero-stage > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-stage::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22, 40, 30, 0.35) 0%, transparent 30%);
}
/* floating stat chip (top of hero image) */
.stat-chip {
  position: absolute;
  z-index: 2;
  left: 0.9rem;
  top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: min(72%, 15rem);
  background: rgba(22, 40, 30, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(246, 241, 229, 0.2);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.5rem 1rem 0.5rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
}
.stat-chip b { font-size: 1.05rem; font-weight: 800; color: var(--amber); white-space: nowrap; }
.hero-trust { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 700; color: var(--sage); }
.hero-trust .stars svg { width: 0.9rem; height: 0.9rem; }
.hero-leaf {
  position: absolute;
  width: clamp(16rem, 40vw, 30rem);
  left: -6rem;
  bottom: -4rem;
  color: rgba(168, 195, 174, 0.09);
  pointer-events: none;
}

/* floating sample card (inspo 1) */
.sample-card {
  position: absolute;
  z-index: 2;
  right: 0.9rem;
  bottom: 1.1rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  max-width: min(78%, 17rem);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-sm);
  padding: 0.6rem;
  box-shadow: var(--shadow-lift);
}
.sample-card img { width: 54px; height: 54px; border-radius: 0.5rem; object-fit: cover; flex: none; }
.sample-card b { display: block; font-size: 0.82rem; line-height: 1.25; }
.sample-card small { color: var(--clay); font-weight: 800; font-size: 0.78rem; }
.sample-card .orb { width: 38px; height: 38px; margin-left: auto; }
.sample-card .orb svg { width: 16px; height: 16px; }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.05fr 1fr; grid-template-rows: none; align-items: stretch; gap: clamp(2rem, 4vw, 4rem); }
  .hero-copy { padding-block: clamp(4rem, 9vw, 7.5rem); }
  .hero-stage { min-height: 100%; margin-bottom: 0; border-radius: 0; margin-right: calc(-1 * var(--gutter) - (100vw - min(var(--container), 100vw - 2 * var(--gutter))) / 2); }
  .hero-stage::after { background: linear-gradient(90deg, var(--forest) 0%, transparent 22%); }
  .sample-card { right: clamp(1.5rem, 4vw, 3.5rem); bottom: 3rem; }
}

/* ============================================================
   CATEGORY SCROLLER
   ============================================================ */
.cat-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(9.5rem, 1fr);
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 0.6rem;
  scrollbar-width: none;
}
.cat-rail::-webkit-scrollbar { display: none; }
.cat-card {
  scroll-snap-align: start;
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px 999px var(--r-md) var(--r-md);
  padding: 1.5rem 0.8rem 1.1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: var(--sage); }
.cat-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid var(--sage-mist); transition: transform 0.35s var(--ease); }
.cat-card:hover img { transform: scale(1.1) rotate(-4deg); }
.cat-card b { font-size: 0.85rem; line-height: 1.25; color: var(--forest); }
.cat-card span { font-size: 0.72rem; font-weight: 700; color: var(--ink-soft); }

/* ============================================================
   PRODUCT CARDS (inspo 1: stars + quick view + shop pill)
   ============================================================ */
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.prod-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.prod-media { position: relative; aspect-ratio: 1; overflow: hidden; background: #fff; }
.prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.prod-card:hover .prod-media img { transform: scale(1.06); }
.prod-tag {
  position: absolute;
  top: 0.6rem; left: 0.6rem;
  background: rgba(22, 40, 30, 0.85);
  color: var(--cream);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.prod-badge {
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  background: var(--amber);
  color: var(--forest);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.quick {
  position: absolute;
  left: 50%; bottom: 0.7rem;
  translate: -50% 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--forest);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s, opacity 0.25s, translate 0.3s var(--ease);
}
.quick svg { width: 0.85rem; height: 0.85rem; }
.quick:hover { background: var(--clay); }
@media (hover: hover) and (min-width: 768px) {
  .quick { opacity: 0; translate: -50% 8px; }
  .prod-card:hover .quick, .prod-card:focus-within .quick { opacity: 1; translate: -50% 0; }
}
.prod-body { display: grid; gap: 0.45rem; padding: 0.85rem 0.9rem 1rem; align-content: start; }
.stars { display: inline-flex; gap: 0.14rem; color: var(--amber); }
.stars svg { width: 0.8rem; height: 0.8rem; }
.prod-body h3 { font-size: 0.88rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; color: var(--ink); }
.prod-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: 0.15rem; }
.prod-price { font-weight: 800; font-size: 0.98rem; color: var(--clay); font-variant-numeric: tabular-nums; white-space: nowrap; }
.shop-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.shop-pill svg { width: 0.75rem; height: 0.75rem; }
.shop-pill:hover { background: var(--forest); color: var(--cream); }

@media (min-width: 640px) { .prod-grid { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; } .prod-body h3 { font-size: 0.95rem; } }
@media (min-width: 1024px) { .prod-grid { grid-template-columns: repeat(4, 1fr); gap: 1.3rem; } }

/* ============================================================
   FEATURE SPLIT (inspo 1 bottom: qty + order)
   ============================================================ */
.feature-split {
  display: grid;
  gap: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feature-media { position: relative; aspect-ratio: 5/4; background: var(--sand); }
.feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-heart {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--paper);
  border-radius: 50%;
  color: var(--clay);
  box-shadow: var(--shadow-soft);
}
.feature-heart svg { width: 20px; height: 20px; }
.feature-body { padding: 0 1.2rem 1.6rem; display: grid; gap: 1rem; align-content: center; justify-items: start; }
.feature-body .h-section { font-size: clamp(1.6rem, 5vw, 2.6rem); }
.feature-price { display: flex; align-items: baseline; gap: 0.7rem; }
.feature-price b { font-size: 1.6rem; font-weight: 800; color: var(--forest); }
.feature-price .stars svg { width: 0.95rem; height: 0.95rem; }
.qty-row { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream);
}
.qty button { width: 46px; height: 46px; display: grid; place-items: center; font-size: 1.2rem; font-weight: 700; color: var(--forest); transition: background 0.2s; }
.qty button:hover { background: var(--sage-mist); }
.qty output { min-width: 2.4rem; text-align: center; font-weight: 800; font-variant-numeric: tabular-nums; }
@media (min-width: 900px) {
  .feature-split { grid-template-columns: 1.05fr 1fr; gap: 0; }
  .feature-media { aspect-ratio: auto; min-height: 26rem; }
  .feature-body { padding: clamp(2rem, 4vw, 3.5rem); }
}

/* ============================================================
   TYPOGRAPHIC BAND (inspo 2 "GREEN CAMPAIGN")
   ============================================================ */
.type-band { padding-block: clamp(2.5rem, 7vw, 5.5rem); overflow: clip; }
.type-band-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 2.5vw, 1.6rem);
  font-size: clamp(2.6rem, 13vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--forest);
  white-space: nowrap;
}
.type-band-row .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--forest);
}
.type-band-orb {
  width: clamp(3.2rem, 11vw, 7.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  border: 3px solid var(--forest);
  animation: spin-slow 30s linear infinite;
}
.type-band-orb img { width: 100%; height: 100%; object-fit: cover; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.type-band p {
  text-align: center;
  margin-top: 1.1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   IMPACT BENTO (inspo 2 hero)
   ============================================================ */
.bento-section { background: var(--sage-mist); border-radius: var(--r-xl); }
.bento {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
}
.bento-cell {
  border-radius: var(--r-md);
  padding: 1.2rem;
  display: grid;
  gap: 0.4rem;
  align-content: end;
  min-height: 8.5rem;
  position: relative;
  overflow: hidden;
}
.bento-stat { background: var(--paper); border: 1px solid rgba(22, 40, 30, 0.08); }
.bento-stat b { font-size: clamp(1.9rem, 6vw, 3rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--forest); }
.bento-stat b sup { font-size: 0.5em; color: var(--clay); }
.bento-stat span { font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); line-height: 1.4; }
.bento-img { padding: 0; min-height: 10rem; }
.bento-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.bento-img:hover img { transform: scale(1.05); }
.bento-img figcaption {
  position: absolute;
  left: 0.7rem; right: 0.7rem; bottom: 0.7rem;
  background: rgba(253, 251, 244, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 0.6rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--forest);
}
.bento-cta { background: var(--forest); color: var(--cream); align-content: center; justify-items: start; gap: 0.8rem; }
.bento-cta p { font-weight: 700; font-size: 1.02rem; line-height: 1.35; color: var(--cream); }
.bento-cta .orb { background: var(--amber); color: var(--forest); }
@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .bento-cell { min-height: 11rem; }
  .bento-img.wide { grid-column: span 2; }
}

/* ============================================================
   INVOLVEMENT ROWS (inspo 2 "Get involved")
   ============================================================ */
.involve-list { display: grid; gap: 0.7rem; }
.involve-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 0.7rem 0.65rem 1.4rem;
  font-weight: 700;
  font-size: clamp(0.95rem, 2.8vw, 1.25rem);
  color: var(--forest);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.involve-row .num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--clay);
  flex: none;
}
.involve-row .lbl { flex: 1; min-width: 0; }
.involve-row small { display: none; font-weight: 600; color: var(--ink-soft); }
.involve-row .orb { margin-left: auto; }
.involve-row:hover { transform: translateX(6px); border-color: var(--sage); }
.involve-row.hot { background: var(--sage-soft); border-color: transparent; }
@media (min-width: 768px) {
  .involve-row { padding: 0.85rem 0.85rem 0.85rem 1.8rem; }
  .involve-row small { display: block; font-size: 0.85rem; }
}

/* ============================================================
   ARCH GALLERY (inspo 2 bottom)
   ============================================================ */
.arch-gallery { position: relative; text-align: center; }
.arch-mask {
  position: relative;
  border-radius: 999px 999px var(--r-lg) var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/4.4;
  max-width: 34rem;
  margin-inline: auto;
  box-shadow: var(--shadow-lift);
}
.arch-mask img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.arch-badge {
  position: absolute;
  left: 50%; bottom: 1.4rem;
  translate: -50% 0;
  width: clamp(5.5rem, 18vw, 7rem);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--clay);
  color: var(--cream);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
  padding: 0.6rem;
  box-shadow: var(--shadow-lift);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.arch-badge:hover { transform: scale(1.07) rotate(-6deg); background: var(--forest); }
.arch-side {
  display: none;
  position: absolute;
  width: clamp(8rem, 16vw, 13rem);
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.arch-side img { width: 100%; height: 100%; object-fit: cover; }
.arch-side.l { left: 2%; bottom: 8%; rotate: -6deg; }
.arch-side.r { right: 2%; top: 14%; rotate: 5deg; }
@media (min-width: 1024px) { .arch-side { display: block; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(19rem, 84vw);
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.8rem;
  scrollbar-width: thin;
  scrollbar-color: var(--sage) transparent;
}
.testi-card {
  position: relative;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem 1.4rem 1.4rem;
  display: grid;
  gap: 0.9rem;
  align-content: start;
  overflow: hidden;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: -1.4rem; right: 0.4rem;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: var(--sage-mist);
  pointer-events: none;
}
.testi-card.dark { background: var(--forest); border-color: var(--forest); }
.testi-card.dark blockquote { color: var(--sage); }
.testi-card.dark figcaption { color: var(--cream); }
.testi-card.dark::before { color: rgba(246, 241, 229, 0.08); }
.testi-who { display: flex; align-items: center; gap: 0.8rem; }
.avatar {
  width: 44px; height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--forest);
  font-weight: 800;
  font-size: 0.95rem;
}
.testi-card.dark .avatar { background: var(--amber); }
.testi-card blockquote { font-size: 0.95rem; color: var(--ink-soft); }
.testi-card figcaption { font-weight: 800; color: var(--forest); font-size: 0.95rem; }
.testi-card figcaption small { display: block; font-weight: 700; color: var(--clay); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.15rem; }

/* ============================================================
   JOURNAL / EVENTS CARDS
   ============================================================ */
.journal-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.journal-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.journal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.journal-media { aspect-ratio: 16/10; overflow: hidden; }
.journal-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.journal-card:hover .journal-media img { transform: scale(1.05); }
.journal-body { padding: 1.2rem 1.3rem 1.4rem; display: grid; gap: 0.6rem; align-content: start; }
.journal-body time { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); }
.journal-body h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.35; }
.journal-link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 800; font-size: 0.85rem; color: var(--forest); }
.journal-link svg { width: 0.9rem; height: 0.9rem; transition: transform 0.25s var(--ease); }
.journal-card:hover .journal-link svg { transform: translateX(4px) rotate(-45deg); }
@media (min-width: 640px) { .journal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .journal-grid { grid-template-columns: repeat(3, 1fr); gap: 1.3rem; } }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--forest);
  color: var(--cream);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  padding-block: clamp(3rem, 8vw, 5.5rem);
  position: relative;
  overflow: clip;
}
.page-hero h1 { color: var(--cream); }
.page-hero .lede { color: var(--sage); }
.page-hero .section-head { margin-bottom: 0; }
.page-hero::after {
  content: "";
  position: absolute;
  width: 26rem; height: 26rem;
  top: -12rem; right: -8rem;
  background: radial-gradient(closest-side, rgba(223, 162, 68, 0.18), transparent 70%);
  pointer-events: none;
}

/* ---------- shop filter bar ---------- */
.filter-bar {
  position: sticky;
  top: 67px;
  z-index: 50;
  background: rgba(246, 241, 229, 0.94);
  backdrop-filter: blur(12px);
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.filter-rail { display: flex; gap: 0.5rem; overflow-x: auto; scrollbar-width: none; }
.filter-rail::-webkit-scrollbar { display: none; }
.filter-btn {
  flex: none;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--sage); color: var(--forest); }
.filter-btn.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.prod-count { font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 1.2rem; }
.prod-card.hidden { display: none; }

/* ---------- modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 26, 20, 0.6);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  width: min(54rem, 100%);
  max-height: min(90vh, 44rem);
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden auto;
  display: grid;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s var(--ease);
  box-shadow: var(--shadow-lift);
}
.modal-backdrop.open .modal { transform: none; }
.modal-media { background: #fff; aspect-ratio: 16/10; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 1.5rem; display: grid; gap: 0.9rem; align-content: start; }
.modal-body .prod-tag { position: static; justify-self: start; }
.modal-body h3 { font-size: 1.35rem; letter-spacing: -0.02em; }
.modal-body .price { font-size: 1.4rem; font-weight: 800; color: var(--clay); }
.modal-body .price small { font-size: 0.6em; color: var(--ink-soft); font-weight: 600; }
.modal-body p { color: var(--ink-soft); font-size: 0.93rem; }
.modal-actions { display: grid; gap: 0.7rem; }
.modal-close {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cream);
  color: var(--forest);
  box-shadow: var(--shadow-soft);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.modal-close:hover { background: var(--clay); color: #fff; transform: rotate(90deg); }
.modal-close svg { width: 20px; height: 20px; }
@media (min-width: 768px) {
  .modal { grid-template-columns: 1fr 1fr; overflow: hidden; }
  .modal-media { aspect-ratio: auto; height: 100%; }
  .modal-body { padding: 2.2rem; overflow-y: auto; }
  .modal-actions { grid-template-columns: auto auto; justify-content: start; }
}

/* ---------- story split / values ---------- */
.story-grid { display: grid; gap: 2rem; align-items: center; }
.story-arch { border-radius: 999px 999px var(--r-lg) var(--r-lg); overflow: hidden; aspect-ratio: 4/4.6; box-shadow: var(--shadow-lift); max-width: 26rem; margin-inline: auto; }
.story-arch img { width: 100%; height: 100%; object-fit: cover; }
.story-stage { position: relative; }
.story-quote {
  margin: 1rem auto 0;
  max-width: 22rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-soft);
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--forest);
}
.story-quote cite { display: block; margin-top: 0.7rem; font-style: normal; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); }
.story-copy { display: grid; gap: 1rem; }
.story-copy p { color: var(--ink-soft); }
.value-list { display: grid; gap: 0.9rem; }
.value-list li { display: flex; gap: 0.8rem; align-items: flex-start; font-weight: 700; }
.value-list svg { width: 1.3rem; height: 1.3rem; flex: none; color: var(--clay); margin-top: 0.15rem; }
.value-list small { display: block; font-weight: 500; color: var(--ink-soft); }
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 5vw, 5rem); }
  .story-quote { position: absolute; bottom: -1.5rem; right: -0.5rem; margin: 0; max-width: 17rem; font-size: 0.95rem; }
}

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.team-card { display: grid; gap: 0.8rem; justify-items: center; text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 999px 999px var(--r-md) var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--sand);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team-card:hover .team-photo { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card b { color: var(--forest); font-size: 0.95rem; line-height: 1.25; }
.team-card span { display: block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); margin-top: 0.2rem; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 1.3rem; } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- workshops ---------- */
.workshop-list { display: grid; gap: 1.2rem; }
.workshop-card {
  display: grid;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.workshop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.workshop-media { aspect-ratio: 16/10; }
.workshop-media img { width: 100%; height: 100%; object-fit: cover; }
.workshop-body { padding: 1.4rem; display: grid; gap: 0.8rem; align-content: center; justify-items: start; }
.workshop-body h3 { font-size: 1.3rem; letter-spacing: -0.02em; }
.workshop-body p { color: var(--ink-soft); font-size: 0.95rem; }
@media (min-width: 900px) {
  .workshop-card { grid-template-columns: 0.85fr 1.15fr; }
  .workshop-media { aspect-ratio: auto; min-height: 17rem; }
  .workshop-card:nth-child(even) { grid-template-columns: 1.15fr 0.85fr; }
  .workshop-card:nth-child(even) .workshop-media { order: 2; }
  .workshop-body { padding: clamp(1.6rem, 3vw, 2.8rem); }
}

/* ---------- visit band ---------- */
.visit {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--forest);
  color: var(--cream);
  display: grid;
}
.visit-copy { padding: clamp(1.8rem, 5vw, 4rem); display: grid; gap: 1rem; align-content: center; justify-items: start; }
.visit-copy h2 { color: var(--cream); }
.visit-copy .eyebrow { color: var(--sage); }
.visit-copy p { color: var(--sage); max-width: 30rem; }
.visit-media { position: relative; min-height: 14rem; }
.visit-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.visit-info { display: grid; gap: 0.5rem; font-size: 0.92rem; }
.visit-info li { display: flex; align-items: center; gap: 0.65rem; color: var(--sage); }
.visit-info svg { width: 1.05rem; height: 1.05rem; color: var(--amber); flex: none; }
.visit-info a:hover { color: var(--amber); }
@media (min-width: 900px) {
  .visit { grid-template-columns: 1.1fr 0.9fr; }
  .visit-media { min-height: 22rem; }
  .visit-media::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--forest) 0%, transparent 35%); z-index: 1; }
}

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 1.8rem; align-items: start; }
.contact-card { display: grid; gap: 1.3rem; background: var(--forest); color: var(--cream); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.6rem); }
.contact-card h3 { color: var(--cream); font-size: 1.4rem; }
.contact-line { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-line svg { width: 1.2rem; height: 1.2rem; color: var(--amber); flex: none; margin-top: 0.2rem; }
.contact-line b { display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); }
.contact-line a:hover { color: var(--amber); }
.contact-form { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.8rem; font-weight: 800; color: var(--forest); }
.field input, .field textarea {
  font: inherit;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--leaf); box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.15); }
.field textarea { resize: vertical; min-height: 8rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 4vw, 4rem); } }

/* ---------- newsletter band ---------- */
.news-band {
  background: var(--forest-2);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 5vw, 3.5rem);
  display: grid;
  gap: 1.4rem;
  position: relative;
  overflow: clip;
}
.news-band::after {
  content: "";
  position: absolute;
  width: 22rem; height: 22rem;
  top: -12rem; right: -8rem;
  background: radial-gradient(closest-side, rgba(223, 162, 68, 0.2), transparent 70%);
  pointer-events: none;
}
.news-band h2 { color: var(--cream); font-size: clamp(1.5rem, 4.5vw, 2.4rem); }
.news-band p { color: var(--sage); max-width: 34rem; font-size: 0.95rem; }
.news-form { display: grid; gap: 0.7rem; position: relative; z-index: 1; }
.news-form input {
  font: inherit;
  min-height: 52px;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid var(--line-dark);
  background: rgba(246, 241, 229, 0.06);
  color: var(--cream);
  width: 100%;
}
.news-form input::placeholder { color: rgba(168, 195, 174, 0.7); }
.news-form input:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px rgba(223, 162, 68, 0.15); }
@media (min-width: 640px) {
  .news-form { grid-template-columns: 1fr auto; align-items: center; }
}
@media (min-width: 900px) {
  .news-band { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--forest);
  color: var(--sage);
  margin-top: clamp(3.5rem, 9vw, 7rem);
  padding-top: clamp(3rem, 7vw, 5rem);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.footer-grid { display: grid; gap: 2rem; padding-bottom: 2.5rem; }
.footer-brand { display: grid; gap: 1rem; justify-items: start; }
.footer-brand img { width: 58px; }
.footer-brand p { font-size: 0.92rem; max-width: 21rem; }
.site-footer h4 { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); margin-bottom: 1rem; }
.footer-links { display: grid; gap: 0.5rem; font-size: 0.95rem; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.social-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.3rem; }
.social-row a {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(246, 241, 229, 0.08);
  border: 1px solid var(--line-dark);
  transition: background 0.25s, transform 0.25s var(--ease);
}
.social-row a:hover { background: var(--clay); transform: translateY(-3px); }
.social-row svg { width: 19px; height: 19px; color: var(--cream); }
.footer-scene { position: relative; padding-top: clamp(2.5rem, 7vw, 6rem); overflow: clip; }
.footer-trees {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.footer-word {
  position: relative;
  font-weight: 900;
  font-size: clamp(2.4rem, 12vw, 8.5rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(246, 241, 229, 0.14);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
  text-transform: uppercase;
}
.footer-strip {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  font-size: 0.8rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; } }

/* ============================================================
   HERO THEATRICS (award pass)
   ============================================================ */
/* load-in choreography */
.enter { opacity: 0; animation: enter-rise 0.8s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes enter-rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
/* masked line-by-line headline reveal */
.line { display: block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.line-inner { display: inline-block; transform: translateY(115%); animation: line-rise 0.9s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes line-rise { to { transform: none; } }
.h-hero .outline { color: transparent; -webkit-text-stroke: 2px var(--cream); }

/* cinematic image entrance */
.enter-stage { animation: stage-in 1.15s var(--ease) 0.25s both; }
@keyframes stage-in {
  from { opacity: 0; clip-path: inset(6% 8% 12% 8% round 2rem); transform: scale(1.04); }
  to   { opacity: 1; clip-path: inset(0 0 0 0 round 0); transform: none; }
}
.hero-stage > img { will-change: transform; }

/* film grain */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.055 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* cursor spotlight */
.hero-spot {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s;
  background: radial-gradient(38rem circle at var(--mx, 72%) var(--my, 35%), rgba(223, 162, 68, 0.12), transparent 62%);
}
@media (hover: hover) and (pointer: fine) {
  .hero:hover .hero-spot { opacity: 1; }
}

/* rotating stamp at the column seam */
.hero-stamp {
  position: absolute;
  z-index: 3;
  width: clamp(6rem, 8.5vw, 8rem);
  aspect-ratio: 1;
  top: 13%;
  left: 47.5%;
  display: none;
  animation: spin-slow 26s linear infinite;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.35));
}
@media (min-width: 900px) { .hero-stamp { display: block; } }

/* scroll cue */
.scroll-cue {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  bottom: 1.3rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
}
.scroll-cue span { width: 2px; height: 3rem; background: var(--line-dark); position: relative; overflow: hidden; border-radius: 2px; }
.scroll-cue span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform: translateY(-100%);
  animation: drip 2.2s var(--ease) infinite;
}
@keyframes drip { 45% { transform: translateY(0); } 100% { transform: translateY(102%); } }
@media (min-width: 1024px) { .scroll-cue { display: inline-flex; } }

/* keep hero content above the grain/spotlight layers (z only — don't touch position) */
.hero .container { position: relative; z-index: 2; }
.hero-stage { z-index: 2; }
.sample-card, .stat-chip { z-index: 3; }


/* ============================================================
   STORE GALLERY MOSAIC
   ============================================================ */
.gallery-mosaic { display: grid; grid-template-columns: 1fr; gap: 0.8rem; }
.gm {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 13rem;
  box-shadow: var(--shadow-soft);
}
.gm img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gm:hover img { transform: scale(1.06); }
.gm::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(22,40,30,0.72) 0%, transparent 55%); }
.gm figcaption {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 0.9rem;
  z-index: 2;
  color: var(--cream);
  font-size: 0.82rem;
  line-height: 1.35;
}
.gm figcaption b { display: block; font-size: 0.98rem; font-weight: 800; }
.gm-hero { min-height: 20rem; }
.gm-hero .arch-badge {
  position: absolute;
  z-index: 3;
  top: 1rem; right: 1rem;
  left: auto; bottom: auto;
  translate: none;
  width: auto; aspect-ratio: auto;
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.gm-hero .arch-badge svg { width: 0.9rem; height: 0.9rem; }
@media (min-width: 680px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 12rem; }
  .gm { min-height: 0; }
  .gm-hero { grid-column: span 2; grid-row: span 2; }
  .gm-wide { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .gallery-mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 11rem; }
  .gm-hero { grid-column: span 2; grid-row: span 2; }
  .gm-wide { grid-column: span 2; grid-row: span 1; }
}

/* ============================================================
   SCATTERED REVIEWS WALL + MOBILE PAGINATION
   ============================================================ */
.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  align-self: end;
}
.rating-badge b { color: var(--forest); font-size: 1rem; }
.rating-badge .stars svg { width: 0.9rem; height: 0.9rem; }

/* base (mobile): single-column stack, JS paginates */
.reviews-wall { display: grid; gap: 0.9rem; }
.review-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem 1.4rem 1.3rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
  box-shadow: var(--shadow-soft);
}
.review-card blockquote { font-size: 0.95rem; line-height: 1.5; color: var(--ink-soft); }
.review-card .stars svg { width: 0.85rem; height: 0.85rem; }
.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: start;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leaf);
  background: var(--sage-mist);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.review-tag svg { width: 0.8rem; height: 0.8rem; }
.review-who { display: flex; align-items: center; gap: 0.75rem; }
.review-who b { display: block; font-size: 0.9rem; font-weight: 800; color: var(--forest); }
.review-who small { color: var(--clay); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; }
.review-card.feature { background: var(--forest); border-color: var(--forest); }
.review-card.feature blockquote { color: var(--sage); font-size: 1.02rem; }
.review-card.feature .review-tag { background: rgba(246,241,229,0.1); color: var(--sage); }
.review-card.feature .review-who b { color: var(--cream); }
.review-card.feature .avatar { background: var(--amber); }

/* mobile pagination controls */
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.6rem;
}
.rev-arrow {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  color: var(--forest);
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.rev-arrow svg { width: 20px; height: 20px; }
.rev-arrow[data-rev="prev"] svg { transform: rotate(180deg); }
.rev-arrow:hover { background: var(--forest); color: var(--cream); }
.rev-arrow:disabled { opacity: 0.35; pointer-events: none; }
.rev-dots { display: flex; gap: 0.5rem; }
.rev-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
  transition: transform 0.25s var(--ease), background 0.25s;
}
.rev-dots button.on { background: var(--clay); transform: scale(1.4); }
.review-card.pg-hide { display: none; }

/* desktop: scattered masonry via CSS columns + slight tilt */
@media (min-width: 760px) {
  .reviews-wall {
    display: block;
    column-count: 2;
    column-gap: 1.1rem;
  }
  .review-card { break-inside: avoid; margin-bottom: 1.1rem; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
  .review-card.pg-hide { display: grid; }
  .r-tilt-0 { transform: rotate(-1.1deg); }
  .r-tilt-1 { transform: rotate(0.9deg); }
  .r-tilt-2 { transform: rotate(-0.6deg); }
  .r-tilt-3 { transform: rotate(1.3deg); }
  .review-card:hover { transform: rotate(0) translateY(-4px); box-shadow: var(--shadow-lift); z-index: 2; }
  .reviews-nav { display: none !important; }
}
@media (min-width: 1100px) {
  .reviews-wall { column-count: 3; column-gap: 1.2rem; }
}

/* magnetic button (JS sets --mx/--my translate) */
.magnetic { will-change: transform; }

/* footer wordmark (replaces the giant word) */
.footer-mark {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding-block: clamp(1.5rem, 5vw, 3rem) clamp(2rem, 6vw, 4rem);
}
.footer-mark img { width: clamp(56px, 12vw, 84px); opacity: 0.9; }
.footer-mark span {
  font-size: clamp(0.72rem, 2.4vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  text-align: center;
}
.footer-scene { min-height: clamp(12rem, 24vw, 18rem); display: grid; align-content: end; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- ultra-narrow (≤340px) ---------- */
@media (max-width: 340px) {
  .prod-grid { grid-template-columns: 1fr; }
  .type-band-row { font-size: 2.2rem; }
  .btn { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .qty-row .btn { width: auto; flex: 1; }
}
