/* ═══════════════════════════════════════════════════════════════
   Kuki K'ibe — Dark Cinematic Design · Cosmos-Inspired
   No green · Warm browns · Video-heavy · World-class
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Warm brown palette — NOT black · Cosmos-inspired · Editorial */
  --bg-primary:     #f9f6f0;
  --bg-secondary:   #f2ede4;
  --bg-tertiary:    #ebe5da;
  --bg-card:        #ffffff;
  --bg-card-hover:  #fdfcf9;
  --bg-accent:      rgba(184, 115, 51, 0.06);

  /* Borders — soft warm brown */
  --border-subtle:  rgba(94, 72, 52, 0.08);
  --border-medium:  rgba(94, 72, 52, 0.15);
  --border-accent:  rgba(184, 115, 51, 0.25);

  /* Text hierarchy — dark on warm cream */
  --text-primary:   #2c2318;
  --text-secondary: #5c4d3c;
  --text-tertiary:  #8a7a6a;

  /* Ethiopian heritage — warm only, NO green */
  --eth-yellow:     #c99b35;
  --eth-red:        #b85c38;

  /* Warm amber/copper accent */
  --accent-warm:      #b87333;
  --accent-warm-dim:  #9a5f28;
  --accent-warm-light: rgba(184, 115, 51, 0.12);
  --accent-warm-glow:  rgba(184, 115, 51, 0.25);

  /* Functional */
  --radius:     12px;
  --radius-sm:  8px;
  --radius-xs:  6px;
  --radius-full: 9999px;

  /* Shadows — warm soft */
  --shadow-sm:   0 1px 3px rgba(44, 35, 24, 0.06);
  --shadow-md:   0 4px 16px rgba(44, 35, 24, 0.08);
  --shadow-lg:   0 12px 40px rgba(44, 35, 24, 0.12);
  --shadow-glow: 0 0 80px rgba(184, 115, 51, 0.12);
  --inner-shadow: inset 0 1px 0 rgba(255,255,255,0.8);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  3rem;
  --space-xl:  5rem;
  --space-2xl: 8rem;
  --space-3xl: 12rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
}

.amharic {
  font-style: normal;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}


/* ═══════════════════════════════════════════════════════════════
   NAVIGATION — Dark glass, minimal
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--space-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.5px;
  background: var(--border-subtle);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.site-header.scrolled::after {
  opacity: 1;
}

.site-header.scrolled {
  background: rgba(249, 246, 240, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 0;
}

.logo {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo .amharic {
  color: var(--accent-warm);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-warm);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Order Now — warm copper button */
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent-warm);
  border-radius: var(--radius-full);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.btn-order:hover {
  background: var(--accent-warm-dim);
  box-shadow: 0 4px 20px rgba(184, 115, 51, 0.3);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1010;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .nav {
    gap: 0.65rem;
  }

  /* Keep Order Now visible beside the hamburger */
  .btn-order {
    display: inline-flex;
    margin-left: auto;
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    background: var(--bg-tertiary);
    border-left: 0.5px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1005;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--text-secondary);
  }

  .nav-toggle {
    display: flex;
  }
}


/* ═══════════════════════════════════════════════════════════════
   HERO — Full-screen video with ingredients, cosmos.so-inspired
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-primary);
  /* Warm cream fallback when videos load */
}

/* Video / image background layer */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video,
.hero-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cinematic overlays — stronger mid-band so hero copy stays readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(44, 35, 24, 0.35) 0%,
      rgba(44, 35, 24, 0.28) 30%,
      rgba(44, 35, 24, 0.32) 50%,
      rgba(44, 35, 24, 0.22) 70%,
      rgba(249, 246, 240, 0.85) 100%
    );
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(44, 35, 24, 0.12) 100%);
  pointer-events: none;
}

/* Grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Video grid — multiple looping videos */
.hero-video-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  z-index: 0;
  opacity: 0.9;
}

.hero-video-cell {
  position: relative;
  overflow: hidden;
}

.hero-video-cell video,
.hero-video-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1) saturate(1);
  transition: filter 1s ease;
}

.hero-video-cell video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 35, 24, 0.05);
}

/* Ambient glow orbs — warm, no green */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

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

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.15), transparent 70%);
  top: 5%;
  left: -10%;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 155, 53, 0.1), transparent 70%);
  top: 50%;
  right: -5%;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.1), transparent 70%);
  bottom: 5%;
  left: 25%;
}

.orb-4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 92, 56, 0.08), transparent 70%);
  top: 15%;
  right: 20%;
}

.orb-5 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201, 155, 53, 0.08), transparent 70%);
  top: 35%;
  left: 40%;
}

/* Hero content — centered, cosmos-style */
.hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem var(--space-md) 4rem;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
}

/* Ethiopian (Amharic) writing — prominent hero */
.hero-amharic {
  margin-bottom: 0.75rem;
}

.hero-amharic-text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-warm);
  display: block;
  line-height: 1.1;
}

.hero-amharic-transcript {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--accent-warm);
  flex-shrink: 0;
}

.eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

/* Headline — Kuki K'ibe cosmos.so large scale */
.hero-headline {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.headline-line {
  display: block;
}

.headline-accent {
  color: var(--accent-warm);
  font-style: italic;
}

/* Tagline — light text + shadow so it stays readable on dark video */
.hero-tagline {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Hero Buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent-warm);
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  letter-spacing: 0.01em;
}

.btn-primary-hero:hover {
  background: var(--accent-warm-dim);
  box-shadow: 0 8px 32px rgba(184, 115, 51, 0.35);
}

.btn-primary-hero svg {
  transition: transform 0.3s ease;
}

.btn-primary-hero:hover svg {
  transform: translateX(3px);
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent-warm);
  border: 1.5px solid var(--accent-warm);
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
}

.btn-ghost-hero:hover {
  color: #fff;
  background: var(--accent-warm-dim);
  border-color: var(--accent-warm-dim);
  box-shadow: 0 8px 32px rgba(184, 115, 51, 0.35);
}

/* Hero Stats — dark micro-cards */
.hero-stats {
  display: flex;
  gap: 1rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--border-accent);
  background: rgba(184, 115, 51, 0.06);
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-warm);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Visual — centered jar product */
.hero-visual {
  display: none; /* Hidden in new cosmos-style centered layout */
}

/* Ethiopian flag stripe */
.hero-flag-accent {
  display: flex;
  gap: 0;
  width: 80px;
  height: 2px;
  border-radius: 2px;
  overflow: hidden;
  margin: 2rem auto 0;
}

.flag-seg {
  flex: 1;
}

.flag-yellow { background: var(--eth-yellow); }
.flag-red { background: var(--eth-red); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-warm), transparent);
  transform-origin: top;
  transform: scaleY(0.5);
}

.scroll-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* Hero responsive */
@media (max-width: 900px) {
  .hero-inner {
    padding: 7rem var(--space-md) 5rem;
  }

  .hero-headline {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .hero-tagline {
    font-size: 1.05rem;
    color: #fff;
    padding: 0 0.5rem;
    text-shadow:
      0 1px 3px rgba(0, 0, 0, 0.65),
      0 2px 14px rgba(0, 0, 0, 0.5);
  }

  .hero-tagline br {
    display: none;
  }

  .hero-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  /* Keep Our Story as solid brown button on phone */
  .btn-ghost-hero,
  .btn-primary-hero {
    color: #fff;
    background: var(--accent-warm);
    border-color: var(--accent-warm);
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-video-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .scroll-indicator {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════════════════
   COSMOS-STYLE SCROLL MANIFESTO — Large text reveals
   ═══════════════════════════════════════════════════════════════ */
.manifesto-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

/* Hero-style background effects */
.manifesto-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(44, 35, 24, 0.03) 0%, transparent 30%, transparent 70%, rgba(44, 35, 24, 0.04) 100%);
  pointer-events: none;
}

.manifesto-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(44, 35, 24, 0.25) 100%);
  pointer-events: none;
}

.manifesto-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.manifesto-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.manifesto-orbs .orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.12), transparent 70%);
  top: 10%;
  left: -8%;
}

.manifesto-orbs .orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 155, 53, 0.1), transparent 70%);
  top: 60%;
  right: -5%;
}

.manifesto-orbs .orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.1), transparent 70%);
  bottom: 15%;
  left: 30%;
}

.manifesto-inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.manifesto-line {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-tertiary);
  transition: color 0.6s ease;
}

.manifesto-line.is-visible {
  color: var(--text-primary);
}

.manifesto-line .manifesto-accent {
  color: var(--accent-warm);
}

.manifesto-line .manifesto-dim {
  color: var(--text-tertiary);
  opacity: 0.4;
}

/* Image pop within manifesto */
.manifesto-image-inline {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  vertical-align: middle;
  margin: 0 0.25em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.manifesto-image-inline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .manifesto-inner {
    gap: 4rem;
  }

  .manifesto-image-inline {
    width: 40px;
    height: 40px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   PRODUCT SECTION — "The Staple" — World-class editorial
   ═══════════════════════════════════════════════════════════════ */
.product-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

/* Hero-style overlays — vignette & grain (hero-matched intensity) */
.product-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(44, 35, 24, 0.18) 0%,
      rgba(44, 35, 24, 0.06) 25%,
      rgba(44, 35, 24, 0.04) 50%,
      rgba(44, 35, 24, 0.08) 75%,
      rgba(44, 35, 24, 0.15) 100%
    );
  pointer-events: none;
}

.product-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(44, 35, 24, 0.22) 100%);
  pointer-events: none;
}

.product-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Warm ambient orbs — hero-matched (5 orbs, hero sizes & intensity) */
.product-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.product-orbs .orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.15), transparent 70%);
  top: 5%;
  right: -10%;
}

.product-orbs .orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 155, 53, 0.1), transparent 70%);
  bottom: 10%;
  left: -8%;
}

.product-orbs .orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.1), transparent 70%);
  bottom: 5%;
  left: 25%;
}

.product-orbs .orb-4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 92, 56, 0.08), transparent 70%);
  top: 15%;
  left: 10%;
}

.product-orbs .orb-5 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201, 155, 53, 0.08), transparent 70%);
  top: 35%;
  left: 40%;
}

/* Ethiopian flag accent — hero-style */
.product-eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-flag-accent {
  display: flex;
  gap: 0;
  width: 40px;
  height: 2px;
  border-radius: 2px;
  overflow: hidden;
}

.product-flag-accent .flag-seg {
  flex: 1;
}

.product-flag-accent .flag-yellow { background: var(--eth-yellow); }
.product-flag-accent .flag-red { background: var(--eth-red); }

/* Ambient glow behind product */
.product-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.08), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.product-section .container {
  position: relative;
  z-index: 2;
}

.product-showcase-new {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

/* ── Jar visual — cinematic ── */
.product-jar-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  overflow: hidden;
}

.product-jar-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.12), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.product-jar-zoom {
  width: 420px;
  max-width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(44, 35, 24, 0.18));
  transform: scale(0.96);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-jar-zoom.zoomed {
  transform: scale(1.05);
}

/* ── Product details — world-class ── */
.product-details {
  max-width: 540px;
}

.product-eyebrow {
  margin-bottom: 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
}

.product-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.35rem;
}

.product-amharic-sub {
  font-size: 1.05rem;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

.product-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.product-intro strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── Spice list — modern card grid ── */
.product-spice-list {
  margin-bottom: 2.5rem;
}

.product-spice-list h3,
.product-use-cases h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

/* Modern spice card grid */
.spice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.spice-card {
  position: relative;
  padding: 1.15rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: default;
}

.spice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--eth-yellow), var(--eth-red));
  border-radius: 0 0 2px 0;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spice-card:hover {
  border-color: var(--border-accent);
  background: rgba(184, 115, 51, 0.04);
  box-shadow: 0 4px 20px rgba(184, 115, 51, 0.08);
  transform: translateY(-2px);
}

.spice-card:hover::before {
  height: 100%;
}

/* Last card spans full width when odd count */
.spice-card:last-child:nth-child(odd) {
  grid-column: span 2;
}

.spice-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent-warm);
  letter-spacing: 0.1em;
  opacity: 0.5;
}

.spice-name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.spice-detail {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  line-height: 1.5;
  letter-spacing: 0.005em;
}

/* ── Use cases ── */
.product-use-cases {
  margin-bottom: 2.5rem;
}

.product-use-cases p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   SPICE SHOWCASE — Bécane Paris inspired · Immersive editorial
   Clip-path reveals · Parallax · Custom cursor · Marquee
   ═══════════════════════════════════════════════════════════════ */

.spice-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      var(--bg-secondary) 0%,
      var(--bg-tertiary) 40%,
      var(--bg-secondary) 70%,
      var(--bg-tertiary) 100%
    );
  padding: var(--space-2xl) 0 3rem;
}

/* Subtle background motion */
.spice-showcase::after {
  content: '';
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184, 115, 51, 0.06), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 155, 53, 0.04), transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(184, 92, 56, 0.05), transparent 50%);
  animation: spiceBgMotion 20s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes spiceBgMotion {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-2%, 1%) scale(1.02); }
  50%  { transform: translate(1%, -1%) scale(1.04); }
  75%  { transform: translate(-1%, -0.5%) scale(1.01); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ── Atmospheric layers ───────────────────────────── */
.spice-showcase__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(44, 35, 24, 0.08) 0%,
      rgba(44, 35, 24, 0.02) 30%,
      rgba(44, 35, 24, 0.02) 70%,
      rgba(44, 35, 24, 0.06) 100%
    );
  pointer-events: none;
}

.spice-showcase__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── Custom cursor for images ─────────────────────── */
.spice-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.spice-cursor span {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.spice-cursor.active {
  transform: translate(-50%, -50%) scale(1);
}

/* ── Section header ───────────────────────────────── */
.spice-showcase__header {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 3;
}

.spice-showcase__title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.spice-showcase__title-accent {
  color: var(--accent-warm);
  font-style: italic;
  font-weight: 600;
  font-size: 0.7em;
  letter-spacing: -0.01em;
}

.spice-showcase__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.spice-showcase__flag {
  display: flex;
  gap: 0;
  width: 80px;
  height: 3px;
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.spice-showcase__flag .flag-seg { flex: 1; }

/* ═════════════════════════════════════════════════════
   FEATURE PANEL — Contained editorial split
   ═════════════════════════════════════════════════════ */
.spice-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  position: relative;
  z-index: 3;
  margin-bottom: var(--space-lg);
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: transparent;
}

.spice-feature--reverse {
  grid-template-columns: 1fr 1fr;
}

.spice-feature--reverse .spice-feature__media {
  order: 2;
}

.spice-feature--reverse .spice-feature__info {
  order: 1;
}

/* Image with clip-path reveal */
.spice-feature__media {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: transparent;
}

.spice-feature__img-clip {
  width: 100%;
  height: 100%;
  clip-path: inset(100% 0 0 0);
  background: transparent;
}

.spice-feature__img-clip img {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
  min-height: 480px;
  max-height: 560px;
  transform: scale(1.12);
  transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
  filter: none;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
  display: block;
  image-rendering: high-quality;
}

.spice-feature__img-clip.revealed img {
  transform: scale(1);
}

.spice-feature__media:hover img {
  transform: scale(1.05) !important;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Feature text content */
.spice-feature__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-secondary);
  position: relative;
}

/* Subtle inner glow */
.spice-feature__info::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.06), transparent 70%);
  filter: blur(60px);
  transform: translateY(-50%);
  pointer-events: none;
}

.spice-feature--reverse .spice-feature__info::before {
  left: auto;
  right: 0;
}

.spice-feature__num {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-warm);
  letter-spacing: 0.2em;
  opacity: 0.5;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.spice-feature__name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.spice-feature__tagline {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.spice-feature__desc {
  font-size: 1rem;
  color: var(--text-tertiary);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.spice-feature__line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--eth-yellow), var(--eth-red));
  border-radius: 1px;
  position: relative;
  z-index: 1;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.spice-feature:hover .spice-feature__line {
  width: 120px;
}

/* ═════════════════════════════════════════════════════
   SLIDESHOW — Perfect For section (flush with panel)
   ═════════════════════════════════════════════════════ */
.perfect-for-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  min-height: 480px;
}

.slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.slideshow__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.slideshow__slide {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.08);
  filter: none;
}

.slideshow__slide.active {
  opacity: 1;
}

.slideshow__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slideshow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slideshow__dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.slideshow__dot.active {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
  transform: scale(1.2);
}

/* Use-case list inside feature panels */
.spice-feature__uses {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
  position: relative;
  z-index: 1;
}

.spice-feature__uses li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}

.spice-feature__uses li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--eth-yellow), var(--eth-red));
}

/* ═════════════════════════════════════════════════════
   (Trio cards removed — all spices now use spice-feature panels)
   ═════════════════════════════════════════════════════ */

/* (Marquee removed — all spices now use feature panels) */

/* (Perfect For glass card removed — now uses spice-feature panel) */

/* ═════════════════════════════════════════════════════
   SPICE SHOWCASE — Responsive
   ═════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .spice-showcase {
    padding: var(--space-2xl) 0;
  }

  .spice-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .spice-feature--reverse .spice-feature__media { order: 0; }
  .spice-feature--reverse .spice-feature__info { order: 0; }

  .spice-feature__img-clip img {
    min-height: 320px;
    max-height: 380px;
  }

  .perfect-for-slideshow {
    min-height: 340px;
    background: transparent;
  }

  .spice-feature__info {
    padding: var(--space-lg) var(--space-md);
  }

  .spice-feature__uses {
    grid-template-columns: 1fr;
  }

  /* Hide custom cursor on touch */
  .spice-cursor {
    display: none;
  }
}

@media (max-width: 600px) {
  .spice-feature__img-clip img {
    min-height: 260px;
    max-height: 320px;
  }

  .perfect-for-slideshow {
    min-height: 280px;
    background: transparent;
  }

  /* Trio cards removed */

  /* Marquee removed */

  /* Perfect For glass card removed */
}


/* ── Price row — world-class ── */
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.product-price {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-warm);
  letter-spacing: -0.03em;
}

.product-unit {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.product-cta {
  display: inline-flex;
}

/* ── Product section responsive ── */
@media (max-width: 900px) {
  .product-showcase-new {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .product-jar-wrap {
    order: -1;
    padding: 2rem 0;
  }

  .product-jar-zoom {
    width: 280px;
  }

  .product-details {
    max-width: 100%;
  }

  .spice-grid {
    grid-template-columns: 1fr;
  }

  .spice-card:last-child:nth-child(odd) {
    grid-column: span 1;
  }

  .product-price-row {
    justify-content: center;
  }

  .product-cta {
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════════════════════
   SITE ROUNDUP — Clean journey summary
   ═══════════════════════════════════════════════════════════════ */
.roundup-section {
  padding: 4rem 0 3rem;
  background:
    linear-gradient(160deg,
      var(--bg-primary) 0%,
      var(--bg-secondary) 45%,
      var(--bg-primary) 100%
    );
  position: relative;
  overflow: hidden;
}

.roundup-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 115, 51, 0.06), transparent 55%);
  pointer-events: none;
}

.roundup-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.roundup-section .container {
  position: relative;
  z-index: 3;
}

.roundup-header {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.roundup-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 1rem 0 1rem;
}

.roundup-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 1.25rem;
}

.roundup-flag {
  display: flex;
  gap: 0;
  width: 80px;
  height: 3px;
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.roundup-flag .flag-seg { flex: 1; }
.roundup-flag .flag-yellow { background: var(--eth-yellow); }
.roundup-flag .flag-red { background: var(--eth-red); }

.roundup-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.roundup-item {
  border-top: 1px solid var(--border-subtle);
}

.roundup-item:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.roundup-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.15rem 0.25rem;
  text-decoration: none;
  color: inherit;
  transition: padding 0.35s ease;
}

.roundup-link:hover {
  padding-left: 0.75rem;
}

.roundup-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-warm);
  letter-spacing: 0.04em;
  min-width: 2rem;
}

.roundup-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.roundup-label {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.roundup-link:hover .roundup-label {
  color: var(--accent-warm);
}

.roundup-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.roundup-arrow {
  font-size: 1.25rem;
  color: var(--text-tertiary);
  transition: transform 0.35s ease, color 0.35s ease;
}

.roundup-link:hover .roundup-arrow {
  transform: translateX(6px);
  color: var(--accent-warm);
}

@media (max-width: 600px) {
  .roundup-section {
    padding: 3rem 0 2.25rem;
  }

  .roundup-link {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1rem 0;
  }

  .roundup-arrow {
    display: none;
  }

  .roundup-label {
    font-size: 1.2rem;
  }
}

.section-header {
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
}


/* ═══════════════════════════════════════════════════════════════
   STORY SECTION — Hero-style editorial (single photo, hero typography)
   ═══════════════════════════════════════════════════════════════ */
.story-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.story-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(1);
  animation: kenburns 25s ease-in-out infinite;
}

.story-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(44, 35, 24, 0.3) 0%,
      rgba(44, 35, 24, 0.18) 30%,
      rgba(44, 35, 24, 0.2) 70%,
      rgba(44, 35, 24, 0.35) 100%
    );
}

.story-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(44, 35, 24, 0.25) 100%);
  pointer-events: none;
}

.story-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.story-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.story-orbs .orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.12), transparent 70%);
  top: 10%;
  right: -5%;
}

.story-orbs .orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 155, 53, 0.08), transparent 70%);
  bottom: 20%;
  left: -5%;
}

.story-orbs .orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.1), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.story-inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem var(--space-md) 5rem;
  width: 100%;
}

.story-header {
  margin-bottom: var(--space-lg);
}

.story-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eth-yellow);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.story-headline {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: rgba(249, 246, 240, 0.98);
  margin-bottom: 0;
}

.story-content-wrap {
  width: 100%;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.story-content p {
  font-size: 1.0625rem;
  color: rgba(249, 246, 240, 0.92);
  line-height: 1.85;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.story-lead {
  font-size: 1.1875rem !important;
  color: rgba(249, 246, 240, 0.98) !important;
  font-weight: 500;
  font-family: 'Source Serif 4', Georgia, serif !important;
}

.story-close {
  font-size: 1rem !important;
  color: rgba(249, 246, 240, 0.85) !important;
}

.story-flag-accent {
  margin-top: var(--space-xl);
  display: flex;
  gap: 0;
  width: 80px;
  height: 2px;
  border-radius: 2px;
  overflow: hidden;
}

.story-flag-accent .flag-seg {
  flex: 1;
}

.story-flag-accent .flag-yellow {
  background: var(--eth-yellow);
}

.story-flag-accent .flag-red {
  background: var(--eth-red);
}

@media (max-width: 900px) {
  .story-inner {
    padding: 5rem var(--space-sm) 4rem;
  }

  .story-content {
    gap: 1.25rem;
  }

  .story-content p {
    font-size: 1rem;
  }

  .story-lead {
    font-size: 1.1rem !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER — brief close
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-primary);
  padding: 2rem var(--space-md) 1.75rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.footer-brand .amharic {
  color: var(--accent-warm);
}

.footer-email {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: var(--accent-warm);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════════════════════════
   UTILITY & MICRO-INTERACTIONS
   ═══════════════════════════════════════════════════════════════ */

/* Selection color — warm */
::selection {
  background: rgba(184, 115, 51, 0.25);
  color: var(--text-primary);
}

/* Scrollbar (Webkit) — dark */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

/* Focus states — warm */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-warm);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Smooth opacity for all images */
img {
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* Animated border glow for featured elements */
@keyframes borderGlow {
  0%, 100% { border-color: var(--border-subtle); }
  50% { border-color: var(--border-accent); }
}

/* Kenburns animation for background images */
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  25% { transform: scale(1.08) translate(-1%, 1%); }
  50% { transform: scale(1.12) translate(1%, -0.5%); }
  75% { transform: scale(1.06) translate(-0.5%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}

.hero-video-cell img {
  animation: kenburns 20s ease-in-out infinite;
}

.hero-video-cell:nth-child(2) img {
  animation-delay: -4s;
  animation-duration: 24s;
}

.hero-video-cell:nth-child(3) img {
  animation-delay: -8s;
  animation-duration: 22s;
}

.hero-video-cell:nth-child(4) img {
  animation-delay: -3s;
  animation-duration: 26s;
}

.hero-video-cell:nth-child(5) img {
  animation-delay: -6s;
  animation-duration: 18s;
}

.hero-video-cell:nth-child(6) img {
  animation-delay: -10s;
  animation-duration: 28s;
}
