/* =============================================
   MOGU | מוגו — "Ink & Earth" Design System
   Concept: Hand-drawn ink meets warm Negev earth
   Colors extracted directly from the logo:
   • Ink   #1C1814 — warm rich black (ink strokes)
   • Teal  #3D8E8A — logo shadow ellipse (primary)
   • Earth #C4956A — mushroom stem fill (warmth)
   ============================================= */

:root {
  --paper:        #F5EFE0;   /* warm laid paper — site background */
  --paper-alt:    #EDE8D8;   /* alt section bg */
  --ink:          #1C1814;   /* warm rich dark */
  --ink-mid:      #4A3D30;   /* mid ink — headings */
  --ink-soft:     #7A6553;   /* body text */
  --teal:         #3D8E8A;   /* hero accent, primary brand */
  --teal-deep:    #2A6B67;   /* deep teal hover */
  --teal-mist:    #E8F4F3;   /* pale teal surfaces */
  --earth:        #C4956A;   /* warm earth / beige */
  --earth-dark:   #A8611E;   /* CTA, accents */
  --earth-pale:   #F5E8D6;   /* pale earth */
  --orange:       #E8611A;   /* brand orange — use sparingly */
  --orange-pale:  #FEF0E8;   /* pale orange surface */
  --gold:         #A9C227;   /* mycelium highlight */
  --white:        #FEFCF7;   /* warm white */
  --dark:         #1C1814;   /* ink-dark sections */
  --border:       #DDD3C0;   /* warm border */
  --border-light: #EDE8D8;

  --font: 'Heebo', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.87, 0, 0.13, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  direction: rtl;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Typography — dramatic scale contrast ── */
h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 900; line-height: 1.0; letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 700; line-height: 1.25; }
p  { font-size: 1.05rem; line-height: 1.82; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 112px 0; }
.section-sm { padding: 64px 0; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 80px; }
.section-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 20px;
}
.section-header h2 { color: var(--ink); margin-bottom: 16px; }
.section-header p  { color: var(--ink-soft); max-width: 500px; margin: 0 auto; font-size: 1.02rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font); font-size: 0.93rem; font-weight: 700;
  cursor: pointer; border: 2px solid transparent;
  border-radius: 3px;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-primary  { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover {
  background: var(--teal-deep); border-color: var(--teal-deep);
  transform: translateY(-3px); box-shadow: 0 12px 28px rgba(61,142,138,0.28);
}
.btn-outline  { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); transform: translateY(-3px); }
.btn-earth    { background: var(--earth-dark); color: var(--white); border-color: var(--earth-dark); }
.btn-earth:hover {
  background: #8b4d15; border-color: #8b4d15;
  transform: translateY(-3px); box-shadow: 0 12px 28px rgba(168,97,30,0.28);
}
.btn-teal-outline {
  background: transparent; color: var(--teal); border-color: var(--teal); border-radius: 3px;
}
.btn-teal-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  background: rgba(245, 239, 224, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 40px rgba(28, 24, 20, 0.06);
}

.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 52px; width: auto; object-fit: contain; }

.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.2px;
  color: var(--ink-mid); position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; right: 0; left: 0;
  height: 1px; background: var(--teal);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.28s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--ink) !important; color: var(--white) !important;
  padding: 9px 22px; border-radius: 3px; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.3px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 1px; transition: 0.3s var(--ease);
}

/* ══════════════════════════════════════
   HERO — Ink & Earth, dramatic
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--paper);
  padding-top: 72px;
}

/* Large organic blob — echoes the logo's teal shadow ellipse, scaled up */
.hero-blob {
  position: absolute; pointer-events: none;
  top: -15%; left: -12%;
  width: 60%; aspect-ratio: 1;
  background: var(--teal);
  opacity: 0.065;
  border-radius: 64% 36% 55% 45% / 44% 58% 42% 56%;
  animation: blobDrift 14s ease-in-out infinite alternate;
}
.hero-blob-2 {
  position: absolute; pointer-events: none;
  bottom: -12%; right: -6%;
  width: 36%; aspect-ratio: 1;
  background: var(--earth);
  opacity: 0.09;
  border-radius: 52% 48% 62% 38% / 58% 44% 56% 42%;
  animation: blobDrift 10s ease-in-out infinite alternate-reverse;
}
@keyframes blobDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10px, -18px) scale(1.03); }
}
@keyframes floatSoft {
  0%   { transform: translateY(0px) rotate(-1deg); }
  100% { transform: translateY(-14px) rotate(1deg); }
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 64px; align-items: center;
  padding: 64px 0;
}

/* Content side (visual right in RTL) */
.hero-eyebrow {
  display: block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 24px;
}

.hero h1 { color: var(--ink); margin-bottom: 24px; }
.hero h1 .accent { color: var(--teal); }

.hero-sub {
  color: var(--ink-soft); font-size: 1.1rem; font-weight: 400;
  margin-bottom: 44px; max-width: 440px; line-height: 1.85;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Visual side (visual left in RTL) */
.hero-visual {
  display: flex; flex-direction: column;
  align-items: center; gap: 28px;
}

.hero-mushroom-wrap {
  position: relative; display: flex;
  justify-content: center; align-items: center; width: 100%;
}
.hero-mushroom-img {
  width: 100%; max-width: 480px;
  filter: drop-shadow(0 12px 40px rgba(61,142,138,0.13))
          drop-shadow(0 4px 16px rgba(28,24,20,0.10));
  animation: floatSoft 7s ease-in-out infinite alternate;
}

.hero-stats {
  display: flex;
  border: 1.5px solid var(--border); border-radius: 3px;
  overflow: hidden; width: 100%; max-width: 360px;
  background: var(--white);
}
.hero-stat {
  flex: 1; text-align: center; padding: 18px 12px;
  border-left: 1.5px solid var(--border);
}
.hero-stat:last-child { border-left: none; }
.hero-stat-num   { font-size: 2rem; font-weight: 900; color: var(--teal); line-height: 1; }
.hero-stat-label { font-size: 0.7rem; color: var(--ink-soft); margin-top: 4px; font-weight: 600; letter-spacing: 0.5px; }


/* ══════════════════════════════════════
   WHY — Numbered Editorial List
   Big teal ordinals, horizontal rules,
   icon + text in each row
══════════════════════════════════════ */
.why-section { background: var(--white); }

.why-list { display: flex; flex-direction: column; }

.why-item {
  display: grid;
  /* In RTL: first column (100px) appears on RIGHT = number; second (1fr) on LEFT = content */
  grid-template-columns: 100px 1fr;
  gap: 0;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}
.why-item:last-child { border-bottom: 1px solid var(--border); }

/* The big ordinal — sits in the RTL-right column */
.why-num {
  font-size: 5rem; font-weight: 900; line-height: 1;
  color: var(--teal); letter-spacing: -0.05em;
  align-self: flex-start; padding-top: 6px;
  /* Dividing line on the left (between num and body) */
  border-left: 1px solid var(--border);
  padding-left: 32px;
}

/* Content sits in the RTL-left column */
.why-body {
  display: flex; align-items: flex-start; gap: 28px;
  padding-right: 40px;   /* space from the border to the content */
}

.why-icon-svg {
  width: 52px; height: 52px;
  flex-shrink: 0; margin-top: 4px;
}
.why-text h3  { font-size: 1.35rem; margin-bottom: 10px; color: var(--ink); }
.why-text p   { color: var(--ink-soft); font-size: 0.97rem; max-width: 500px; line-height: 1.78; }


/* ══════════════════════════════════════
   HEALTH — nutritional data
══════════════════════════════════════ */
.health-section { background: var(--paper); }

.health-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.health-text h2 { margin-bottom: 20px; }
.health-text > p { color: var(--ink-soft); margin-bottom: 12px; }

.nutrition-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 20px 0 28px;
}
.nutrition-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 4px; padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
}
.nutrition-val  { font-size: 1.45rem; font-weight: 900; color: var(--teal); line-height: 1; min-width: 56px; }
.nutrition-unit { font-size: 0.68rem; color: var(--ink-soft); font-weight: 600; }
.nutrition-name { font-size: 0.88rem; color: var(--ink-mid); font-weight: 500; }

.badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  padding: 6px 16px; border-radius: 3px;
  font-size: 0.8rem; font-weight: 700; border: 1.5px solid;
}
.badge-teal   { background: var(--teal-mist);  color: var(--teal);       border-color: rgba(61,142,138,0.3); }
.badge-beige  { background: var(--earth-pale);  color: var(--earth-dark); border-color: rgba(196,149,106,0.35); }
.badge-green  { background: rgba(107,122,42,.08); color: #6B7A2A;         border-color: rgba(107,122,42,0.3); }
.badge-orange { background: var(--earth-pale);  color: var(--earth-dark); border-color: rgba(168,97,30,0.3); }

.health-visual { display: flex; justify-content: center; align-items: center; }

.health-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 56px rgba(28,24,20,0.14), 0 4px 16px rgba(28,24,20,0.08);
}


/* ══════════════════════════════════════
   CLEAN — INK DARK (not teal gradient)
   The dark ink background creates maximum
   contrast and drama — logo's ink quality
══════════════════════════════════════ */
.clean-section {
  background: var(--dark);
  color: var(--white);
  position: relative; overflow: hidden;
}

/* Faint teal atmospheric glow */
.clean-section::before {
  content: ''; position: absolute;
  top: -30%; right: -20%;
  width: 55%; aspect-ratio: 1;
  background: var(--teal); opacity: 0.05;
  border-radius: 50%; pointer-events: none;
}
.clean-section::after {
  content: ''; position: absolute;
  bottom: -20%; left: -10%;
  width: 40%; aspect-ratio: 1;
  background: var(--earth); opacity: 0.04;
  border-radius: 50%; pointer-events: none;
}

.clean-section .section-tag { color: var(--earth); }
.clean-section .section-header h2 { color: var(--white); }
.clean-section .section-header p  { color: rgba(255,255,255,0.58); }

.clean-pillars {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; position: relative; z-index: 2;
}

.clean-pillar {
  padding: 48px 36px; text-align: center;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative; overflow: hidden;
  transition: background 0.3s var(--ease);
}
.clean-pillar::after {
  content: ''; position: absolute;
  bottom: 0; right: 0; left: 0; height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.clean-pillar:hover { background: rgba(255,255,255,0.04); }
.clean-pillar:hover::after { transform: scaleX(1); }

.clean-pillar-icon { width: 52px; height: 52px; margin: 0 auto 24px; display: block; }
.clean-pillar h3 { color: var(--white); margin-bottom: 12px; font-size: 1.15rem; }
.clean-pillar p  { color: rgba(255,255,255,0.60); font-size: 0.93rem; line-height: 1.72; }

.clean-note {
  max-width: 640px; margin: 40px auto 0;
  padding: 28px 36px;
  border: 1px solid rgba(255,255,255,0.10);
  text-align: center; position: relative; z-index: 2;
}
.clean-note p { color: rgba(255,255,255,0.72); font-size: 1rem; font-style: italic; }


/* ══════════════════════════════════════
   MYCELIUM — dark, atmospheric
══════════════════════════════════════ */
.mycelium-section {
  position: relative; overflow: hidden; padding: 120px 0;
}
.mycelium-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #0d1a14 0%, #081818 100%);
}
.mycelium-threads {
  position: absolute; inset: 0; opacity: 0.12;
  background-image:
    radial-gradient(ellipse 250px 1px at 20% 30%, var(--teal)  0%, transparent 100%),
    radial-gradient(ellipse 180px 1px at 60% 20%, var(--gold)  0%, transparent 100%),
    radial-gradient(ellipse 320px 1px at 40% 65%, var(--earth) 0%, transparent 100%),
    radial-gradient(ellipse 120px 1px at 80% 75%, var(--teal)  0%, transparent 100%),
    radial-gradient(ellipse 280px 1px at 10% 80%, var(--gold)  0%, transparent 100%);
  animation: myceliumPulse 8s ease-in-out infinite alternate;
}
@keyframes myceliumPulse {
  0%   { opacity: 0.07; }
  100% { opacity: 0.18; }
}

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

.mycelium-text .section-tag { color: var(--gold); }
.mycelium-text h2 { color: var(--white); margin-bottom: 24px; }
.mycelium-text .lead {
  font-size: 1.05rem; color: rgba(255,255,255,0.68);
  margin-bottom: 36px; font-style: italic; line-height: 1.88;
  border-right: 2px solid var(--gold); padding-right: 20px;
}

.mycelium-facts { display: flex; flex-direction: column; gap: 16px; }
.mycelium-fact  { display: flex; gap: 14px; align-items: flex-start; }
.fact-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; margin-top: 10px; flex-shrink: 0;
}
.mycelium-fact p { color: rgba(255,255,255,0.62); font-size: 0.93rem; line-height: 1.7; }

.mycelium-visual { display: flex; justify-content: center; align-items: center; }
.mycelium-diagram { width: 300px; height: 300px; }
.mycelium-diagram svg { width: 100%; height: 100%; overflow: visible; }


/* ══════════════════════════════════════
   PRODUCTS — editorial grid
══════════════════════════════════════ */
.products-section { background: var(--paper-alt); }

.products-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.product-card {
  background: var(--white); overflow: hidden;
  position: relative;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), z-index 0s;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 56px rgba(28,24,20,0.13);
  z-index: 2;
}

/* Teal accent bar — logo-color stripe at top */
.product-card::before {
  content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px;
  background: var(--card-accent, var(--teal));
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.product-card:hover::before { transform: scaleX(1); }

.product-photo {
  aspect-ratio: 1;
  background: var(--teal-mist);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-card.exotic .product-photo { background: var(--earth-pale); }
/* Exotic cards get the brand orange as their accent colour */
.product-card.exotic { --card-accent: var(--orange); }

.product-mushroom-icon {
  width: 56%; opacity: 0.88; object-fit: contain;
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.product-card:hover .product-mushroom-icon { transform: scale(1.08); opacity: 1; }

.product-photo-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-photo-img { transform: scale(1.06); }

.exotic-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--orange); color: var(--white);
  padding: 5px 12px; font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
}

.product-body { padding: 28px 24px 32px; }
.product-type-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px;
}
.product-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.product-tagline {
  color: var(--teal); font-weight: 600; font-size: 0.88rem;
  font-style: italic; margin-bottom: 14px;
}
.product-card.exotic .product-tagline { color: var(--orange); }
.product-desc { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.65; margin-bottom: 20px; }
.product-uses { display: flex; flex-wrap: wrap; gap: 6px; }
.use-tag {
  background: var(--teal-mist); color: var(--teal);
  padding: 4px 12px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.3px; border-radius: 2px;
}
.product-card.exotic .use-tag { background: var(--orange-pale); color: var(--orange); }


/* ══════════════════════════════════════
   THE FARM
══════════════════════════════════════ */
.farm-section { background: var(--white); }

.farm-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}

.farm-feature-list { display: flex; flex-direction: column; }

.farm-feature {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}
.farm-feature:first-child { border-top: 1px solid var(--border-light); }

.farm-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--teal-mist); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.farm-feature-icon svg { width: 22px; height: 22px; }

.farm-feature-text strong {
  display: block; font-size: 0.96rem; font-weight: 700;
  color: var(--ink); margin-bottom: 3px;
}
.farm-feature-text span {
  font-size: 0.87rem; color: var(--ink-soft); line-height: 1.55;
}

.farm-quote {
  margin-top: 32px;
  border-right: 3px solid var(--teal); padding-right: 20px;
}
.farm-quote blockquote {
  font-style: italic; color: var(--ink-soft);
  font-size: 0.95rem; line-height: 1.72;
}
.farm-quote cite {
  display: block; margin-top: 8px;
  font-size: 0.8rem; color: var(--teal); font-weight: 700; font-style: normal;
}


/* ══════════════════════════════════════
   OUR STORY
══════════════════════════════════════ */
.story-section { background: var(--paper-alt); }

.story-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.story-text h2 { margin-bottom: 20px; }
.story-text .lead {
  font-size: 1.05rem; color: var(--ink-soft);
  margin-bottom: 20px; line-height: 1.85;
}
.story-text p { color: var(--ink-soft); margin-bottom: 28px; line-height: 1.82; }

/* Timeline */
.timeline { display: flex; flex-direction: column; position: relative; }
.timeline::before {
  content: ''; position: absolute; right: 19px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--teal) 15%, var(--teal) 85%, transparent);
}
.timeline-item {
  display: grid; grid-template-columns: 40px 1fr;
  gap: 20px; padding-bottom: 32px; position: relative;
}
.timeline-dot {
  width: 40px; height: 40px;
  border: 2px solid var(--teal); background: var(--paper-alt);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; position: relative; z-index: 1;
  font-size: 0.68rem; font-weight: 800; color: var(--teal);
}
.timeline-content { padding-top: 8px; }
.timeline-year {
  font-size: 0.72rem; font-weight: 700; color: var(--teal);
  letter-spacing: 1px; margin-bottom: 4px;
}
.timeline-content p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }


/* ══════════════════════════════════════
   PRESS
══════════════════════════════════════ */
.press-section { background: var(--white); }

.press-quotes {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2px; margin-bottom: 64px;
}

.press-quote {
  padding: 40px; border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.press-quote:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 28px rgba(61,142,138,0.08);
}
.quote-mark {
  font-size: 6rem; line-height: 0.5; color: var(--teal-mist);
  font-family: Georgia, serif; display: block; margin-bottom: 20px;
}
.press-quote p {
  font-size: 0.97rem; color: var(--ink-mid); line-height: 1.82;
  margin-bottom: 20px; font-style: italic;
}
.quote-source {
  font-size: 0.76rem; font-weight: 700; color: var(--teal);
  letter-spacing: 1.5px; text-transform: uppercase;
}

.press-logos-label {
  text-align: center; font-size: 0.66rem; font-weight: 700;
  color: var(--ink-soft); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 28px;
}
.press-logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 56px; flex-wrap: wrap;
}
.press-logo-item {
  font-size: 1.05rem; font-weight: 800; color: var(--ink-soft);
  opacity: 0.4; transition: opacity 0.2s, color 0.2s; letter-spacing: 0.5px;
}
.press-logo-item:hover { opacity: 0.9; color: var(--teal); }



/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-section { background: var(--paper); }

.contact-inner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 42px; height: 42px; background: var(--teal-mist); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item-text strong {
  display: block; font-size: 0.88rem; font-weight: 700;
  color: var(--ink); margin-bottom: 2px;
}
.contact-item-text span { font-size: 0.88rem; color: var(--ink-soft); }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 42px; height: 42px;
  background: var(--white); border: 1.5px solid var(--border); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: border-color 0.2s, background 0.2s, transform 0.22s var(--ease);
}
.social-link:hover {
  border-color: var(--teal); background: var(--teal-mist);
  transform: translateY(-2px);
}

.contact-form {
  background: var(--white); border: 1.5px solid var(--border);
  padding: 44px;
}
.contact-form h3 { margin-bottom: 28px; color: var(--ink); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.3px; color: var(--ink-mid); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 0;
  font-family: var(--font); font-size: 0.95rem; color: var(--ink);
  background: var(--paper); transition: border-color 0.2s, background 0.2s;
  direction: rtl; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal); background: var(--white);
  box-shadow: 0 0 0 3px rgba(61,142,138,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--dark); color: var(--white); padding: 72px 0 36px; }

.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo-img {
  height: 64px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.82;
  margin-bottom: 18px; display: block;
}
.footer-brand p { color: rgba(255,255,255,0.40); font-size: 0.87rem; line-height: 1.75; max-width: 240px; }

.footer-col h4 {
  color: rgba(255,255,255,0.36); margin-bottom: 20px;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.50); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.28); font-size: 0.78rem; }


/* ══════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 28px; left: 28px;
  width: 46px; height: 46px;
  background: var(--teal); color: var(--white);
  border: none; border-radius: 3px; font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(61,142,138,0.35);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover   { transform: translateY(-3px); }


/* ══════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════ */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="100"] { transition-delay: 0.10s; }
[data-reveal-delay="200"] { transition-delay: 0.20s; }
[data-reveal-delay="300"] { transition-delay: 0.30s; }
[data-reveal-delay="400"] { transition-delay: 0.40s; }

/* Focus */
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 2px; }


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-item   { grid-template-columns: 80px 1fr; }
  .why-num    { font-size: 4rem; padding-left: 24px; }
  .why-body   { padding-right: 28px; }
  .products-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .press-quotes   { grid-template-columns: 1fr; }
  .hero-inner     { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual    { align-items: center; }
  .health-inner   { gap: 56px; }
  .story-inner    { gap: 56px; }
}

@media (max-width: 768px) {
  .section    { padding: 80px 0; }
  .container  { padding: 0 20px; }
  h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; right: 0; left: 0;
    background: var(--paper); padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(28,24,20,0.08); z-index: 999;
  }
  .hamburger { display: flex; }

  .hero-inner     { grid-template-columns: 1fr; }
  .health-inner   { grid-template-columns: 1fr; }
  .health-visual  { display: none; }
  .mycelium-inner { grid-template-columns: 1fr; }
  .mycelium-visual{ display: none; }
  .story-inner    { grid-template-columns: 1fr; }
  .contact-inner  { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .hero-actions   { flex-direction: column; align-items: flex-start; }
  .products-grid  { grid-template-columns: 1fr; }
  .clean-pillars  { grid-template-columns: 1fr; }
  .farm-inner     { grid-template-columns: 1fr; }

  .why-item  { grid-template-columns: 72px 1fr; padding: 36px 0; }
  .why-num   { font-size: 3.5rem; padding-left: 20px; }
  .why-body  { padding-right: 20px; gap: 20px; }
}

@media (max-width: 480px) {
  .footer-inner   { grid-template-columns: 1fr; }
  .hero-stats     { flex-direction: column; }
  .hero-stat      { border-left: none; border-top: 1.5px solid var(--border); }
  .hero-stat:first-child { border-top: none; }
  .why-item  { grid-template-columns: 1fr; gap: 8px; padding: 32px 0; }
  .why-num   { border-left: none; padding-left: 0; font-size: 3rem; }
  .why-body  { padding-right: 0; border: none; flex-direction: column; gap: 14px; }
  .press-quotes   { grid-template-columns: 1fr; }
  .clean-pillars  { grid-template-columns: 1fr; }
}
