/* ═══════════════════════════════════════════════════════════
   ResQFood — Design System
   ═══════════════════════════════════════════════════════════ */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font: inherit; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
em { font-style: italic; }

/* ─── Root tokens ─── */
:root {
  --olive:      #4a6741;
  --olive-deep: #2c3f28;
  --olive-mid:  #5a7a50;
  --sage:       #7a9a6a;
  --sage-light: #a8c098;
  --cream:      #f8f4ea;
  --cream-warm: #f2ead6;
  --sand:       #e8d9b8;
  --sand-deep:  #ddd0a8;
  --terra:      #b5604a;
  --amber:      #c4913e;
  --amber-light:#e8c87a;

  --bg:         #f8f4ea;
  --bg-panel:   #ffffff;
  --bg-sage:    #eef5e8;
  --bg-sand:    #f0e8d4;

  --text:       #1c2e1a;
  --text-mid:   #3d5438;
  --text-muted: #7a8c72;

  --line:       rgba(122,154,106,0.2);
  --line-strong:rgba(122,154,106,0.35);

  --shadow-sm:  0 1px 3px rgba(30,52,28,0.08);
  --shadow-md:  0 4px 16px rgba(30,52,28,0.1);
  --shadow-lg:  0 16px 48px rgba(30,52,28,0.14);
  --shadow-xl:  0 32px 80px rgba(30,52,28,0.18);

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   26px;
  --r-2xl:  40px;
  --r-pill: 999px;

  --f-serif: 'Fraunces', Georgia, serif;
  --f-sans:  'Manrope', system-ui, sans-serif;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.0, 0, 0.2, 1);

  --nav-h: 72px;
  --container: 1280px;
}

/* ─── Base ─── */
body {
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

/* ─── Container ─── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  line-height: 1.1;
  font-weight: 600;
  color: var(--olive-deep);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem);   letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); letter-spacing: -0.01em; }
h4 { font-size: 0.95rem; font-weight: 700; }
p  { line-height: 1.7; color: var(--text-mid); }

.overline {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.85rem;
}
.overline--light { color: rgba(200,220,180,0.7); }

/* ─── Section heads ─── */
.section-head { margin-bottom: 4rem; }
.section-head.centered { text-align: center; }
.section-head h2 { margin-top: 0.4rem; }
.section-sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 520px;
}
.section-head.centered .section-sub { margin-inline: auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-family: var(--f-sans);
  transition: transform 220ms var(--ease-spring), box-shadow 220ms var(--ease), background 200ms var(--ease);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-sm  { font-size: 0.8rem;  padding: 0.45rem 1.1rem; }
.btn-lg  { font-size: 1rem;    padding: 0.8rem 1.75rem; }

.btn-primary {
  background: var(--olive);
  color: white;
  box-shadow: 0 4px 14px rgba(74,103,65,0.3);
}
.btn-primary:hover { background: var(--olive-mid); box-shadow: 0 8px 20px rgba(74,103,65,0.4); }

.btn-outline {
  background: transparent;
  color: var(--olive);
  border: 1.5px solid var(--olive);
}
.btn-outline:hover { background: rgba(74,103,65,0.06); }

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--olive); color: var(--olive); }

.btn-cream {
  background: var(--cream);
  color: var(--olive-deep);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-cream:hover { background: white; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-outline-cream {
  background: transparent;
  color: rgba(255,253,245,0.88);
  border: 1.5px solid rgba(255,253,245,0.4);
}
.btn-outline-cream:hover { border-color: rgba(255,253,245,0.8); background: rgba(255,253,245,0.08); }

/* ─── Tag pill ─── */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  background: rgba(122,154,106,0.1);
  border: 1px solid rgba(122,154,106,0.22);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.85rem 0.3rem 0.55rem;
}
.tag-dot {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--olive);
  flex-shrink: 0;
}

/* ─── Live dot ─── */
.live-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: #4caf50;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(76,175,80,0.22);
  animation: pulse 2.4s ease infinite;
  flex-shrink: 0;
}

/* ─── Scroll reveal ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="80"].is-visible  { transition-delay: 80ms; }
[data-reveal-delay="100"].is-visible { transition-delay: 100ms; }
[data-reveal-delay="120"].is-visible { transition-delay: 120ms; }
[data-reveal-delay="150"].is-visible { transition-delay: 150ms; }
[data-reveal-delay="200"].is-visible { transition-delay: 200ms; }
[data-reveal-delay="240"].is-visible { transition-delay: 240ms; }
[data-reveal-delay="300"].is-visible { transition-delay: 300ms; }
[data-reveal-delay="400"].is-visible { transition-delay: 400ms; }
[data-reveal-delay="500"].is-visible { transition-delay: 500ms; }
[data-reveal-delay="600"].is-visible { transition-delay: 600ms; }


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 300ms var(--ease), box-shadow 300ms var(--ease);
}
.site-nav.scrolled {
  background: rgba(248,244,234,0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--olive-deep);
  flex-shrink: 0;
}
.logo-mark { color: var(--olive); }
.nav-logo strong { font-size: 1.1rem; font-family: var(--f-serif); font-weight: 700; letter-spacing: -0.02em; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 280ms var(--ease), opacity 200ms, width 200ms;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer { display: flex; align-items: center; gap: 2rem; flex: 1; }
.nav-links   { display: flex; align-items: center; gap: 0.25rem; flex: 1; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-pill);
  transition: color 180ms, background 180ms;
}
.nav-links a:hover { color: var(--olive); background: rgba(122,154,106,0.08); }
.nav-ctas  { display: flex; align-items: center; gap: 0.6rem; }


/* ═══════════════════════════════════════════════════════════
   HERO — Editorial image-led opening
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
}

/* ── Large editorial photo: right side, diagonal left edge ── */
.hero-img-main {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 64%;
  clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}
.hero-main-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}
/* Cream bleeds from left, subtle bottom veil */
.hero-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--cream) 0%, rgba(248,244,234,0.65) 20%, transparent 50%),
    linear-gradient(to top, rgba(248,244,234,0.5) 0%, transparent 28%);
  pointer-events: none;
}


/* ── Floating stat chip ── */
.hero-stat-chip {
  position: absolute;
  top: 20%; right: 6%;
  background: rgba(248,244,234,0.94);
  border: 1px solid rgba(168,192,152,0.35);
  border-radius: var(--r-xl);
  padding: 0.85rem 1.25rem;
  z-index: 5;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(30,50,20,0.12), 0 0 0 1px rgba(255,255,255,0.85) inset;
  text-align: center;
  animation: heroImgFloat 6s ease-in-out 1.2s infinite;
}
.hero-stat-chip strong {
  display: block;
  font-family: var(--f-serif); font-size: 1.85rem; font-weight: 600;
  color: var(--olive-deep); letter-spacing: -0.02em; line-height: 1;
}
.hero-stat-chip span {
  font-size: 0.68rem; color: var(--text-muted); font-weight: 500;
  display: block; margin-top: 0.15rem;
}

/* ── Main copy ── */
.hero-body { position: relative; z-index: 5; width: 100%; }
.hero-copy  { max-width: 510px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--olive);
  background: rgba(122,154,106,0.1);
  border: 1px solid rgba(122,154,106,0.22);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.85rem 0.3rem 0.55rem;
  margin-bottom: 1.5rem;
}

.hero-h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: 1.04; letter-spacing: -0.03em;
  color: var(--olive-deep);
  margin-bottom: 1.4rem;
}
.hero-h1 em {
  background: linear-gradient(130deg, var(--olive) 0%, #6b9a5a 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.hero-sub   { font-size: 1.05rem; max-width: 400px; margin-bottom: 2rem; line-height: 1.7; }
.hero-ctas  { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-roles {
  display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap;
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
}
.role-pip { display: block; width: 0.5rem; height: 0.5rem; border-radius: 50%; flex-shrink: 0; }
.role-pip--olive { background: var(--olive); }
.role-pip--sage  { background: var(--sage);  }
.role-pip--terra { background: var(--terra); }
.role-sep { display: block; width: 1px; height: 0.9rem; background: var(--line-strong); }

/* ── Entrance animations ── */
.h-enter {
  opacity: 0; transform: translateY(26px);
  animation: hEnter 0.72s var(--ease-spring) forwards;
}
.h-enter-1 { animation-delay: 0.08s; }
.h-enter-2 { animation-delay: 0.22s; }
.h-enter-3 { animation-delay: 0.36s; }
.h-enter-4 { animation-delay: 0.50s; }
.h-enter-5 { animation-delay: 0.62s; }
.h-enter-6 { animation-delay: 0.78s; }

@keyframes hEnter { to { opacity: 1; transform: translateY(0); } }
@keyframes heroKenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.06) translate(-1%, 1%); }
}
@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  40%       { transform: translateY(-8px) rotate(0.4deg); }
  70%       { transform: translateY(-4px) rotate(-0.2deg); }
}

/* ── Wave transition ── */
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 6; pointer-events: none; }
.hero-wave svg { width: 100%; height: 100px; display: block; }


/* ═══════════════════════════════════════════════════════════
   SHIFT — Transformation
   ═══════════════════════════════════════════════════════════ */
.shift {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 80vh;
  position: relative;
}

.shift-before,
.shift-after {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}
.shift-photo { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.shift-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(140deg, rgba(20,38,20,0.76) 0%, rgba(30,52,28,0.82) 100%);
}
.shift-overlay--light {
  background: linear-gradient(140deg, rgba(40,80,30,0.62) 0%, rgba(60,90,40,0.72) 100%);
}

.shift-content { max-width: 420px; }
.shift-eyebrow {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.shift-eyebrow--bad  { color: rgba(230,150,100,0.9); }
.shift-eyebrow--good { color: rgba(200,240,170,0.9); }
.shift-h { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: white; margin-bottom: 1rem; line-height: 1.15; }
.shift-h em { color: rgba(232,200,122,0.9); }
.shift-content p { font-size: 0.95rem; color: rgba(255,253,245,0.8); margin-bottom: 1.25rem; }

.shift-chips { display: flex; flex-direction: column; gap: 0.5rem; }
.shift-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.38rem 0.75rem;
  border-radius: var(--r-pill);
  width: fit-content;
}
.shift-chip--bad  { background: rgba(200,80,60,0.18); color: rgba(255,180,160,0.95); border: 1px solid rgba(200,80,60,0.25); }
.shift-chip--good { background: rgba(74,103,65,0.22);  color: rgba(200,240,170,0.95); border: 1px solid rgba(100,160,80,0.3); }

.shift-pivot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  z-index: 2;
  background: var(--olive-deep);
}
.shift-pivot-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.shift-pivot-inner svg { transform: rotate(0deg); }


/* ═══════════════════════════════════════════════════════════
   JOURNEY — Process timeline
   ═══════════════════════════════════════════════════════════ */
.journey {
  background: var(--bg);
  padding-block: clamp(5rem, 10vh, 8rem);
  position: relative;
}

.journey-wrap {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-bottom: 2rem;
}

/* Center vertical line */
.journey-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
  z-index: 0;
}
.journey-progress {
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--olive), var(--sage-light));
  transition: height 80ms linear;
  border-radius: 2px;
}

/* Steps */
.jstep {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}
.jstep--final { margin-bottom: 0; }

.jstep-body { padding: 1.5rem; background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); transition: box-shadow 250ms var(--ease), transform 250ms var(--ease); }
.jstep-body:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.jstep-body--r { text-align: right; }

.jstep-num { display: block; font-family: var(--f-serif); font-size: 1.8rem; font-weight: 700; color: var(--sage-light); letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.jstep-body h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.jstep-body p  { font-size: 0.85rem; margin: 0; }

.jstep-mid { display: flex; justify-content: center; }
.jstep-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 2px solid var(--sage-light);
  display: grid;
  place-items: center;
  color: var(--olive);
  box-shadow: 0 0 0 5px var(--bg);
  transition: border-color 250ms, box-shadow 250ms;
}
.jstep-icon svg { width: 24px; height: 24px; }
.jstep-icon--impact { border-color: var(--amber); color: var(--amber); }
.jstep-gap { /* empty spacer for alternating layout */ }

/* ─── Step left: content left, icon center, empty right ─── */
.jstep--l .jstep-body { grid-column: 1; }
.jstep--l .jstep-mid  { grid-column: 2; }
.jstep--l .jstep-gap  { grid-column: 3; }

/* ─── Step right: empty left, icon center, content right ─── */
.jstep--r .jstep-gap  { grid-column: 1; }
.jstep--r .jstep-mid  { grid-column: 2; }
.jstep--r .jstep-body { grid-column: 3; }


/* ═══════════════════════════════════════════════════════════
   SHOWCASE — Layered product screens
   ═══════════════════════════════════════════════════════════ */
.showcase {
  background: var(--bg-sand);
  padding-block: clamp(5rem, 10vh, 8rem);
  overflow: hidden;
}

.showcase-head {
  text-align: center;
  margin-bottom: 4rem;
}
.showcase-head .section-sub { margin-inline: auto; }

.showcase-stage {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* All screens share base style */
.sc-screen {
  background: var(--bg-panel);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.sc-screen:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.sc-screen--left  { transform: translateY(48px) rotate(-2deg); }
.sc-screen--left:hover { transform: translateY(40px) rotate(-1deg); }
.sc-screen--main  { z-index: 2; box-shadow: var(--shadow-xl); }
.sc-screen--right { transform: translateY(72px) rotate(2deg); background: var(--olive-deep); }
.sc-screen--right:hover { transform: translateY(64px) rotate(1deg); }

.sc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-mid);
  background: linear-gradient(135deg, rgba(74,103,65,0.06), rgba(168,192,152,0.1));
}
.sc-head--olive { background: linear-gradient(135deg, rgba(74,103,65,0.12), rgba(122,154,106,0.16)); }
.sc-head--dark  { background: var(--olive-deep); color: rgba(220,240,210,0.85); }
.sc-live { display: flex; align-items: center; gap: 0.4rem; }
.sc-filter { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }

/* Main screen listing cards */
.sc-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.sc-card:last-child { border-bottom: none; }
.sc-card-img { width: 80px; height: 80px; overflow: hidden; flex-shrink: 0; }
.sc-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sc-card-body { padding: 0.65rem 0.8rem; border-left: 1px solid var(--line); }
.sc-tag { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.12rem 0.45rem; border-radius: var(--r-pill); display: inline-block; margin-bottom: 0.2rem; }
.sc-tag--open   { background: rgba(74,103,65,0.12); color: var(--olive); }
.sc-tag--claimed{ background: rgba(181,96,74,0.1);  color: var(--terra); }
.sc-card-body strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text); line-height: 1.25; margin-bottom: 0.15rem; }
.sc-biz  { font-size: 0.65rem; color: var(--text-muted); font-weight: 500; display: block; }
.sc-time { font-size: 0.62rem; color: var(--sage); font-weight: 600; margin-top: 0.15rem; }

/* Left screen: reservation */
.sc-res-body { padding: 0.9rem; }
.sc-res-row  { display: grid; grid-template-columns: 1fr; gap: 0.1rem; margin-bottom: 0.65rem; padding-bottom: 0.65rem; border-bottom: 1px solid var(--line); }
.sc-res-row:last-of-type { border-bottom: none; margin-bottom: 0.75rem; }
.sc-res-row span  { font-size: 0.62rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.sc-res-row strong{ font-size: 0.78rem; font-weight: 700; color: var(--text); }
.sc-res-confirm {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--olive);
  background: rgba(74,103,65,0.1);
  border-radius: var(--r-md);
  padding: 0.5rem 0.75rem;
}

/* Right screen: dashboard */
.sc-dash-body { padding: 0.9rem; }
.sc-metric    { margin-bottom: 0.9rem; }
.sc-metric:last-child { margin-bottom: 0; }
.sc-metric strong { font-family: var(--f-serif); font-size: 1.35rem; font-weight: 600; color: rgba(220,240,210,0.9); display: block; letter-spacing: -0.02em; }
.sc-metric span   { font-size: 0.68rem; color: rgba(180,210,165,0.7); font-weight: 500; display: block; margin-bottom: 0.4rem; }
.sc-bar { height: 4px; background: rgba(255,255,255,0.12); border-radius: 2px; overflow: hidden; }
.sc-bar-fill { height: 100%; background: var(--sage-light); border-radius: 2px; width: var(--w); }
.sc-bar-fill--amber { background: var(--amber-light); }
.sc-bar-fill--terra { background: rgba(210,130,100,0.8); }

/* Showcase captions */
.showcase-captions {
  display: flex;
  justify-content: space-around;
  margin-top: 3rem;
  gap: 1rem;
}
.sc-cap {
  text-align: center;
}
.sc-cap span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
  padding: 0.4rem 1rem;
  background: rgba(255,253,245,0.7);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}


/* ═══════════════════════════════════════════════════════════
   ECOSYSTEM — Four roles
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   ECOSYSTEM — Premium auto-scrolling role carousel
   ═══════════════════════════════════════════════════════════ */
.ecosystem {
  background: var(--bg);
  padding-block: clamp(4rem, 8vh, 7rem);
  overflow: hidden;
}

/* ── Carousel outer wrapper: clips overflow, adds edge fades ── */
.eco-carousel {
  position: relative;
  padding-block: 2rem 2.5rem;
  /* Soft fade at both edges — premium "reveal" effect */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

/* ── Track: flex row, animates left ── */
.eco-track {
  display: flex;
  animation: ecoScroll 38s linear infinite;
  will-change: transform;
}

/* Pause when hovering any part of the carousel */
.eco-carousel:hover .eco-track { animation-play-state: paused; }

/* Pause class set by JS on touch */
.eco-track.is-paused { animation-play-state: paused; }

@keyframes ecoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Accessibility: no motion when user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .eco-track { animation: none; }
  .eco-carousel {
    -webkit-mask-image: none; mask-image: none;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .eco-set { scroll-snap-align: start; }
}

/* ── Each "set" of 4 cards — padding-right matches gap for seamless join ── */
.eco-set {
  display: flex;
  gap: 1.5rem;
  padding-right: 1.5rem;
}

/* ── Individual role card ── */
.eco-card {
  width: 285px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(30,50,20,0.09);
  transition: box-shadow 280ms var(--ease), transform 280ms var(--ease-spring);
  display: flex;
  flex-direction: column;
  position: relative;
}
.eco-card:hover { transform: translateY(-6px); box-shadow: 0 22px 56px rgba(30,50,20,0.15); }

/* Gradient accent line at the very top of each card */
.eco-card::before {
  content: '';
  display: block;
  height: 3px;
  flex-shrink: 0;
}
.eco-card--biz::before       { background: linear-gradient(90deg, var(--olive), var(--sage)); }
.eco-card--users::before     { background: linear-gradient(90deg, var(--sage), #9ecb8a); }
.eco-card--charities::before { background: linear-gradient(90deg, var(--terra), #d17e65); }
.eco-card--admin::before     { background: linear-gradient(90deg, var(--amber), #d4b86e); }

/* ── Image area with overlay ── */
.eco-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.eco-card-img img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.eco-card:hover .eco-card-img img { transform: scale(1.05); }

/* Dark gradient overlay at image bottom for tag legibility */
.eco-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(18,35,16,0.72) 0%,
    rgba(18,35,16,0.15) 50%,
    transparent 100%);
  pointer-events: none;
}

/* Role tag pill overlaid on image */
.eco-card-tag {
  position: absolute;
  bottom: 0.9rem; left: 0.9rem;
  z-index: 2;
  font-size: 0.62rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  padding: 0.26rem 0.72rem;
}

/* ── Card body text ── */
.eco-body {
  padding: 1.3rem 1.45rem 1.45rem;
  flex: 1; display: flex; flex-direction: column;
}
.eco-body h3 {
  font-size: 1rem; font-weight: 700; line-height: 1.3;
  color: var(--text); margin-bottom: 0.55rem;
}
.eco-body p {
  font-size: 0.82rem; color: var(--text-muted);
  line-height: 1.55; margin-bottom: 0.85rem; flex-grow: 1;
}
.eco-feats {
  list-style: none; padding: 0; margin: 0 0 0 0;
  display: flex; flex-direction: column; gap: 0.32rem;
  margin-top: auto;
}
.eco-feats li {
  font-size: 0.76rem; font-weight: 600;
  color: var(--text-mid);
  padding-left: 1rem; position: relative;
}
.eco-feats li::before {
  content: '';
  position: absolute; left: 0; top: 0.44em;
  width: 0.38rem; height: 0.38rem;
  border-radius: 50%; background: var(--sage-light);
}


/* ═══════════════════════════════════════════════════════════
   IMPACT — Living dashboard — placeholder anchor (styles follow)
   ═══════════════════════════════════════════════════════════ */
.impact {
  background: var(--olive-deep);
  padding-block: clamp(5rem, 10vh, 8rem);
  position: relative;
  overflow: hidden;
  color: white;
}

.impact-decor { position: absolute; inset: 0; pointer-events: none; }
.idecor { position: absolute; }
.idecor--a { width: 700px; height: 700px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.idecor--b { width: 300px; height: 300px; top: -50px; right: -50px; }
.idecor--c { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.impact-top { margin-bottom: 2.5rem; }
.impact-top h2 { color: rgba(220,240,210,0.95); margin-top: 0.4rem; }

.impact-hero-num {
  font-family: var(--f-serif);
  font-size: clamp(5rem, 16vw, 12rem);
  font-weight: 600;
  color: var(--amber-light);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}
.impact-plus { font-size: 0.35em; margin-top: 0.3em; color: var(--amber); }
.counter-hero { display: block; }

.impact-hero-label {
  font-size: 1.05rem;
  color: rgba(180,210,165,0.75);
  max-width: 420px;
  margin-bottom: 4rem;
}

.impact-rings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.iring { text-align: center; }
.iring-wrap { position: relative; width: 140px; height: 140px; margin: 0 auto 1.25rem; }
.iring-svg { width: 100%; height: 100%; transform: rotate(-90deg); }

.ring-track { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 6; }
.ring-arc   { fill: none; stroke: var(--amber-light); stroke-width: 6; stroke-linecap: round; transition: stroke-dashoffset 1.5s var(--ease-out); }

.iring-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iring-center .counter { font-family: var(--f-serif); font-size: 2rem; font-weight: 600; color: rgba(220,240,210,0.95); letter-spacing: -0.02em; }

.iring h3 { font-size: 1rem; color: rgba(220,240,210,0.9); margin-bottom: 0.35rem; }
.iring p  { font-size: 0.82rem; color: rgba(180,210,165,0.65); }


/* ═══════════════════════════════════════════════════════════
   MANIFESTO — Why it matters
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   MANIFESTO — Why it matters (centered immersive redesign)
   ═══════════════════════════════════════════════════════════ */
.manifesto { background: var(--cream); }

/* ── Full-bleed photo hero ── */
.manifesto-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.manifesto-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.manifesto-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(15,32,14,0.55) 0%,
      rgba(20,42,18,0.78) 60%,
      rgba(15,32,14,0.92) 100%);
}

/* ── Centered content layer ── */
.manifesto-hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: clamp(5rem, 10vh, 8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.manifesto-hero-body .overline { margin-bottom: 1.5rem; }

.manifesto-quote {
  max-width: 820px;
  margin-inline: auto;
}
.manifesto-quote p {
  font-family: var(--f-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: rgba(255, 253, 245, 0.96);
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.manifesto-quote em {
  color: var(--amber-light);
  font-style: normal;
}

/* Animated scroll hint arrow */
.manifesto-scroll-hint {
  margin-top: 2.5rem;
  color: rgba(232,200,122,0.55);
  animation: scrollBob 2.2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50%       { transform: translateY(7px); opacity: 0.9; }
}

/* ── Values panel — cream card rising from photo ── */
.manifesto-values-wrap {
  background: var(--cream);
  padding-block: clamp(4rem, 8vh, 6rem);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  margin-top: -3rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 -12px 50px rgba(15,32,14,0.12);
}

.manifesto-values-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.mvals-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--olive-deep);
  margin-top: 0.5rem;
}

.manifesto-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}

/* Each value card */
.mval {
  padding: 2.5rem 2rem;
  position: relative;
  border-right: 1px solid var(--line);
  transition: background 250ms var(--ease);
}
.mval:last-child { border-right: none; }
.mval:hover { background: rgba(122,154,106,0.05); }

/* Top row: number + icon */
.mval-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.mval-n {
  font-family: var(--f-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sand-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.mval-icon {
  width: 32px;
  height: 32px;
  color: var(--sage);
  flex-shrink: 0;
}

/* Accent line at top of each card */
.mval::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 2px;
  border-radius: 2px;
}
.mval:nth-child(1)::before { background: var(--olive); }
.mval:nth-child(2)::before { background: var(--amber); }
.mval:nth-child(3)::before { background: var(--sage);  }

.mval h3 { font-size: 1.05rem; margin-bottom: 0.65rem; }
.mval p  { font-size: 0.88rem; line-height: 1.7; }


/* ═══════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════ */
.cta-final {
  background: var(--olive-deep);
  padding-block: clamp(6rem, 12vh, 10rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; }
.cta-shape--1 { right: -8%; top: -15%; width: 55%; }
.cta-shape--2 { left: -6%; bottom: -10%; width: 42%; }

.cta-body { position: relative; z-index: 2; }
.cta-tag  { margin-bottom: 1.5rem; color: rgba(200,240,180,0.85); background: rgba(100,150,80,0.18); border-color: rgba(100,150,80,0.25); }
.cta-tag .tag-dot { background: rgba(200,240,180,0.8); }

.cta-h {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: rgba(240,248,230,0.96);
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-inline: auto;
}
.cta-sub { font-size: 1.05rem; color: rgba(180,210,165,0.75); max-width: 520px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  padding-block: 4rem;
  align-items: start;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; max-width: 340px; margin-bottom: 1rem; }
.footer-email { font-size: 0.88rem; font-weight: 700; color: var(--olive); border-bottom: 1px solid transparent; transition: border-color 200ms; }
.footer-email:hover { border-color: var(--olive); }

.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-col h4 { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a  { font-size: 0.88rem; font-weight: 500; color: var(--text-mid); transition: color 180ms; }
.footer-col a:hover { color: var(--olive); }

.footer-base { border-top: 1px solid var(--line); }
.footer-base-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1.25rem; }
.footer-base small { font-size: 0.8rem; color: var(--text-muted); }
.footer-base-links { display: flex; gap: 1.25rem; }
.footer-base-links a { font-size: 0.8rem; color: var(--text-muted); transition: color 180ms; }
.footer-base-links a:hover { color: var(--text); }


/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.4); }
  50%       { box-shadow: 0 0 0 5px rgba(76,175,80,0);  }
}


/* ═══════════════════════════════════════════════════════════
   PARCEL JOURNEY — Shared visual object across 3 sections
   ═══════════════════════════════════════════════════════════ */

/* ── Wrapper grid ── */
.parcel-journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  position: relative;
}

/* ── Left sticky column ── */
.pj-left {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 1s var(--ease);
}

/* Background shifts with state */
.parcel-journey[data-parcel-state="s1"] .pj-left { background: #f0e4c8; }
.parcel-journey[data-parcel-state="s2"] .pj-left { background: var(--cream); }
.parcel-journey[data-parcel-state="s3"] .pj-left { background: #f2e9d4; }

/* ── Parcel stage (relative container for all overlays) ── */
.pj-parcel-stage {
  position: relative;
  width: 300px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── State overlays ── */
.pj-state-layer {
  position: absolute;
  inset: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s var(--ease);
}

/* Active state overlays */
.parcel-journey[data-parcel-state="s1"] .pj-sl-s1,
.parcel-journey[data-parcel-state="s2"] .pj-sl-s2,
.parcel-journey[data-parcel-state="s3"] .pj-sl-s3 { opacity: 1; pointer-events: auto; }

/* ── Atmospheric glow ── */
.pj-bg-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.pj-glow--warm  { background: radial-gradient(circle, rgba(196,145,62,0.2) 0%, transparent 70%); }
.pj-glow--sage  { background: radial-gradient(circle, rgba(122,154,106,0.22) 0%, transparent 70%); }
.pj-glow--amber { background: radial-gradient(circle, rgba(196,145,62,0.26) 0%, transparent 65%); }

/* ── S1: Floating value tags ── */
.pj-ftag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-mid);
  background: rgba(248,244,234,0.94);
  border: 1px solid rgba(196,145,62,0.28);
  border-radius: var(--r-pill);
  padding: 0.38rem 0.85rem 0.38rem 0.6rem;
  box-shadow: 0 4px 14px rgba(30,50,20,0.1), 0 0 0 1px rgba(255,255,255,0.7) inset;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  z-index: 5;
}
.pj-ftag-1 { top: 2%;  left: -5%;   animation: tagFloat 5s ease-in-out 0s    infinite; }
.pj-ftag-2 { top: 30%; right: -12%; animation: tagFloat 5s ease-in-out 1.5s  infinite; }
.pj-ftag-3 { bottom: 12%; left: -8%; animation: tagFloat 5s ease-in-out 0.75s infinite; }

@keyframes tagFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

/* ── S2: Listing card frame ── */
.pj-list-frame {
  position: absolute;
  bottom: -15px;
  left: -20px;
  right: -20px;
  background: rgba(248,246,240,0.96);
  border: 1px solid rgba(168,192,152,0.35);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px rgba(30,50,20,0.14), 0 0 0 1px rgba(255,255,255,0.9) inset;
  backdrop-filter: blur(16px);
  overflow: hidden;
  z-index: 5;
}
.plf-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: linear-gradient(135deg, rgba(74,103,65,0.08), rgba(168,192,152,0.13));
  border-bottom: 1px solid rgba(168,192,152,0.2);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--olive);
}
.plf-dist { margin-left: auto; font-size: 0.68rem; color: var(--text-muted); font-weight: 600; }
.plf-rows { padding: 0.6rem 0.9rem; }
.plf-row  { display: flex; justify-content: space-between; padding: 0.28rem 0; border-bottom: 1px solid rgba(168,192,152,0.12); }
.plf-row:last-child { border-bottom: none; }
.plf-row span   { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; }
.plf-row strong { font-size: 0.74rem; font-weight: 700; color: var(--text); }
.plf-btn {
  display: block;
  width: calc(100% - 1.8rem);
  margin: 0 0.9rem 0.8rem;
  padding: 0.5rem;
  background: var(--olive);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-align: center;
  transition: background 180ms;
}
.plf-btn:hover { background: var(--olive-mid); }

/* ── S3: Impact rings SVG ── */
.pj-rings-svg {
  position: absolute;
  inset: -50px;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  z-index: 0;
  animation: ringRotate 30s linear infinite;
}
@keyframes ringRotate { to { transform: rotate(360deg); } }

.pj-ichip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem 0.35rem 0.55rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(30,50,20,0.12);
  backdrop-filter: blur(8px);
}
.pj-ichip-1 { top: 5%;   left: -10%; background: rgba(74,103,65,0.14); border: 1px solid rgba(74,103,65,0.24); color: var(--olive); animation: tagFloat 6s ease-in-out 0s infinite; }
.pj-ichip-2 { top: 35%; right: -14%; background: rgba(196,145,62,0.14); border: 1px solid rgba(196,145,62,0.24); color: var(--amber); animation: tagFloat 6s ease-in-out 2s infinite; }
.pj-ichip-3 { bottom: 8%; left: -5%; background: rgba(122,154,106,0.14); border: 1px solid rgba(122,154,106,0.24); color: var(--sage); animation: tagFloat 6s ease-in-out 1s infinite; }

/* ── The traveling parcel SVG ── */
.pj-parcel-wrap {
  position: relative;
  z-index: 3;
  width: 200px;
  transition:
    transform     1.2s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter        1s var(--ease);
  animation: parcelFloat 6s ease-in-out infinite;
}
.pj-svg { width: 100%; height: auto; display: block; }

/* Per-state transforms of the parcel */
.parcel-journey[data-parcel-state="s1"] .pj-parcel-wrap {
  transform: scale(1) rotate(-4deg) translateY(-8px);
  filter: drop-shadow(0 20px 30px rgba(196,145,62,0.25));
}
.parcel-journey[data-parcel-state="s2"] .pj-parcel-wrap {
  transform: scale(0.82) rotate(3deg) translateY(32px);
  filter: drop-shadow(0 16px 24px rgba(30,50,20,0.2));
  animation-play-state: paused; /* still while in listing context */
}
.parcel-journey[data-parcel-state="s3"] .pj-parcel-wrap {
  transform: scale(0.72) rotate(-2deg) translateY(-4px);
  filter: drop-shadow(0 18px 28px rgba(196,145,62,0.3));
}

@keyframes parcelFloat {
  0%, 100% { margin-top: 0; }
  50%       { margin-top: -10px; }
}

/* ── Right scrolling content column ── */
.pj-right { position: relative; }

/* Each section */
.pj-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-inline: clamp(2rem, 6vw, 5rem);
  position: relative;
  transition: background-color 0.8s var(--ease);
}

.pj-s1 {
  background: #f0e4c8;
  border-left: 1px solid rgba(196,145,62,0.15);
}
.pj-s1::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, rgba(196,145,62,0.25), transparent 80%);
}

.pj-s2 {
  background: var(--cream);
  border-left: 1px solid rgba(122,154,106,0.15);
}
.pj-s2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, rgba(122,154,106,0.3), transparent 80%);
}

.pj-s3 {
  background: #f2e9d4;
  border-left: 1px solid rgba(196,145,62,0.2);
}
.pj-s3::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, rgba(74,103,65,0.25), transparent 80%);
}

.pj-section-inner { max-width: 480px; }

.pj-overline { color: var(--amber); margin-bottom: 0.85rem; }
.pj-s2 .pj-overline { color: var(--sage); }
.pj-s3 .pj-overline { color: var(--olive); }

.pj-h2 { margin-bottom: 1.1rem; }
.pj-h2 em {
  background: linear-gradient(130deg, var(--olive) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}
.pj-p { font-size: 1rem; margin-bottom: 1.5rem; }

/* ── S1: Pull quote ── */
.pj-quote {
  border-left: 3px solid rgba(196,145,62,0.45);
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  background: rgba(232,200,122,0.08);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.pj-quote em {
  font-style: italic;
  font-family: var(--f-serif);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.pj-s1-stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  background: rgba(255,253,245,0.6);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
}
.pj-s1-stat strong {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.pj-s1-stat span { font-size: 0.82rem; color: var(--text-mid); line-height: 1.4; }

/* ── S2: UI card ── */
.pj-ui-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}
.puic-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, rgba(74,103,65,0.07), rgba(168,192,152,0.12));
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--olive);
}
.puic-dist { margin-left: auto; font-size: 0.68rem; color: var(--text-muted); font-weight: 600; }
.puic-title { padding: 0.85rem 1rem 0.5rem; font-weight: 700; font-size: 0.96rem; color: var(--text); }
.puic-rows { padding: 0 1rem 0.5rem; }
.puic-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0;
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
  border-bottom: 1px solid rgba(168,192,152,0.12);
}
.puic-row:last-child { border-bottom: none; }
.puic-row svg { color: var(--text-muted); flex-shrink: 0; }
.puic-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--line);
  background: rgba(248,244,234,0.5);
}
.puic-tag { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); background: rgba(122,154,106,0.1); border: 1px solid rgba(122,154,106,0.2); border-radius: var(--r-pill); padding: 0.15rem 0.55rem; }
.puic-btn { font-size: 0.76rem; font-weight: 700; color: white; background: var(--olive); border-radius: var(--r-pill); padding: 0.38rem 1rem; cursor: pointer; transition: background 180ms; }
.puic-btn:hover { background: var(--olive-mid); }

/* ── S3: Impact numbers ── */
.pj-impact-nums {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.pin-stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.75rem 1.1rem;
  border-left: 3px solid transparent;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: rgba(255,253,245,0.55);
  transition: border-color 200ms, background 200ms;
}
.pin-stat:nth-child(1) { border-color: var(--olive); }
.pin-stat:nth-child(2) { border-color: var(--amber); }
.pin-stat:nth-child(3) { border-color: var(--sage-light); }
.pin-stat:hover { background: rgba(255,253,245,0.85); }
.pin-stat strong { font-family: var(--f-serif); font-size: 1.65rem; font-weight: 600; color: var(--olive-deep); letter-spacing: -0.02em; white-space: nowrap; }
.pin-stat span   { font-size: 0.8rem; color: var(--text-mid); }

.pj-community-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.7rem 1rem;
  background: rgba(255,253,245,0.6);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
}
.pj-community-note svg { color: var(--sage); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet ≤1080px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  :root { --container: 960px; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-bottom: 6rem; }
  .hero-copy  { text-align: center; }
  .hero-tag, .hero-actions, .hero-roles, .hero-stats { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hfloat { display: none; }
  .hero-blob--main { opacity: 0.5; }

  /* Shift */
  .shift { grid-template-columns: 1fr auto 1fr; min-height: 70vh; }
  .shift-before, .shift-after { min-height: 70vh; }
  .shift-pivot { padding: 0 0.75rem; }

  /* Journey */
  .jstep { grid-template-columns: 1fr 56px 1fr; gap: 1rem; margin-bottom: 2.5rem; }
  .jstep-icon { width: 48px; height: 48px; }
  .jstep-icon svg { width: 20px; height: 20px; }

  /* Showcase */
  .showcase-stage { grid-template-columns: 1fr 1.3fr 1fr; gap: 1rem; }

  /* Ecosystem — tablet: slightly smaller cards in marquee */
  .eco-card { width: 270px; }
  .eco-card-img { height: 195px; }

  /* Impact */
  .impact-rings { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  /* Manifesto */
  .manifesto-hero { min-height: 70vh; }
  .manifesto-values { grid-template-columns: 1fr; border: none; gap: 1px; background: var(--line); }
  .mval { border-right: none; background: var(--cream); border-radius: 0; }

  /* Parcel journey */
  .parcel-journey { grid-template-columns: 1fr 1fr; }
  .pj-parcel-stage { width: 240px; height: 310px; }
  .pj-parcel-wrap  { width: 165px; }
  .pj-ftag-1, .pj-ftag-3 { left: -4%; }
  .pj-ftag-2 { right: -8%; }
  .pj-section { padding-inline: 1.5rem 2rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile ≤680px  (intentionally redesigned per section)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 680px) {

  /* ── Nav ── */
  .hamburger { display: flex; }
  .nav-drawer {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(248,244,234,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch;
    padding: 1rem; overflow-y: auto;
    border-top: 1px solid var(--line); z-index: 99;
  }
  .nav-drawer.is-open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a  { display: block; padding: 0.9rem 0.5rem; border-radius: 0; font-size: 1rem; }
  .nav-ctas { flex-direction: column; padding-top: 1.25rem; gap: 0.65rem; }
  .nav-ctas .btn { width: 100%; justify-content: center; padding: 0.75rem; }

  /* ═══════════════════════════
     HERO — Mobile cinema style
     ═══════════════════════════
     Image fills top 58% of screen
     Rounded cream card slides up beneath
  */
  .hero {
    height: auto;
    min-height: 100svh;
    display: block;
    overflow: visible;
    background: var(--cream);
  }

  /* Full-width image at top, rounded bottom corners */
  .hero-img-main {
    position: relative;
    right: auto; top: auto; bottom: auto;
    width: 100%; height: 58svh; min-height: 320px;
    clip-path: none;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
    z-index: 1;
  }
  .hero-img-main::after {
    background: linear-gradient(to bottom, transparent 40%, rgba(248,244,234,0.45) 78%, rgba(248,244,234,0.88) 100%);
  }
  .hero-main-img { animation: none; /* no ken burns on mobile — perf */ }

  /* Copy card: cream, slides up over image bottom */
  .hero-body {
    position: relative;
    z-index: 5;
    background: var(--cream);
    border-radius: 28px 28px 0 0;
    margin-top: -2.75rem;
    padding: 2.25rem clamp(1.25rem, 5vw, 2rem) 5rem;
    text-align: center;
    box-shadow: 0 -12px 32px rgba(30,50,20,0.08);
  }
  .hero-copy { max-width: 100%; }
  .hero-eyebrow { margin-inline: auto; }
  .hero-h1 { font-size: clamp(2.3rem, 9vw, 3rem); margin-bottom: 1rem; }
  .hero-sub { margin-inline: auto; font-size: 0.96rem; }
  .hero-ctas { justify-content: center; }
  .hero-ctas .btn { flex: 1; max-width: 180px; }
  .hero-roles { justify-content: center; }

  /* Stat chip: inline in copy, not floating */
  .hero-stat-chip {
    position: static;
    display: inline-flex; align-items: center; gap: 0.65rem;
    margin: 0 auto 1.75rem;
    padding: 0.6rem 1.1rem;
    animation: none;
    text-align: left;
    flex-direction: row;
  }
  .hero-stat-chip strong { font-size: 1.5rem; }

  /* Wave: relative, not absolute */
  .hero-wave { position: relative; bottom: auto; margin-top: -1px; }

  /* ═══════════════════════════
     SHIFT — Stacked cinematic
  */
  .shift { grid-template-columns: 1fr; min-height: auto; }
  .shift-before, .shift-after { min-height: 65vw; }
  .shift-pivot {
    padding: 1rem 0; justify-content: center;
    background: var(--olive-deep);
  }
  .shift-h { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .shift-content p { font-size: 0.88rem; }

  /* ═══════════════════════════
     JOURNEY — Left-rail timeline
     Icon on left, content on right
  */
  .journey { padding-block: 3.5rem 4rem; }
  .journey-wrap { padding-inline: 1.25rem; }

  /* Left rail line */
  .journey-line { left: calc(1.25rem + 26px); transform: none; }

  /* Each step becomes a flex row */
  .jstep {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    grid-template-columns: none;
  }

  /* Override grid column assignments */
  .jstep--l .jstep-body,
  .jstep--r .jstep-body { grid-column: auto; grid-row: auto; }
  .jstep--l .jstep-mid,
  .jstep--r .jstep-mid  { grid-column: auto; grid-row: auto; }
  .jstep--l .jstep-gap,
  .jstep--r .jstep-gap  { display: none; }

  /* Icon always first in DOM/visual order */
  .jstep-mid { order: -1; flex-shrink: 0; }
  .jstep-body, .jstep-body--r {
    order: 1; flex: 1;
    text-align: left;
    padding: 0.75rem 1rem;
  }
  .jstep-body--r { text-align: left; }
  .jstep-icon { width: 48px; height: 48px; }
  .jstep-icon svg { width: 22px; height: 22px; }
  .jstep-num { font-size: 1.4rem; }

  /* ═══════════════════════════
     SHOWCASE — Single main screen, premium centered
  */
  .showcase { padding-block: 3.5rem 4rem; }
  .showcase-stage {
    display: block;
    max-width: 100%;
    padding-inline: 0;
  }
  .sc-screen--left, .sc-screen--right { display: none; }
  .sc-screen--main {
    transform: none !important;
    border-radius: var(--r-xl);
    max-width: 420px;
    margin-inline: auto;
  }
  .showcase-captions {
    flex-direction: row; flex-wrap: wrap;
    justify-content: center; gap: 0.5rem 1rem;
    margin-top: 1.75rem;
  }
  .sc-cap { flex: 0 0 auto; }
  .sc-cap span { font-size: 0.72rem; }

  /* ═══════════════════════════
     PARCEL JOURNEY — Compact vertical storytelling
  */
  .parcel-journey { display: block; }
  .pj-left {
    position: relative; height: auto; min-height: 0;
    padding: 3rem 1.5rem 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background-color 0.6s ease;
  }
  .pj-parcel-stage { width: 180px; height: 240px; }
  .pj-parcel-wrap  { width: 130px; }
  /* Pin parcel visually, no sticky scroll effect */
  .parcel-journey .pj-parcel-wrap { transform: scale(1) rotate(-3deg) translateY(0) !important; }
  .pj-sl-s1 { opacity: 1 !important; }
  .pj-sl-s2, .pj-sl-s3 { display: none; }
  /* Float tags smaller on mobile */
  .pj-ftag { font-size: 0.65rem; padding: 0.28rem 0.55rem; }
  .pj-ftag-1 { top: 5%;  left: -2%; }
  .pj-ftag-2 { top: 28%; right: -4%; }
  .pj-ftag-3 { bottom: 15%; left: -2%; }
  /* Sections: compact, touch-friendly */
  .pj-section { min-height: auto; padding: 2.5rem 1.5rem; }
  .pj-s1, .pj-s2, .pj-s3 { border-left: none; }
  .pj-s1 { border-top: 2px solid rgba(196,145,62,0.28); }
  .pj-s2 { border-top: 2px solid rgba(122,154,106,0.28); background: var(--cream); }
  .pj-s3 { border-top: 2px solid rgba(74,103,65,0.28); }
  .pj-h2 { font-size: 1.5rem; }
  .pj-impact-nums { gap: 0.5rem; }
  .pin-stat { padding: 0.6rem 0.85rem; }
  .pin-stat strong { font-size: 1.4rem; }

  /* ═══════════════════════════
     ECOSYSTEM — Marquee carousel mobile tweaks
     (Marquee runs on all screen sizes; just tune size + speed)
  */
  .ecosystem { padding-block: 3rem 3.5rem; }

  /* Slightly narrower cards on mobile so ~1.3 cards are visible at a time */
  .eco-card { width: 260px; }
  .eco-card-img { height: 185px; }

  /* Narrower edge fade so first card is more fully visible */
  .eco-carousel {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
    mask-image:         linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
    padding-block: 1.25rem 1.75rem;
  }

  /* Slightly faster on mobile for lively feel */
  .eco-track { animation-duration: 28s; }

  /* Card body tighter on mobile */
  .eco-body { padding: 1.1rem 1.2rem 1.25rem; }
  .eco-body h3 { font-size: 0.95rem; }

  /* ═══════════════════════════
     GLOBAL — Section heads center on mobile
  */
  .section-head { text-align: center; margin-bottom: 2.5rem; }
  .section-head h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .section-sub { max-width: 100%; }

  /* ═══════════════════════════
     IMPACT — Bold vertical (2-col rings for wider, 3-col for medium)
  */
  .impact { padding-block: 4rem 4.5rem; }
  .impact-hero-num { font-size: clamp(4rem, 22vw, 7rem); }
  .impact-hero-label { font-size: 0.9rem; margin-bottom: 2.5rem; }
  .impact-rings { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .iring-wrap { width: 96px; height: 96px; }
  .iring-center .counter { font-size: 1.25rem; }
  .iring h3 { font-size: 0.78rem; }
  .iring p  { display: none; }

  /* ═══════════════════════════
     MANIFESTO
  */
  .manifesto-hero { min-height: 60svh; }
  .manifesto-quote p { font-size: 1.1rem; }
  .manifesto-values-wrap { margin-top: -1.5rem; }
  .manifesto-values { grid-template-columns: 1fr; border: none; gap: 1px; background: var(--line); border-radius: 0; }
  .mval { border-right: none; background: var(--cream); padding: 1.75rem 1.25rem; }
  .mvals-title { font-size: 1.5rem; }

  /* ═══════════════════════════
     CTA FINAL
  */
  .cta-h { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* ═══════════════════════════
     FOOTER
  */
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-base-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
}
