/* ===========================================
   Frutas J. Berenguer · jberenguer.es
   Pixel-perfect port of DirD.jsx prototype
   =========================================== */

:root {
  /* Brand palette */
  --cream:  #F5F0E6;
  --ink:    #1A1613;
  --accent: #943634;
  --moss:   #1B5E20;
  --green:  #2E7D32;
  --yellow: #FFC000;
  --footer-green: #0A1F12;
  --region-bg: #EFE8DA;

  /* Typography */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Fluid type scale (320 → 1440px) */
  --h1:          clamp(56px, 7.8vw, 112px);
  --h2-products: clamp(48px, 6.1vw, 88px);
  --h2-process:  clamp(52px, 6.6vw, 96px);
  --h2-contact:  clamp(48px, 6.6vw, 96px);
  --h2-manoli:   clamp(64px, 8.3vw, 120px);
  --h2-region:   clamp(40px, 4.7vw, 68px);
  --h2-story:    clamp(38px, 4.4vw, 64px);
  --h2-sust:     clamp(34px, 3.6vw, 52px);
  --quote-size:  clamp(32px, 3.9vw, 56px);

  /* Spacing */
  --pad-x:         clamp(20px, 5vw, 72px);
  --pad-y-section: clamp(72px, 8.3vw, 120px);

  /* Easing */
  --ease-out: cubic-bezier(.22,.61,.36,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; color: inherit; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.serif { font-family: var(--font-serif); font-optical-sizing: auto; }
.mono  { font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.rule  { display: inline-block; width: 28px; height: 1px; background: var(--accent); vertical-align: middle; margin-right: 12px; }

a { color: inherit; }
.link {
  position: relative; color: var(--ink); text-decoration: none;
  font-size: 14px; transition: color .2s;
}
.link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right; transition: transform .3s;
}
.link:hover { color: var(--accent); }
.link:hover::after { transform: scaleX(1); transform-origin: left; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 500; font-size: 14px; border: none; cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  font-family: inherit; text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.btn-arrow .arrow { display: inline-block; transition: transform .25s var(--ease-out); }
.btn-arrow:hover .arrow { transform: translateX(4px); }

.btn-dark   { background: var(--ink); color: var(--cream); }
.btn-moss   { background: var(--moss); color: var(--cream); }
.btn-yellow { background: var(--yellow); color: var(--ink); justify-content: center; padding: 16px; }
.btn-ghost  { background: transparent; color: var(--ink); border: 1px solid rgba(26,22,19,.25); }

/* Layout container — full-bleed for backgrounds, max 1440 inside */
.page { width: 100%; max-width: 1440px; margin-inline: auto; }

/* =========================================
   Top bar
   ========================================= */
.topbar {
  background: var(--ink); color: var(--cream);
  padding: 8px var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; letter-spacing: 0.3px;
}
.topbar-slogan { opacity: 0.85; }
.topbar-right { display: flex; gap: 24px; align-items: center; }
.topbar-right > span { opacity: 0.85; }
.lang-switcher { display: flex; gap: 2px; margin-left: 8px; }
.lang-switcher a {
  text-decoration: none; color: var(--cream); padding: 3px 9px;
  border-radius: 4px; font-size: 11px; font-weight: 600;
  background: transparent; transition: background .15s, color .15s;
}
.lang-switcher a.is-active { background: var(--yellow); color: var(--ink); }

/* =========================================
   Nav
   ========================================= */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  padding: 24px var(--pad-x);
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(26,22,19,.06);
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav-wrap.is-scrolled {
  background: rgba(245,240,230,.95);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 rgba(26,22,19,.06), 0 8px 24px rgba(26,22,19,.03);
}
.nav-brand { font-family: var(--font-serif); font-size: 24px; font-weight: 600; letter-spacing: -0.5px; }
.nav-links { flex: 1; display: flex; justify-content: center; gap: 32px; }
.nav-cta { background: var(--ink); color: var(--cream); }

.nav-toggle {
  display: none; background: transparent; border: none; cursor: pointer;
  padding: 8px; margin-left: auto; color: var(--ink);
}
.nav-toggle svg { display: block; }

/* =========================================
   Hero
   ========================================= */
.hero {
  padding: 96px var(--pad-x) 80px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end;
}
.hero-eyebrow { color: var(--accent); margin-bottom: 40px; }
.hero h1 {
  font-family: var(--font-serif); font-size: var(--h1);
  line-height: 0.94; font-weight: 300; letter-spacing: -3px; margin: 0;
}
.hero h1 em { font-style: italic; font-weight: 400; }
.hero h1 .moss { color: var(--moss); }
.hero h1 span, .hero h1 em { display: inline-block; }
.hero-ctas { margin-top: 40px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-body { font-size: 18px; line-height: 1.65; max-width: 460px; text-wrap: pretty; }
.hero-aside { padding-bottom: 20px; position: relative; }

.hero-illust { position: relative; height: 280px; margin-top: 32px; }
.hero-illust .circle-orange {
  position: absolute; right: 0; top: 0; width: 200px; height: 200px;
  border-radius: 50%; background: var(--moss);
  display: flex; align-items: center; justify-content: center;
}
.hero-illust .circle-yellow {
  position: absolute; right: 170px; top: 110px; width: 130px; height: 130px;
  border-radius: 50%; background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
}
.hero-illust .season-card {
  position: absolute; left: 0; top: 160px; background: var(--ink); color: var(--cream);
  padding: 14px 18px; border-radius: 12px; max-width: 210px;
}
.hero-illust .season-card .mono { opacity: 0.55; margin-bottom: 4px; font-size: 10px; }
.hero-illust .season-card .title { font-family: var(--font-serif); font-size: 16px; font-weight: 500; line-height: 1.3; }

/* =========================================
   Stats strip
   ========================================= */
.stats-wrap { padding: 0 var(--pad-x) 96px; }
.stats {
  background: var(--ink); color: var(--cream);
  padding: 40px 48px; border-radius: 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.stat {
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 130px;
  border-left: 1px solid rgba(245,240,230,.12); padding-left: 32px;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-label {
  font-family: var(--font-serif); font-size: 30px; color: var(--yellow);
  font-weight: 500; letter-spacing: -0.4px; line-height: 1.1; font-style: italic;
}
.stat-desc { opacity: 0.6; margin-top: 14px; font-size: 11px; line-height: 1.5; letter-spacing: 0.2px; }

/* =========================================
   Story
   ========================================= */
.story {
  padding: 0 var(--pad-x) 120px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  scroll-margin-top: 80px;
}
.story-kicker { color: var(--accent); margin-bottom: 16px; }
.story h2 {
  font-family: var(--font-serif); font-size: var(--h2-story);
  line-height: 1.02; font-weight: 400; letter-spacing: -1.4px;
  margin: 0 0 48px; text-wrap: pretty; max-width: 780px;
}
.story-body {
  font-family: var(--font-serif); font-size: 22px; line-height: 1.55;
  font-weight: 300; max-width: 680px; text-wrap: pretty; margin-bottom: 56px;
}

.timeline { position: relative; padding-top: 40px; }
.timeline-grid {
  display: grid; gap: 12px; position: relative;
}
.timeline-item { text-align: left; position: relative; padding-top: 56px; }
.timeline-year {
  font-family: var(--font-serif); font-size: 22px; font-weight: 500;
  letter-spacing: -0.3px; margin-bottom: 14px; min-height: 28px;
}
.timeline-track { position: relative; height: 20px; margin-bottom: 14px; }
.timeline-track::before {
  content: ''; position: absolute; left: 0; right: 0; top: 9px; height: 1px;
  border-top: 1px dashed rgba(26,22,19,.18);
}
.timeline-dot {
  position: absolute; left: 0; top: 3px; width: 14px; height: 14px;
  border-radius: 50%; border: 3px solid var(--cream);
}
.timeline-text { font-size: 13px; line-height: 1.45; opacity: 0.8; text-wrap: pretty; padding-right: 8px; }

/* =========================================
   Products
   ========================================= */
.products {
  background: var(--moss); color: var(--cream);
  padding: 120px var(--pad-x);
  border-radius: 40px 40px 0 0;
  scroll-margin-top: 80px;
}
.products-head { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-bottom: 72px; }
.products-kicker { color: var(--yellow); margin-bottom: 16px; }
.products h2 {
  font-family: var(--font-serif); font-size: var(--h2-products);
  line-height: 0.98; font-weight: 300; letter-spacing: -2.2px; margin: 0 0 24px;
}
.products-sub { font-size: 17px; opacity: 0.85; max-width: 560px; text-wrap: pretty; margin: 0; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  background: var(--cream); color: var(--ink);
  border-radius: 20px; padding: 32px; position: relative; overflow: hidden;
  min-height: 300px;
  transition: transform .35s var(--ease-out), box-shadow .35s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0,0,0,.18); }
.product-card .blob {
  position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px; border-radius: 50%; opacity: 0.14;
}
.product-card .illust {
  position: absolute; right: 20px; top: 20px;
  display: flex; align-items: center; justify-content: center;
}
.product-body { position: relative; margin-top: 120px; }
.product-meta { margin-bottom: 10px; }
.product-card h3 {
  font-family: var(--font-serif); font-size: 38px;
  margin: 0 0 16px; font-weight: 500; letter-spacing: -0.8px;
}
.variety-list { display: flex; flex-wrap: wrap; gap: 6px; }
.variety {
  font-size: 12px; padding: 5px 11px; border-radius: 999px;
  background: rgba(26,22,19,.05); color: var(--ink); font-weight: 500;
}

/* =========================================
   Process
   ========================================= */
.process {
  background: var(--ink); color: var(--cream);
  padding: 120px var(--pad-x);
  scroll-margin-top: 80px;
}
.process-head { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-bottom: 80px; }
.process-kicker { color: var(--yellow); margin-bottom: 16px; }
.process h2 {
  font-family: var(--font-serif); font-size: var(--h2-process);
  line-height: 0.95; font-weight: 300; letter-spacing: -2.2px; margin: 0 0 20px;
}
.process-sub {
  font-family: var(--font-serif); font-size: 24px; font-style: italic;
  font-weight: 300; opacity: 0.7; margin: 0;
}

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.step {
  background: rgba(245,240,230,.03); color: var(--cream);
  padding: 36px; min-height: 260px;
  border: 1px solid rgba(245,240,230,.07);
  border-radius: 4px;
}
.step:first-child { border-radius: 20px 4px 4px 20px; }
.step:last-child { border-radius: 4px 20px 20px 4px; }
.step.is-highlight { background: var(--green); border: none; }
.step-num {
  font-family: var(--font-serif); font-size: 72px; line-height: 1;
  opacity: 0.2; margin-bottom: 20px; font-weight: 400;
}
.step.is-highlight .step-num { opacity: 0.35; }
.step h3 {
  font-family: var(--font-serif); font-size: 32px;
  margin: 0 0 14px; font-weight: 500; letter-spacing: -0.6px;
}
.step p { font-size: 14.5px; line-height: 1.55; margin: 0; opacity: 0.72; text-wrap: pretty; }
.step.is-highlight p { opacity: 0.92; }

/* =========================================
   Sustainability
   ========================================= */
.sust {
  padding: 120px var(--pad-x); background: var(--cream);
  scroll-margin-top: 80px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start;
}
.sust-kicker { color: var(--accent); margin-bottom: 16px; }
.sust h2 {
  font-family: var(--font-serif); font-size: var(--h2-sust);
  font-weight: 400; letter-spacing: -1.1px; margin: 0 0 24px;
  line-height: 1.08; text-wrap: pretty;
}
.sust-body {
  font-family: var(--font-serif); font-size: 20px; font-style: italic;
  opacity: 0.65; font-weight: 300; margin: 0; max-width: 360px; text-wrap: pretty;
}
.sust-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.sust-card {
  padding: 28px; border-radius: 20px;
  display: grid; grid-template-rows: auto auto 1fr; gap: 14px;
}
.sust-card.green  { background: var(--green);  color: var(--cream); }
.sust-card.yellow { background: var(--yellow); color: var(--ink); }
.sust-card.accent { background: var(--accent); color: var(--cream); }
.sust-pill {
  font-family: var(--font-serif); font-size: 44px;
  font-weight: 400; letter-spacing: -1px; line-height: 1;
}
.sust-card h3 {
  font-family: var(--font-serif); font-size: 22px;
  margin: 0; font-weight: 500; letter-spacing: -0.3px;
}
.sust-card p { font-size: 13.5px; line-height: 1.5; margin: 0; opacity: 0.92; text-wrap: pretty; }

/* =========================================
   Quote divider
   ========================================= */
.quote {
  background: var(--ink); color: var(--cream);
  padding: 120px var(--pad-x); position: relative;
}
.quote-inner { max-width: 980px; margin: 0 auto; text-align: center; }
.quote-kicker { color: var(--yellow); margin-bottom: 28px; opacity: 0.8; }
.quote p {
  font-family: var(--font-serif); font-size: var(--quote-size);
  line-height: 1.15; font-weight: 300; letter-spacing: -1.2px;
  font-style: italic; margin: 0; text-wrap: balance;
}

/* =========================================
   Region
   ========================================= */
.region {
  padding: 120px var(--pad-x);
  background: var(--region-bg);
}
.region-head {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; margin-bottom: 56px;
}
.region-kicker { color: var(--accent); margin-bottom: 16px; }
.region h2 {
  font-family: var(--font-serif); font-size: var(--h2-region);
  margin: 0; font-weight: 400; letter-spacing: -2px;
  line-height: 1.02; text-wrap: pretty;
}
.region-sub {
  padding-top: 40px;
  font-size: 17px; line-height: 1.65; opacity: 0.78;
  max-width: 560px; text-wrap: pretty; margin: 0;
}
.region-body { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: stretch; }
.region-illust {
  background: linear-gradient(135deg, var(--cream) 0%, #F6EFE2 100%);
  border-radius: 20px; padding: 40px;
  border: 1px solid rgba(26,22,19,.06);
  aspect-ratio: 4/3; position: relative; overflow: hidden;
}
.region-illust svg { width: 100%; height: 100%; display: block; }
.region-illust-caption {
  position: absolute; bottom: 20px; left: 40px;
  opacity: 0.5; font-size: 10px;
}
.region-points {
  display: flex; flex-direction: column; justify-content: center;
}
.region-point {
  padding: 24px 0;
  border-top: 1px solid rgba(26,22,19,.08);
}
.region-point:last-child { border-bottom: 1px solid rgba(26,22,19,.08); }
.region-point-head {
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px;
}
.region-point-num { color: var(--accent); opacity: 0.7; }
.region-point-title { font-family: var(--font-serif); font-size: 24px; font-weight: 500; letter-spacing: -0.3px; }
.region-point-body { font-size: 14.5px; line-height: 1.55; opacity: 0.72; padding-left: 40px; text-wrap: pretty; }

/* =========================================
   Doña Manoli
   ========================================= */
.manoli {
  background: var(--green); color: var(--cream);
  padding: 120px var(--pad-x);
  scroll-margin-top: 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center;
}
.manoli-kicker { color: var(--yellow); margin-bottom: 16px; }
.manoli h2 {
  font-family: var(--font-serif); font-size: var(--h2-manoli);
  margin: 0 0 4px; font-weight: 400; letter-spacing: -3px;
  font-style: italic; line-height: 0.95;
}
.manoli-sub {
  font-family: var(--font-serif); font-size: 26px; opacity: 0.8;
  margin-bottom: 36px; font-style: italic; font-weight: 300;
}
.manoli-body { font-size: 18px; line-height: 1.65; opacity: 0.9; max-width: 480px; text-wrap: pretty; }
.manoli-photo { display: flex; justify-content: center; position: relative; }
.manoli-photo .tilt {
  position: absolute; inset: -24px; background: var(--yellow);
  border-radius: 12px; transform: rotate(-2.5deg); opacity: 0.35;
}
.manoli-photo .frame {
  position: relative; background: var(--cream);
  padding: 32px; border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.manoli-photo .frame img { width: 380px; max-width: 100%; height: auto; border-radius: 2px; }

/* =========================================
   Contact
   ========================================= */
.contact {
  background: var(--ink); color: var(--cream);
  padding: 120px var(--pad-x);
  scroll-margin-top: 80px;
}
.contact-kicker { color: var(--yellow); margin-bottom: 16px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact h2 {
  font-family: var(--font-serif); font-size: var(--h2-contact);
  margin: 0 0 28px; font-weight: 300; letter-spacing: -2px; line-height: 0.98;
}
.contact-body { font-size: 18px; opacity: 0.8; max-width: 440px; margin-bottom: 48px; text-wrap: pretty; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-row { border-top: 1px solid rgba(245,240,230,.12); padding-top: 14px; }
.contact-row .mono { opacity: 0.55; margin-bottom: 6px; }
.contact-row .val { font-family: var(--font-serif); font-size: 26px; font-weight: 400; letter-spacing: -0.5px; }

.contact-form {
  background: rgba(245,240,230,.05); border-radius: 24px;
  padding: 40px; border: 1px solid rgba(245,240,230,.08);
  display: grid; gap: 14px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-1-2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; }
.contact-form input,
.contact-form textarea {
  background: transparent; border: 1px solid rgba(245,240,230,.18);
  color: var(--cream); padding: 14px 16px; border-radius: 10px;
  font-size: 15px; outline: none; font-family: inherit;
  transition: border-color .2s, background .2s;
}
.contact-form textarea { resize: none; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--cream); opacity: 0.45; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(255,192,0,.5); background: rgba(245,240,230,.02); }
.contact-form button:disabled { opacity: 0.5; cursor: wait; }
.form-status { margin-top: 12px; font-family: var(--font-sans); font-size: 14px; color: var(--cream); opacity: 0.8; }
.form-ok { color: #8bc34a; opacity: 1; }
.form-err { color: var(--accent); opacity: 1; }

/* =========================================
   Footer
   ========================================= */
.footer {
  background: var(--footer-green); color: var(--cream);
  padding: 80px var(--pad-x) 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 64px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(245,240,230,.07);
}
.footer-brand { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; }
.footer-brand-name { font-family: var(--font-serif); font-size: 32px; font-weight: 600; letter-spacing: -0.5px; }
.footer-lead {
  font-family: var(--font-serif); font-size: 18px; font-style: italic;
  font-weight: 300; opacity: 0.8; line-height: 1.45; max-width: 320px;
}
.footer-col-title { opacity: 0.5; margin-bottom: 20px; }
.footer-col-links { display: flex; flex-direction: column; gap: 12px; }
.footer-col-links a { color: var(--cream); text-decoration: none; font-size: 14px; opacity: 0.85; }
.footer-col-links a:hover { opacity: 1; }
.footer-address { margin-top: 28px; font-size: 14px; line-height: 1.7; opacity: 0.85; }
.footer-phone { font-size: 13px; line-height: 1.7; opacity: 0.65; margin-top: 12px; }
.footer-mono { opacity: 0.4; margin-top: 28px; font-size: 11px; line-height: 1.8; }

.footer-bar {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; opacity: 0.55; gap: 16px; flex-wrap: wrap;
}
.footer-bar .legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* =========================================
   Animations
   ========================================= */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim-1 { animation: rise .9s var(--ease-out) both; animation-delay: .10s; }
.anim-2 { animation: rise .9s var(--ease-out) both; animation-delay: .35s; }
.anim-3 { animation: rise .9s var(--ease-out) both; animation-delay: .55s; }
.anim-4 { animation: rise .9s var(--ease-out) both; animation-delay: .75s; }
.anim-5 { animation: fade 1.2s ease both; animation-delay: .95s; }

.reveal {
  opacity: 0; transform: translateY(22px);
  transition:
    opacity .9s var(--ease-out),
    transform .9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 60ms);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

.pulse {
  transform: scale(.4); opacity: 0;
  transition: transform .6s var(--ease-out), opacity .6s ease;
  transition-delay: calc(var(--i, 0) * 90ms + 200ms);
}
.pulse.is-in { transform: scale(1); opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .pulse, .anim-1, .anim-2, .anim-3, .anim-4, .anim-5 {
    transition: none; animation: none; opacity: 1; transform: none;
  }
}

/* =========================================
   Responsive — Tablet (≤1023px)
   ========================================= */
@media (max-width: 1023px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 64px; padding-bottom: 64px; }
  .hero-aside { padding-bottom: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 32px; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid rgba(245,240,230,.12); padding-left: 24px; }

  .story { grid-template-columns: 1fr; gap: 32px; }

  .products-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }

  .process-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .step { border-radius: 8px !important; }

  .sust { grid-template-columns: 1fr; gap: 40px; }
  .sust-cards { grid-template-columns: 1fr 1fr 1fr; }

  .region-head { grid-template-columns: 1fr; gap: 24px; }
  .region-sub { padding-top: 0; }
  .region-body { grid-template-columns: 1fr; }

  .manoli { grid-template-columns: 1fr; gap: 48px; }
  .manoli-photo .frame img { width: 100%; max-width: 340px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

/* =========================================
   Responsive — Mobile (≤640px)
   ========================================= */
@media (max-width: 640px) {
  .topbar { font-size: 11px; padding: 8px 16px; flex-wrap: wrap; gap: 8px; }
  .topbar-slogan { display: none; }
  .topbar-right { gap: 12px; flex-wrap: wrap; }
  .topbar-right > span:first-child { display: none; } /* hide phone number, keep email */

  .nav-wrap { padding: 16px 20px; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream);
    padding: 8px 0;
    border-bottom: 1px solid rgba(26,22,19,.08);
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .nav-wrap.is-open .nav-links {
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .nav-links a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(26,22,19,.06);
    width: 100%;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { display: none; }

  .hero { padding: 56px 20px; gap: 32px; }
  .hero h1 { letter-spacing: -1.6px; }
  .hero-eyebrow { margin-bottom: 24px; }
  .hero-body { font-size: 16px; }
  .hero-illust { height: 220px; }
  .hero-illust .circle-orange { width: 150px; height: 150px; }
  .hero-illust .circle-orange svg { width: 120px !important; height: 120px !important; }
  .hero-illust .circle-yellow { right: 130px; top: 90px; width: 100px; height: 100px; }
  .hero-illust .circle-yellow svg { width: 70px !important; height: 70px !important; }
  .hero-illust .season-card { top: 140px; max-width: 180px; }
  .hero-ctas .btn { padding: 12px 18px; }

  .stats-wrap { padding: 0 20px 56px; }
  .stats { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .stat,
  .stat:nth-child(even) { border-left: none !important; padding-left: 0; padding-top: 16px; border-top: 1px solid rgba(245,240,230,.12); min-height: 0; }
  .stat:first-child { border-top: none; padding-top: 0; }
  .stat-label { font-size: 24px; }

  .story { padding: 0 20px 72px; }
  .story-body { font-size: 18px; margin-bottom: 32px; }
  .timeline-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .timeline-item { padding-top: 24px; padding-left: 32px; }
  .timeline-track { position: absolute; left: 0; top: 32px; width: 14px; height: 14px; margin: 0; }
  .timeline-track::before { display: none; }
  .timeline-dot { left: 0; top: 0; }
  .timeline-year { margin-bottom: 6px; }

  .products { padding: 72px 20px; border-radius: 24px 24px 0 0; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card { min-height: 260px; padding: 24px; }
  .product-card h3 { font-size: 30px; }
  .product-card .blob { width: 140px; height: 140px; right: -30px; top: -30px; }
  .product-body { margin-top: 90px; }

  .process { padding: 72px 20px; }
  .process-steps { grid-template-columns: 1fr; gap: 8px; }
  .step { padding: 24px; min-height: 200px; }
  .step-num { font-size: 56px; margin-bottom: 12px; }
  .step h3 { font-size: 24px; }

  .sust { padding: 72px 20px; }
  .sust-cards { grid-template-columns: 1fr; gap: 12px; }

  .quote { padding: 80px 20px; }

  .region { padding: 80px 20px; }
  .region-illust { padding: 24px; }
  .region-point-body { padding-left: 0; margin-top: 8px; }

  .manoli { padding: 80px 20px; gap: 32px; }
  .manoli-sub { font-size: 22px; margin-bottom: 24px; }
  .manoli-body { font-size: 16px; }
  .manoli-photo .frame { padding: 20px; }
  .manoli-photo .tilt { inset: -16px; }

  .contact { padding: 80px 20px; }
  .contact-form { padding: 24px; }
  .form-row-2, .form-row-1-2 { grid-template-columns: 1fr; }
  .contact-row .val { font-size: 20px; }

  .footer { padding: 56px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bar .legal { gap: 12px; font-size: 11px; }
}
