/* =========================================================================
   FRAICHE RECOLTE — Main stylesheet
   Editorial farm aesthetic · Bilingual (EN/AR) · Responsive
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand colors */
  --green: #33AE5E;
  --green-dark: #0C2C28;
  --green-pale: #D6EFDF;
  --green-muted: #7FB896;

  /* Neutrals — warm, paper-like */
  --cream: #F5EFE4;
  --cream-dark: #EAE1D0;
  --ink: #1A2624;
  --ink-soft: #4A5956;
  --ink-faint: #8A9794;
  --white: #FDFBF6;
  --black: #0A1414;

  /* Semantic */
  --bg: var(--cream);
  --surface: var(--white);
  --text: var(--ink);
  --text-muted: var(--ink-soft);
  --accent: var(--green);
  --accent-deep: var(--green-dark);

  /* Typography scale — editorial, responsive */
  --fs-display: clamp(3.5rem, 10vw, 8.5rem);
  --fs-h1: clamp(2.5rem, 6vw, 5rem);
  --fs-h2: clamp(2rem, 4.5vw, 3.75rem);
  --fs-h3: clamp(1.5rem, 2.5vw, 2.25rem);
  --fs-h4: clamp(1.15rem, 1.5vw, 1.35rem);
  --fs-lead: clamp(1.125rem, 1.5vw, 1.35rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  /* Spacing — rhythmic */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;
  --sp-8: 8rem;
  --sp-9: 10rem;

  /* Layout */
  --max-w: 1440px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur: 400ms;
  --dur-slow: 800ms;

  /* Borders & radii */
  --border: 1px solid rgba(12, 44, 40, 0.12);
  --border-strong: 1px solid rgba(12, 44, 40, 0.22);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea { font: inherit; color: inherit; }

/* ---------- Typography system ---------- */
.font-display {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-feature-settings: 'ss01', 'ss02';
}
.font-display-italic {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
}
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--accent);
  display: inline-block;
}
.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
}

/* Arabic typography */
html[lang="ar"] body {
  font-family: 'Tajawal', 'Manrope', sans-serif;
  letter-spacing: 0;
}
html[lang="ar"] .font-display {
  font-family: 'Readex Pro', 'Tajawal', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
/* Arabic needs slightly smaller display sizes because of taller glyphs */
html[lang="ar"] .hero-title { font-size: clamp(3rem, 8vw, 6.5rem); line-height: 1.1; }
html[lang="ar"] .about-title,
html[lang="ar"] .harvest-title,
html[lang="ar"] .sustainability-title,
html[lang="ar"] .contact-title { font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.15; }
html[lang="ar"] .cta-title { font-size: clamp(2rem, 5.5vw, 4rem); line-height: 1.2; }
html[lang="ar"] .mono {
  font-family: 'Tajawal', sans-serif;
}
html[lang="ar"] .eyebrow {
  font-family: 'Tajawal', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ---------- Layout containers ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--sp-8);
  position: relative;
}
.section-sm { padding-block: var(--sp-6); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--accent-deep);
  color: var(--white);
  border-color: var(--accent-deep);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(12, 44, 40, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: currentColor;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-on-dark {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 239, 228, 0.4);
}
.btn-on-dark:hover {
  background: var(--cream);
  color: var(--accent-deep);
  border-color: var(--cream);
}
.btn .arrow {
  transition: transform var(--dur) var(--ease);
  width: 14px;
  height: 14px;
}
.btn:hover .arrow { transform: translateX(4px); }
html[dir="rtl"] .btn:hover .arrow { transform: translateX(-4px) scaleX(-1); }
html[dir="rtl"] .btn .arrow { transform: scaleX(-1); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
}
.nav.scrolled {
  background: rgba(245, 239, 228, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: var(--border);
}
.nav.on-dark:not(.scrolled) { color: var(--cream); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Fraunces', serif;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-brand img {
  height: 48px;
}
.nav-brand-mark {
  width: 32px;
  height: 34px;
  color: var(--accent);
  transition: color var(--dur) var(--ease);
}
.nav-brand-text { line-height: 1; }
.nav-brand-tag {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 3px;
  opacity: 0.65;
  font-weight: 600;
}
html[lang="ar"] .nav-brand { font-family: 'Readex Pro', sans-serif; font-weight: 600; }
html[lang="ar"] .nav-brand-tag { font-family: 'Tajawal', sans-serif; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--fs-small);
}
.nav-link {
  position: relative;
  padding: 0.5rem 0;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--dur) var(--ease);
  opacity: 0.85;
}
.lang-toggle:hover { opacity: 1; }
.lang-toggle svg { width: 14px; height: 14px; }

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
}
/* Mobile nav overlay — hidden on desktop, revealed by .open on mobile/tablet */
.nav-mobile {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--accent-deep);
  color: var(--cream);
  padding: 5rem var(--gutter) var(--sp-4);
  display: none;
  flex-direction: column;
  gap: var(--sp-3);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
  overflow-y: auto;
}
.nav-mobile.open { transform: translateY(0); }
.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--accent-deep);
  color: var(--cream);
  padding-top: calc(var(--sp-6) + 70px);
  padding-bottom: calc(var(--sp-5) + 90px); /* reserve space for stats bar */
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(51, 174, 94, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(51, 174, 94, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-5);
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--green-pale);
  margin-bottom: var(--sp-4);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--green);
}
.hero-title {
  font-size: var(--fs-display);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: var(--sp-4);
  font-weight: 300;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordUp 1s var(--ease-out) forwards;
}
.hero-title .word:nth-child(1) { animation-delay: 0.35s; }
.hero-title .word:nth-child(2) { animation-delay: 0.5s; }
.hero-title .word:nth-child(3) { animation-delay: 0.65s; }
.hero-title .word:nth-child(4) { animation-delay: 0.8s; }
.hero-title .ital {
  font-style: italic;
  font-weight: 300;
  color: var(--green);
}
.hero-lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--green-pale);
  max-width: 44ch;
  margin-bottom: var(--sp-5);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.95s forwards;
}
html[lang="ar"] .hero-lead { line-height: 1.85; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.1s forwards;
}

/* Hero visual composition (right side) */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
  opacity: 0;
  animation: fadeIn 1.4s var(--ease-out) 0.6s forwards;
}
.hero-photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-main {
  top: 5%;
  inset-inline-end: 0;
  width: 78%;
  aspect-ratio: 3/4;
}
.hero-photo-accent {
  bottom: 0;
  inset-inline-start: 0;
  width: 52%;
  aspect-ratio: 4/3;
  border: 6px solid var(--accent-deep);
}
.hero-photo-sticker {
  position: absolute;
  top: 0;
  inset-inline-start: 40%;
  width: 110px;
  height: 110px;
  background: var(--accent);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.1;
  animation: spinSlow 30s linear infinite;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.hero-photo-sticker-inner {
  transform: none;
  font-weight: 500;
  padding: 0 1rem;
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding-block: var(--sp-3);
  border-top: 1px solid rgba(245, 239, 228, 0.12);
  z-index: 2;
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: var(--sp-4);
  align-items: center;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--cream);
}
html[lang="ar"] .hero-stat-num { font-family: 'Readex Pro', sans-serif; font-weight: 500; }
.hero-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-muted);
  font-weight: 500;
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-pale);
  justify-self: end;
}
.hero-scroll-line {
  width: 30px;
  height: 1px;
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  animation: scrollLine 2s var(--ease) infinite;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--accent-deep);
  color: var(--cream);
  padding: 1.25rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(245, 239, 228, 0.08);
  border-bottom: 1px solid rgba(245, 239, 228, 0.08);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: scroll 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
html[dir="rtl"] .marquee-track {
  animation-direction: reverse;
}
.marquee-item {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  color: var(--cream);
}
html[lang="ar"] .marquee-item {
  font-family: 'Readex Pro', serif;
  font-weight: 400;
  font-style: normal;
}
.marquee-item::after {
  content: '✦';
  font-style: normal;
  color: var(--accent);
  font-size: 1rem;
}

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

/* ---------- About ---------- */
.about {
  padding-block: var(--sp-8);
  position: relative;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--sp-6);
  align-items: start;
}
.about-title {
  font-size: var(--fs-h1);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: var(--sp-3);
  font-weight: 300;
}
.about-title .ital { font-style: italic; color: var(--accent); font-weight: 300; }
.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 56ch;
}
html[lang="ar"] .about-text { line-height: 1.9; }

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: var(--border);
}
.about-feature {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.about-feature-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 400;
}
html[lang="ar"] .about-feature-num { font-family: 'Readex Pro', sans-serif; font-style: normal; }
.about-feature-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
html[lang="ar"] .about-feature-title { font-family: 'Readex Pro', sans-serif; font-weight: 600; line-height: 1.3; }
.about-feature-body {
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------- Harvest (products) ---------- */
.harvest {
  background: var(--white);
  padding-block: var(--sp-8);
  position: relative;
}
.harvest-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: end;
  margin-bottom: var(--sp-6);
}
.harvest-title {
  font-size: var(--fs-h1);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 300;
}
.harvest-title .ital { font-style: italic; color: var(--accent); }
.harvest-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 48ch;
  line-height: 1.6;
}

/* Filters */
.harvest-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: var(--border);
}
.filter-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(12, 44, 40, 0.15);
  color: var(--text-muted);
  transition: all var(--dur) var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--text); }
.filter-btn.active {
  background: var(--accent-deep);
  color: var(--cream);
  border-color: var(--accent-deep);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4) var(--sp-3);
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-slow) var(--ease);
}
.product-card.hidden { display: none; }
.product-media {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream);
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: var(--sp-3);
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.product-card:hover .product-media img {
  transform: scale(1.06);
}
.product-num {
  display: none;
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  z-index: 2;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--accent-deep);
  background: var(--cream);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-weight: 500;
}
html[lang="ar"] .product-num { font-family: 'Readex Pro', sans-serif; font-style: normal; font-weight: 600; }
.product-category {
  position: absolute;
  bottom: 1rem;
  inset-inline-end: 1rem;
  z-index: 2;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream);
  background: rgba(12, 44, 40, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
}
.product-name {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}
html[lang="ar"] .product-name { font-family: 'Readex Pro', sans-serif; font-weight: 600; line-height: 1.4; }
.product-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Sustainability ---------- */
.sustainability {
  background: var(--accent-deep);
  color: var(--cream);
  padding-block: var(--sp-8);
  position: relative;
  overflow: hidden;
}
.sustainability::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(51, 174, 94, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.sustainability-header {
  max-width: 720px;
  margin-bottom: var(--sp-6);
  position: relative;
  z-index: 1;
}
.sustainability-title {
  font-size: var(--fs-h1);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: var(--sp-2) 0 var(--sp-3);
  font-weight: 300;
}
.sustainability-title .ital { font-style: italic; color: var(--accent); }
.sustainability-subtitle {
  font-size: 1.15rem;
  color: var(--green-pale);
  line-height: 1.65;
  max-width: 52ch;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  position: relative;
  z-index: 1;
}
.pillar {
  padding: var(--sp-4) 0;
  border-top: 1px solid rgba(245, 239, 228, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.pillar-mark {
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.pillar-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--cream);
}
html[lang="ar"] .pillar-title { font-family: 'Readex Pro', sans-serif; font-weight: 500; }
.pillar-body {
  color: var(--green-pale);
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.85;
}

/* ---------- CTA band ---------- */
.cta-band {
  padding-block: var(--sp-8);
  background: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '✦';
  position: absolute;
  top: 20%;
  left: 8%;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.25;
}
.cta-band::after {
  content: '✦';
  position: absolute;
  bottom: 20%;
  right: 8%;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.25;
}
.cta-title {
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 300;
  max-width: 14ch;
  margin: 0 auto var(--sp-3);
}
.cta-title .ital { font-style: italic; color: var(--accent); }
.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0 auto var(--sp-4);
  line-height: 1.65;
}

/* ---------- Contact ---------- */
.contact {
  padding-block: var(--sp-8);
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--sp-6);
  align-items: start;
}
.contact-title {
  font-size: var(--fs-h1);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: var(--sp-2) 0 var(--sp-3);
  font-weight: 300;
}
.contact-title .ital { font-style: italic; color: var(--accent); }
.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  border-top: var(--border);
  padding-top: var(--sp-4);
}
.contact-info-heading {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  margin-bottom: var(--sp-3);
}
html[lang="ar"] .contact-info-heading {
  font-family: 'Readex Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
}
.contact-form-heading { margin-bottom: var(--sp-2); }
.contact-info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--sp-2);
}
.contact-info-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 600;
  padding-top: 0.2rem;
}
.contact-info-value {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 400;
}
html[lang="ar"] .contact-info-value { font-family: 'Readex Pro', sans-serif; }

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.form-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 600;
}
.form-input,
.form-textarea {
  padding: 0.9rem 0;
  border: none;
  border-bottom: 1.5px solid rgba(12, 44, 40, 0.18);
  background: transparent;
  font-size: 1.05rem;
  font-family: inherit;
  transition: border-color var(--dur) var(--ease);
  border-radius: 0;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-deep);
}
.form-textarea {
  min-height: 100px;
  resize: vertical;
}
.form-success {
  padding: 1rem 1.25rem;
  background: var(--green-pale);
  border-radius: var(--radius);
  color: var(--accent-deep);
  font-weight: 500;
  display: none;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: var(--sp-7) 0 var(--sp-4);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid rgba(245, 239, 228, 0.12);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand-logo img { height: 128px; }
.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
}
html[lang="ar"] .footer-brand-name { font-family: 'Readex Pro', sans-serif; font-weight: 600; }
.footer-brand-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-muted);
  margin-top: 4px;
}
.footer-col-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-muted);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.95rem;
}
.footer-list a {
  color: var(--cream);
  opacity: 0.75;
  transition: opacity var(--dur) var(--ease);
}
.footer-list a:hover { opacity: 1; color: var(--accent); }
.footer-newsletter-body {
  font-size: 0.9rem;
  color: var(--green-pale);
  opacity: 0.7;
  margin-bottom: var(--sp-2);
  line-height: 1.55;
}
.newsletter-form {
  display: flex;
  border: 1.5px solid rgba(245, 239, 228, 0.25);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.newsletter-form:focus-within { border-color: var(--accent); }
.newsletter-input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 0.9rem;
  min-width: 0;
}
.newsletter-input::placeholder { color: rgba(245, 239, 228, 0.5); }
.newsletter-input:focus { outline: none; }
.newsletter-btn {
  padding: 0 1.25rem;
  background: var(--accent);
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--dur) var(--ease);
}
.newsletter-btn:hover { background: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-4);
  font-size: 0.8rem;
  color: var(--green-muted);
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.footer-bottom-crafted {
  font-family: 'Fraunces', serif;
  font-style: italic;
}
html[lang="ar"] .footer-bottom-crafted { font-family: 'Readex Pro', sans-serif; font-style: normal; }

/* ---------- Reveal animations (progressive enhancement) ---------- */
/* Content is visible by default. Only hide when body has .js-ready class. */
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
body.js-ready .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
body.js-ready .reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
body.js-ready .reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
body.js-ready .reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
body.js-ready .reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
body.js-ready .reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
body.js-ready .reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
body.js-ready .reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }

/* ---------- Keyframes ---------- */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wordUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

/* ---------- RTL specific adjustments ---------- */
html[dir="rtl"] .hero-scroll { justify-self: start; }
html[dir="rtl"] @keyframes scrollLine {
  0% { transform: translateX(100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ---------- Responsive: Tablet & small desktop ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-5); }
  .hero-visual { max-width: 500px; margin: 0 auto; width: 100%; }
  .hero-stats-inner { grid-template-columns: repeat(3, 1fr); }
  .hero-scroll { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .about-features { grid-template-columns: repeat(3, 1fr); }
  .harvest-header { grid-template-columns: 1fr; gap: var(--sp-3); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
}

/* Hamburger kicks in below 900px (covers iPad Mini and below) */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-mobile { display: flex; }
  .nav-mobile .nav-link {
    font-family: 'Fraunces', serif;
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(245, 239, 228, 0.15);
    white-space: normal;
  }
  html[lang="ar"] .nav-mobile .nav-link {
    font-family: 'Readex Pro', sans-serif;
    font-weight: 500;
  }
}

/* ---------- Responsive: Mobile ---------- */
@media (max-width: 720px) {
  :root { --sp-8: 5rem; --sp-7: 4rem; }
  .lang-toggle { padding: 0.5rem 0.75rem; font-size: 0.7rem; }
  .lang-toggle svg { width: 13px; height: 13px; }

  .nav-brand-text { font-size: 1rem; }
  .nav-brand-mark { width: 26px; height: 28px; }
  .nav-brand-tag { font-size: 0.55rem; }

  .hero {
    padding-top: calc(var(--sp-5) + 60px);
    padding-bottom: var(--sp-5);
    min-height: auto;
    display: block;
  }
  .hero-title { letter-spacing: -0.04em; }
  .hero-visual { max-width: 100%; aspect-ratio: 1 / 1.05; margin-top: var(--sp-4); }
  .hero-photo-sticker { width: 80px; height: 80px; font-size: 0.75rem; }
  .hero-stats {
    position: static !important;
    inset: auto !important;
    margin-top: var(--sp-4);
    padding-top: var(--sp-3);
    border-top: 1px solid rgba(245, 239, 228, 0.12);
  }
  .hero-stats-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: var(--sp-2);
  }
  .hero-stat-num { font-size: 1.45rem; }
  .hero-stat-label { font-size: 0.6rem; letter-spacing: 0.12em; }
  .hero-scroll { display: none !important; }

  .about-features { grid-template-columns: 1fr; gap: var(--sp-4); }
  .product-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .pillar-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-4); }
  .contact-info-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .contact-info-label { padding-top: 0; }

  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
