/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* ── HERO ── */
.hero {
  min-height: 100svh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-orb--1 {
  width: 600px; height: 600px;
  background: var(--primary-dark);
  top: -200px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb--2 {
  width: 400px; height: 400px;
  background: var(--primary-dark);
  bottom: -100px; left: -50px;
  animation: orbFloat 16s ease-in-out infinite reverse;
}

.hero-orb--3 {
  width: 300px; height: 300px;
  background: var(--primary-light);
  top: 40%; left: 40%;
  opacity: 0.15;
  animation: orbFloat 9s ease-in-out infinite 3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.97); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-label { animation: fadeUp 0.8s ease 0.2s both; }

.hero-title {
  font-size: clamp(52px, 7vw, 96px);
  color: var(--text-white);
  line-height: 1.0;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--primary-lighter);
}

.hero-body {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-shop-btn { border-color: rgba(255,255,255,0.3); }

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.7s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-lighter);
  flex-shrink: 0;
}

/* Hero pill grid */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}

.hero-pill-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.hero-pill-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(107,29,42,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107,29,42,0.2);
}

.hero-pill-card:first-child,
.hero-pill-card:nth-child(4) {
  /* margin-top: 24px; */
}

.hero-pill-card.bestseller-card { grid-column: span 2; padding: 20px; }

.pill-placeholder {
  width: 100%;
  aspect-ratio: 1;
  max-width: 90px;
  margin: 0 auto 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(255,255,255,0.05);
}

.pill-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.pill-dose {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: var(--container-pad);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--primary-lighter);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  to { left: 100%; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--primary);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}

.marquee-dot { color: rgba(255,255,255,0.4) !important; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── FEATURED PRODUCTS ── */
.section-featured {
  padding: var(--section-pad) 0;
  background: var(--bg-light-soft);
}

.section-header {
  margin-bottom: 56px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}



/* ── WHY US ── */
.section-why {
  background: var(--bg-dark);
  padding: var(--section-pad) 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content .divider { background: var(--primary-light); }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(107,29,42,0.25);
  border: 1px solid rgba(107,29,42,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 20px; height: 20px;
  color: var(--primary-lighter);
}

.why-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 5px;
}

.why-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* Why visual */
.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-cert-stack {
  position: relative;
  width: 320px;
  height: 380px;
}

.cert-img {
  position: absolute;
  filter: brightness(0) invert(1);
  opacity: 0.15;
  transition: opacity 0.3s ease;
}

.cert-img--1 {
  width: 180px;
  top: 20px;
  right: 20px;
  transform: rotate(8deg);
}

.cert-img--2 {
  width: 160px;
  bottom: 40px;
  left: 20px;
  transform: rotate(-6deg);
}

.cert-img:hover { opacity: 0.35; }

.why-stat-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-burgundy);
}

.stat-number {
  display: block;
  font-size: 52px;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  display: block;
}

/* ── CATEGORIES ── */
.section-categories {
  padding: var(--section-pad) 0;
  background: var(--text-white);
}

.section-categories .section-header {
  margin-bottom: 48px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cat-card {
  background: var(--bg-light-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--bg-dark);
  transition: all 0.3s ease;
  transition-delay: calc(var(--delay, 0) * 60ms);
}

.cat-card:hover {
  background: var(--bg-dark);
  color: var(--text-white);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cat-icon { font-size: 32px; margin-bottom: 12px; }

.cat-card h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cat-card p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cat-card:hover p { color: rgba(255,255,255,0.5); }

/* ── MISSION ── */
.section-mission {
  background: var(--bg-dark);
  padding: var(--section-pad) 0;
  text-align: center;
}

.mission-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mission-tagline {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.mission-text {
  font-size: 20px;
  color: rgba(255,255,255,0.55);
  max-width: 680px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── OUR STORY TEASER ── */
.section-story-teaser {
  background: var(--bg-dark);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

/* CSS noise/grain texture */
.story-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: grainShift 0.5s steps(1) infinite;
}

@keyframes grainShift {
  0%   { background-position: 0 0; }
  20%  { background-position: -40px 20px; }
  40%  { background-position: 20px -30px; }
  60%  { background-position: -20px 40px; }
  80%  { background-position: 30px -10px; }
  100% { background-position: 0 0; }
}

.story-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left visual */
.story-teaser-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-counter-wrap {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  z-index: 2;
}

.story-big-num {
  font-size: clamp(120px, 14vw, 200px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(107,29,42,0.5);
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

.section-story-teaser:hover .story-big-num {
  color: rgba(107,29,42,0.12);
}

.story-big-suffix {
  font-size: clamp(60px, 7vw, 100px);
  font-weight: 900;
  color: var(--primary);
  margin-top: 16px;
  opacity: 0.7;
}

/* Vertical decorative lines (inspired by the BPS logo) */
.story-vert-lines {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 80px;
}

.story-vert-lines span {
  display: block;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  border-radius: 2px;
  animation: lineGrow 2.4s ease-in-out infinite;
  opacity: 0.4;
}

.story-vert-lines span:nth-child(1)  { height: 30%; animation-delay: 0.0s; }
.story-vert-lines span:nth-child(2)  { height: 55%; animation-delay: 0.1s; }
.story-vert-lines span:nth-child(3)  { height: 80%; animation-delay: 0.2s; }
.story-vert-lines span:nth-child(4)  { height: 100%; animation-delay: 0.3s; }
.story-vert-lines span:nth-child(5)  { height: 100%; animation-delay: 0.35s; }
.story-vert-lines span:nth-child(6)  { height: 100%; animation-delay: 0.4s; }
.story-vert-lines span:nth-child(7)  { height: 100%; animation-delay: 0.45s; }
.story-vert-lines span:nth-child(8)  { height: 80%; animation-delay: 0.5s; }
.story-vert-lines span:nth-child(9)  { height: 55%; animation-delay: 0.6s; }
.story-vert-lines span:nth-child(10) { height: 30%; animation-delay: 0.7s; }

@keyframes lineGrow {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(1.2); opacity: 0.8; }
}

/* Floating tags */
.story-floating-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  animation: tagFloat 6s ease-in-out infinite;
}

.story-floating-tag--1 { top: 60px; left: -10px; animation-delay: 0s; }
.story-floating-tag--2 { top: 50%; right: 0; animation-delay: 2s; }
.story-floating-tag--3 { bottom: 60px; left: 20px; animation-delay: 4s; }

@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-lighter);
  flex-shrink: 0;
}

/* Right content */
.story-teaser-label { margin-bottom: 20px; }

.story-teaser-title {
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.story-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--line-delay, 0s);
}

.story-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.story-line--italic {
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.45);
}

.story-teaser-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--line-delay, 0s);
}

.story-teaser-body.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Story stats row */
.story-teaser-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--line-delay, 0s);
}

.story-teaser-stats.visible {
  opacity: 1;
  transform: translateY(0);
}

.story-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.story-stat-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.story-stat-unit {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-lighter);
  vertical-align: super;
}

.story-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.story-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

.story-teaser-cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--line-delay, 0s);
  gap: 10px;
}

.story-teaser-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SUSTAINABILITY TEASER ── */
.section-sustain-teaser {
  background: var(--primary-deeper);
  padding: var(--section-pad) 0 calc(var(--section-pad) + 60px);
  position: relative;
  overflow: hidden;
}

/* Animated wave background */
.sustain-wave-bg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  pointer-events: none;
  z-index: 0;
}

.wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  fill: rgba(107,29,42,0.15);
}

.wave--1 {
  animation: waveShift 8s ease-in-out infinite;
}

.wave--2 {
  fill: rgba(74,16,25,0.25);
  animation: waveShift 12s ease-in-out infinite reverse;
}

@keyframes waveShift {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(-3%) scaleY(1.08); }
}

.sustain-teaser-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 60px;
}

.sustain-teaser-header { max-width: 600px; }

/* Pillars grid */
.sustain-pillars-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.sustain-pillar-card {
  transition-delay: calc(var(--delay, 0) * 100ms);
}

.pillar-card-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 36px 24px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pillar-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(107,29,42,0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sustain-pillar-card:hover .pillar-card-inner {
  border-color: rgba(107,29,42,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(107,29,42,0.25);
  background: rgba(255,255,255,0.06);
}

.sustain-pillar-card:hover .pillar-card-inner::before {
  opacity: 1;
}

.pillar-card-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.sustain-pillar-card:hover .pillar-card-line {
  transform: scaleX(1);
}

.sustain-pillar-icon {
  font-size: 40px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.sustain-pillar-card:hover .sustain-pillar-icon {
  transform: scale(1.15) rotate(-5deg);
}

.pillar-card-inner h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.pillar-card-inner p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.sustain-teaser-cta { margin-top: -20px; }

/* Magnetic card JS enhancement (non-blocking) */
.magnetic-card { will-change: transform; }

/* ── BRAND MANIFESTO ── */
.section-manifesto {
  background: var(--bg-black);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.manifesto-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.manifesto-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  opacity: 0.12;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: manifestoPulse 6s ease-in-out infinite;
}

.manifesto-orb--2 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  opacity: 0.08;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: manifestoPulse 4s ease-in-out infinite reverse;
}

@keyframes manifestoPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.12; }
  50%       { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
}

.manifesto-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Eyebrow rule */
.manifesto-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
}

.manifesto-eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-lighter);
  white-space: nowrap;
}

.manifesto-line-left,
.manifesto-line-right {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,48,74,0.5));
}

.manifesto-line-right {
  background: linear-gradient(90deg, rgba(168,48,74,0.5), transparent);
}

/* Logo */
.manifesto-logo {
  height: clamp(40px, 6vw, 72px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 1s ease 0.15s, transform 1s cubic-bezier(0.23, 1, 0.32, 1) 0.15s;
}

.manifesto-inner.visible .manifesto-logo {
  opacity: 1;
  transform: scale(1);
}

/* Copy */
.manifesto-copy {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 600px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.manifesto-inner.visible .manifesto-copy {
  opacity: 1;
  transform: translateY(0);
}

/* CTA */
.manifesto-cta {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s;
  margin-top: 4px;
}

.manifesto-inner.visible .manifesto-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .sustain-pillars-home { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }
  .story-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-teaser-visual { height: 260px; }
  .story-vert-lines { display: none; }
  .story-big-num { font-size: clamp(100px, 20vw, 160px); }
  .story-floating-tag { display: none; }
}

@media (max-width: 768px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(44px, 10vw, 72px); }
  .sustain-pillars-home { grid-template-columns: 1fr 1fr; }
  .story-teaser-stats { gap: 0; }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .sustain-pillars-home { grid-template-columns: 1fr; }
  .story-teaser-stats { flex-wrap: wrap; gap: 20px; }
  .story-stat-divider { display: none; }
  .story-stat { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 400px) {
  .featured-grid { grid-template-columns: 1fr; }
}
