/* =============================================
   MADAGASCAR PURE VANILLA — Stylesheet
   ============================================= */

:root {
  --brown:      #3d1f0a;
  --brown-mid:  #6b3a1f;
  --brown-light:#a0622a;
  --gold:       #c8963e;
  --gold-light: #e8b96e;
  --cream:      #faf6f0;
  --cream-dark: #f0e8d8;
  --green:      #2d5a27;
  --green-light:#4a8242;
  --dark:       #1a1209;
  --text:       #3d2e1a;
  --text-light: #7a6552;
  --white:      #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1200px;
  --radius: 4px;
  --transition: 0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
html { font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* CONTAINER */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
h3 { font-size: 1.4rem; font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.02em; }
em { font-style: italic; }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 1rem auto 0;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 { margin-bottom: 0.5rem; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  border-radius: var(--radius);
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--brown-mid);
}
.btn-outline-dark:hover { background: var(--brown-mid); color: var(--white); }
.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.75rem;
  background: transparent;
  border: 1px solid var(--brown-light);
  color: var(--brown-mid);
}
.btn-sm:hover { background: var(--brown-mid); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   HEADER
   ============================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  background: rgba(26, 18, 9, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  max-width: calc(var(--max-w) + 4rem);
  margin: 0 auto;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
}
.logo-mark {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.03em;
}
.logo-text em { color: var(--gold-light); font-style: italic; }

/* MAIN NAV */
#nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
#nav a:hover { color: var(--gold-light); }
#nav .nav-cta {
  background: var(--gold);
  color: var(--dark);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
}
#nav .nav-cta:hover { background: var(--gold-light); color: var(--dark); }

/* LANG TOGGLE */
.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-toggle {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  transition: all var(--transition);
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* MOBILE MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(26, 18, 9, 0.98);
  z-index: 99;
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,18,9,0.82) 0%,
    rgba(61,31,10,0.65) 50%,
    rgba(26,18,9,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  color: var(--white);
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
h1 {
  margin-bottom: 1.5rem;
  color: var(--white);
}
h1 em { color: var(--gold-light); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.7); }
}

/* =============================================
   PAGE HERO (sub-hero for inner pages)
   ============================================= */
.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero .hero-content {
  padding: 7rem 2rem 4rem;
}

/* =============================================
   PAGE CTA BAND
   ============================================= */
.page-cta {
  padding: 5rem 0;
  text-align: center;
}
.page-cta h2 { margin-bottom: 1rem; }
.page-cta p { color: var(--text-light); margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.page-cta.section-dark h2 { color: var(--white); }
.page-cta.section-dark p { color: rgba(255,255,255,0.7); }
.page-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   STATS BAND
   ============================================= */
.stats-band {
  background: var(--brown);
  padding: 2rem 0;
}
.stats-band .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 3rem;
  color: var(--white);
}
.stat strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* =============================================
   ABOUT
   ============================================= */
#about {
  padding: 7rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image { position: relative; }
.about-img-frame {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-frame img { height: 100%; }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--brown);
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
  min-width: 140px;
}
.about-badge span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-badge em {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-top: 0.3rem;
  font-weight: 300;
}
.about-text h2 { margin: 0.5rem 0 1.5rem; }
.about-text p { color: var(--text-light); margin-bottom: 1.2rem; }
.about-text .btn { margin-top: 0.5rem; }

/* =============================================
   PRODUCTS
   ============================================= */
#products {
  padding: 7rem 0;
}
.section-dark {
  background: var(--brown);
  color: var(--white);
}
.section-dark h2 { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,0.65); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.product-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-img img { height: 100%; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}
.product-body { padding: 1.5rem; }
.product-body h3 { font-size: 1.1rem; margin-bottom: 0.7rem; color: var(--white); }
.product-body > p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 1rem; line-height: 1.65; }
.product-specs {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.product-specs li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  gap: 0.4rem;
}
.product-specs li span { color: var(--gold-light); font-weight: 500; }
.product-body .btn-sm {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}
.product-body .btn-sm:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* =============================================
   SPICES
   ============================================= */
#spices {
  padding: 7rem 0;
  background: var(--cream);
}
.spices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.spice-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.spice-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(200,150,62,0.1);
  transform: translateY(-2px);
}
.spice-card:hover .spice-img img { transform: scale(1.05); }
.spice-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
.spice-img img { height: 100%; transition: transform 0.5s ease; }
.spice-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.spice-card h3 {
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 0.8rem;
}
.spice-body > p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.7;
  flex-grow: 1;
}
.spice-meta {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.spice-meta li {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  gap: 0.4rem;
}
.spice-meta li span:first-child { color: var(--brown-light); font-weight: 500; }
.spice-card .btn-sm { align-self: flex-start; }

/* =============================================
   ORIGIN
   ============================================= */
#origin { padding: 7rem 0; }
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.origin-text h2 { margin: 0.5rem 0 1.5rem; }
.origin-text p { color: var(--text-light); margin-bottom: 1.2rem; }
.origin-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.origin-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border-radius: 50%;
  flex-shrink: 0;
}
.origin-feature strong { display: block; font-weight: 600; color: var(--brown); }
.origin-feature p { margin: 0; font-size: 0.88rem; color: var(--text-light); }
.origin-image { position: relative; }
.origin-image img {
  border-radius: 2px;
  aspect-ratio: 4/5;
  height: 100%;
}
.origin-map-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(26,18,9,0.9);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
}
.origin-map-badge svg { color: var(--gold); }

/* =============================================
   PROCESS TIMELINE
   ============================================= */
.section-cream { background: var(--brown); padding: 7rem 0; }
.section-cream .section-header h2 { color: var(--white); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(25% / 2);
  right: calc(25% / 2);
  height: 1px;
  background: rgba(255,255,255,0.15);
  z-index: 0;
}
.timeline-step { position: relative; z-index: 1; }
.step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
}
.step-number::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-light);
}
.step-content { padding-top: 1rem; }
.step-content h4 { margin-bottom: 0.5rem; color: var(--white); }
.step-content p { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* =============================================
   VALUES
   ============================================= */
#values { padding: 7rem 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value-card {
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(200,150,62,0.1);
  transform: translateY(-2px);
}
.value-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.value-icon svg { width: 100%; height: 100%; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.8rem; }
.value-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* =============================================
   CONTACT
   ============================================= */
#contact { padding: 7rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-text h2 { color: var(--white); margin: 0.5rem 0 1.5rem; }
.contact-text p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.contact-info-item svg { color: var(--gold); flex-shrink: 0; }
.contact-info-item a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.contact-info-item a:hover { color: var(--gold-light); }

/* FORM */
.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--brown); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder { color: rgba(255,255,255,0.25); }

.form-success {
  display: none;
  align-items: center;
  gap: 0.8rem;
  background: rgba(45,90,39,0.3);
  border: 1px solid rgba(74,130,66,0.5);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; color: var(--green-light); flex-shrink: 0; }

.form-error {
  display: none;
  align-items: center;
  gap: 0.8rem;
  background: rgba(140, 30, 30, 0.25);
  border: 1px solid rgba(200, 70, 70, 0.5);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.form-error.show { display: flex; }
.form-error svg { width: 20px; height: 20px; color: #e88a8a; flex-shrink: 0; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr 1.4fr;
  gap: 3rem;
  padding: 4rem 2rem;
}
.footer-range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}
.footer-range-grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-subhead {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 260px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-contact a, .footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  word-break: break-word;
}
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.2rem 2rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .spices-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  #nav { display: none; }
  .menu-toggle { display: flex; }
  .about-grid, .origin-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { order: -1; }
  .about-badge { right: 0; bottom: -1rem; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .stat { padding: 0.8rem 1.5rem; }
  .stat-divider { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.2rem; }
  .header-inner { padding: 1rem 1.2rem; }
  .hero-content { padding: 5rem 1.2rem 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .stats-band .container { flex-direction: column; gap: 0.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }
  .contact-form-wrap { padding: 1.5rem; }
}
