/* ═══════════════════════════════════════════════════════════════
   VERDANTA V2 — Complete Stylesheet
   Palette  : Deep Pine Green · Warm Amber Gold · Cream Ivory
   Headings : Playfair Display  |  Body: DM Sans
═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --c-pine:    #2a2d12;
  --c-forest:  #363d15;
  --c-sage:    #556b45;
  --c-gold:    #b99a53;
  --c-gold-lt: #c9a845;
  --c-cream:   #f6f1ec;
  --c-paper:   #efe8e1;
  --c-border:  #d9cfc4;
  --c-ink:     #4d473f;
  --c-muted:   #756f66;
  --c-white:   #ffffff;

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --shadow-card: 0 2px 20px rgba(72,56,43,.09);
  --shadow-lift: 0 10px 40px rgba(72,56,43,.16);
  --t: .24s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--c-cream);
  color: var(--c-ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
input, textarea, select, button { font-family: var(--ff-body); }

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: min(1600px, calc(100% - clamp(32px, 4vw, 120px)));
  margin-inline: auto;
}

/* ── Typography ────────────────────────────────────────────── */
h1 { font-family: var(--ff-head); font-size: clamp(2.4rem, 3.6vw, 5.2rem); font-weight: 700; line-height: 1.1; }
h2 { font-family: var(--ff-head); font-size: clamp(1.8rem, 2.6vw, 3.6rem); font-weight: 600; line-height: 1.15; }
h3 { font-family: var(--ff-head); font-size: clamp(1.2rem, 1.6vw, 2rem);   font-weight: 600; line-height: 1.2; }
h4 { font-family: var(--ff-body); font-size: clamp(1rem, 1.2vw, 1.4rem); font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.hero .eyebrow { color: #fff; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  height: 50px; padding: 0 30px;
  border-radius: var(--r-sm);
  background: var(--c-gold);
  color: #fff;
  font-size: .94rem; font-weight: 600; letter-spacing: .04em;
  box-shadow: 0 4px 20px rgba(185,154,83,.35);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover {
  background: var(--c-gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(185,154,83,.45);
}
.btn-outline {
  display: inline-flex; align-items: center;
  height: 50px; padding: 0 30px;
  border-radius: var(--r-sm);
  border: 2px solid rgba(255,255,255,.45);
  color: #fff;
  font-size: .94rem; font-weight: 600; letter-spacing: .04em;
  transition: border-color var(--t), background var(--t);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--c-gold);
  font-size: .88rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  transition: gap var(--t);
}
.btn-ghost svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-ghost:hover { gap: 12px; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--c-pine);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: clamp(52px, 5vw, 68px); gap: clamp(20px, 2.5vw, 32px);
}
.nav-logo img { height: clamp(42px, 4vw, 58px); }
.nav-links { display: flex; align-items: center; gap: clamp(24px, 3vw, 44px); margin-left: auto; }
.nav-links a {
  font-size: clamp(0.95rem, 1.1vw, 1.18rem); font-weight: 600;
  color: rgba(255,255,255,.95);
  letter-spacing: .04em;
  transition: color var(--t);
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--c-gold); border-radius: 2px;
  transition: width var(--t);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }
.nav-cta {
  display: inline-flex; align-items: center;
  height: 38px; padding: 0 22px;
  border-radius: var(--r-sm);
  background: var(--c-gold);
  color: #fff !important;
  font-size: 0.9rem; font-weight: 700; letter-spacing: .04em;
  transition: background var(--t), transform var(--t);
}
.nav-cta:hover { background: var(--c-gold-lt); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: clamp(49vh, 55vh, 70vh);
  display: flex; align-items: center;
  background: var(--c-pine);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/head_image_1.png');
  background-size: cover; background-position: center 50%;
  opacity: .75;
  transform: scale(1.02);
}
.hero-inner { position: relative; z-index: 2; width: clamp(320px, 50%, 800px); margin-left: 0; margin-right: auto; padding: clamp(24px, 3vw, 48px) 0; padding-left: clamp(16px, 2vw, 32px); text-align: left; }
.hero h1 { color: #fff; margin-bottom: 22px; letter-spacing: -.01em; font-size: clamp(2rem, 3.2vw, 4.2rem); }
.hero h1 em { font-style: italic; color: #fff; }
.hero-lead {
  color: #fff;
  font-size: clamp(1.05rem, 1.5vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 40px; max-width: 100%; line-height: 1.75;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
  text-align: left;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: .88rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.75), transparent);
}

/* ── Hero Micro Line ── */
.hero-micro {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  font-style: italic;
  letter-spacing: .02em;
  margin-top: -28px;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ── Hero Trust Strip (inside hero) ── */
.hero-trust {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.82);
  font-size: .9rem; font-weight: 600; letter-spacing: .04em;
}
.hero-trust-item svg { width: 16px; height: 16px; stroke: var(--c-gold); fill: none; stroke-width: 1.6; flex-shrink: 0; }
.hero-trust-sep { width: 1px; height: 16px; background: rgba(255,255,255,.2); }

/* ── Trust Strip ── */
.trust-strip { background: var(--c-forest); padding: 22px 0; }
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: 1rem; font-weight: 600; letter-spacing: .04em;
}
.trust-item svg { width: 17px; height: 17px; stroke: var(--c-gold); fill: none; stroke-width: 1.6; flex-shrink: 0; }
.trust-sep { width: 1px; height: 18px; background: rgba(255,255,255,.15); }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: clamp(40px, 5vw, 80px); }
.section-header h2 { color: var(--c-pine); margin-bottom: 14px; font-size: clamp(1.9rem, 2.8vw, 3.2rem); }
.section-header p { color: var(--c-muted); font-size: clamp(1rem, 1.2vw, 1.3rem); max-width: 700px; margin-inline: auto; line-height: 1.75; }

/* ── Process ── */
.process { padding: clamp(64px, 7vw, 128px) 0; background: #ede0c8; }
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-step {
  padding: 36px 28px;
  background: #f3e9d8; border-radius: var(--r-md);
  border-top: 4px solid var(--c-gold);
  box-shadow: var(--shadow-card);
  transition: transform var(--t), box-shadow var(--t);
}
.process-step:last-child { border-right: none; }
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.step-num {
  font-family: var(--ff-head); font-size: 3.2rem; font-weight: 700;
  color: var(--c-gold); line-height: 1; margin-bottom: 18px;
  user-select: none;
}
.step-icon {
  width: 52px; height: 52px;
  background: var(--c-forest); border-radius: var(--r-sm);
  display: grid; place-items: center; margin-bottom: 20px;
}
.step-icon svg { width: 26px; height: 26px; stroke: var(--c-gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.process-step h3 { color: var(--c-pine); margin-bottom: 12px; font-size: 1.35rem; }
.process-step p { color: var(--c-ink); font-size: 1.02rem; line-height: 1.72; }

/* ── Categories ── */
.categories { padding: clamp(64px, 7vw, 128px) 0; background: #f3e9d8; }

/* ── Journey / Origin to Arrival ── */
.journey { padding: clamp(64px, 7vw, 128px) 0 clamp(32px, 3vw, 56px); background: #fff; }
.journey .section-header h2 { color: var(--c-pine); }
.journey-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.journey-step {
  flex: 1;
  padding: 32px 20px;
  text-align: center;
}
.journey-num {
  font-family: var(--ff-head); font-size: 2.2rem; font-weight: 700;
  color: var(--c-gold); line-height: 1; margin-bottom: 16px;
}
.journey-icon {
  width: 50px; height: 50px;
  background: var(--c-pine); border-radius: var(--r-sm);
  display: grid; place-items: center; margin: 0 auto 16px;
}
.journey-icon svg { width: 24px; height: 24px; stroke: var(--c-gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.journey-step h4 { color: var(--c-pine); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; letter-spacing: .02em; text-transform: uppercase; }
.journey-sep {
  display: flex; align-items: center; padding-top: 36px; flex-shrink: 0;
}
.journey-sep svg { width: 22px; height: 22px; stroke: var(--c-gold); fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ── Business Model Clarity ── */
.model-clarity { padding: clamp(64px, 7vw, 128px) 0; background: #fff; }
.model-clarity .section-header h2 { color: var(--c-pine); }
.model-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 48px);
}
.model-card {
  padding: 40px 32px;
  border: 1.5px solid var(--c-border); border-radius: var(--r-md);
  background: #fff;
  transition: box-shadow var(--t), transform var(--t);
}
.model-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.model-icon {
  width: 52px; height: 52px;
  background: var(--c-pine); border-radius: var(--r-sm);
  display: grid; place-items: center; margin-bottom: 20px;
}
.model-icon svg { width: 26px; height: 26px; stroke: var(--c-gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.model-card h3 { color: var(--c-pine); font-size: 1.45rem; margin-bottom: 12px; }
.model-card p  { color: var(--c-muted); font-size: 1rem; line-height: 1.72; }

/* ── Why Verdanta ── */
.why-verdanta { padding: clamp(24px, 2.5vw, 40px) 0 clamp(64px, 7vw, 128px); background: #fff; }
.why-verdanta .section-header { margin-bottom: clamp(28px, 3vw, 48px); }
.why-verdanta .section-header h2 { color: var(--c-pine); }
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: clamp(16px, 1.8vw, 28px);
}
.why-card {
  padding: 28px 30px;
  border: 1.5px solid var(--c-border); border-radius: var(--r-md);
  border-left: 4px solid var(--c-gold);
  background: #fff;
  transition: box-shadow var(--t), transform var(--t);
}
.why-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.why-card h4 { color: var(--c-pine); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.why-card p  { color: var(--c-muted); font-size: .95rem; line-height: 1.65; margin: 0; }

/* ── Custom Request (standalone) ── */
.custom-request { padding: clamp(56px, 6vw, 96px) 0; background: var(--c-forest); }
.custom-request-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.custom-request h2 { color: #fff; font-size: clamp(1.5rem, 2.2vw, 2.4rem); margin-bottom: 10px; }
.custom-request p  { color: rgba(255,255,255,.65); font-size: 1rem; }

/* ── Built Differently ── */
.built-differently { padding: clamp(64px, 7vw, 112px) 0; background: #fff; }
.built-differently-inner { text-align: center; max-width: 680px; margin-inline: auto; }
.built-differently-inner h2 { color: var(--c-pine); font-size: clamp(2rem, 3vw, 3.8rem); margin-bottom: 20px; }
.built-differently-inner p  { color: var(--c-muted); font-size: clamp(1rem, 1.3vw, 1.3rem); line-height: 1.75; }
.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(380px, 100%), 1fr));
  gap: clamp(16px, 1.5vw, 28px);
}
.cat-card {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 4/3; background: var(--c-pine); cursor: pointer;
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .62; transition: opacity .5s ease, transform .5s ease;
  transform: scale(0.98);
}
.cat-card:hover img { opacity: .48; transform: scale(1.02); }

/* Make sure the Olive Oils hero (first category) shows the product more clearly */
.cat-grid .cat-card:first-child img {
  object-position: center 35%;
}
.cat-grid .cat-card:first-child:hover img {
  transform: scale(1.02);
}
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,45,18,.88) 0%, rgba(42,45,18,.1) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 30px;
}
.cat-overlay h3 { color: #fff; font-size: 1.45rem; margin-bottom: 6px; }
.cat-overlay p  { color: rgba(255,255,255,.72); font-size: .88rem; margin-bottom: 14px; }
.cat-request {
  grid-column: 1 / -1;
  background: var(--c-forest); border-radius: var(--r-md);
  padding: 44px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cat-request-copy h3 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.cat-request-copy p  { color: rgba(255,255,255,.7); font-size: .96rem; max-width: 520px; }

/* ── CTA Band ── */
.cta-band {
  padding: clamp(56px, 7vw, 120px) 0;
  background: var(--c-pine);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1523531294919-4bcd7c65e216?auto=format&fit=crop&w=1600&q=80');
  background-size: cover; background-position: center;
  opacity: .12;
}
.cta-band-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem,3vw,2.6rem); margin-bottom: 8px; }
.cta-band p  { color: rgba(255,255,255,.65); font-size: .97rem; }

/* ── Footer ── */
.site-footer { background: #1c1e0b; padding: clamp(40px, 5vw, 80px) 0 clamp(20px, 2.5vw, 40px); }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(28px, 3.5vw, 64px); padding-bottom: clamp(28px, 3.5vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
  .footer-brand img { height: 70px; margin-bottom: 14px; opacity: .95; }
  .footer-brand p { color: rgba(255,255,255,.45); font-size: 1.13rem; line-height: 1.65; max-width: 320px; }
  .footer-col h4 {
  color: rgba(255,255,255,.88); font-size: 1rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
  .footer-col ul a { color: rgba(255,255,255,.45); font-size: 1.15rem; transition: color var(--t); }
.footer-col ul a:hover { color: rgba(255,255,255,.88); }
.footer-bottom {
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
  .footer-bottom p   { color: rgba(255,255,255,.28); font-size: 1.2rem; }
  .footer-bottom a   { color: rgba(255,255,255,.28); font-size: 1.2rem; transition: color var(--t); }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO  (About / Products / Contact)
═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--c-pine);
  min-height: clamp(49vh, 55vh, 70vh);
  display: flex; align-items: center;
  padding: clamp(24px, 3vw, 48px) 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .18;
}
.about-page    .page-hero::before { background-image: url('assets/olive_farms.png'); }
.products-page .page-hero::before { background-image: url('assets/products.png'); }
.contact-page  .page-hero::before { background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1600&q=80'); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.72); font-size: 1.06rem; max-width: 560px; line-height: 1.68; }
.products-page .page-hero p { font-size: 1.19rem; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════ */

/* Story */
.about-story { padding: clamp(64px, 7vw, 128px) 0; background: #ede0c8; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story-img-wrap { position: relative; }
.story-img-wrap img {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: var(--r-md);
}
.story-img-accent {
  position: absolute; bottom: -14px; right: -14px;
  width: 55%; height: 55%;
  border: 3px solid var(--c-gold);
  border-radius: var(--r-md);
  z-index: -1;
}
.story-copy .eyebrow { display: block; }
.story-copy h2 { color: var(--c-pine); margin-bottom: 28px; }
.story-copy p  { color: var(--c-muted); font-size: 1.22rem; line-height: 1.78; margin-bottom: 18px; }
.story-copy p:last-child { margin-bottom: 0; }

/* Founders */
.founders-section { padding: clamp(64px, 7vw, 128px) 0; background: #f3e9d8; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.founders-img-wrap { position: relative; }
.founders-img-wrap img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--r-md); }
.founders-img-accent {
  position: absolute; bottom: -14px; left: -14px;
  width: 55%; height: 55%;
  border: 3px solid var(--c-gold);
  border-radius: var(--r-md);
  z-index: -1;
}
.founders-copy .eyebrow { display: block; }
.founders-copy h2 { color: var(--c-pine); margin-bottom: 28px; }
.founders-copy p  { color: var(--c-muted); font-size: 1.22rem; line-height: 1.78; margin-bottom: 18px; }
.founders-copy p:last-child { margin-bottom: 0; }

/* Mission */
.mission-section { padding: clamp(64px, 7vw, 128px) 0; background: #ede0c8; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.mission-img-wrap { position: relative; }
.mission-img-wrap img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--r-md); }
.mission-img-accent {
  position: absolute; bottom: -14px; right: -14px;
  width: 55%; height: 55%;
  border: 3px solid var(--c-gold);
  border-radius: var(--r-md);
  z-index: -1;
}
.mission-copy .eyebrow { display: block; }
.mission-copy h2 { color: var(--c-pine); margin-bottom: 28px; }
.mission-copy p  { color: var(--c-muted); font-size: 1.22rem; line-height: 1.78; margin-bottom: 18px; }
.mission-copy p:last-child { margin-bottom: 0; }

/* How We Work */
.how-we-work { padding: clamp(64px, 7vw, 128px) 0; background: #ede0c8; }
.how-grid { display: grid; grid-template-columns: 1fr .62fr; gap: 64px; align-items: start; }
.how-title h2 { color: var(--c-pine); margin-bottom: 8px; }
  .how-title p  { color: var(--c-muted); font-size: 1.32rem; }
.how-steps { margin-top: 44px; display: flex; flex-direction: column; }
.how-step {
  display: grid; grid-template-columns: 52px 1fr;
  gap: 24px; align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--c-border);
}
.how-step:last-child { border-bottom: none; }
.how-step-num {
  font-family: var(--ff-head); font-size: 2rem; font-weight: 700;
  color: var(--c-gold); line-height: 1; padding-top: 2px;
}
  .how-step-body h4 { color: var(--c-pine); margin-bottom: 6px; font-size: 1.37rem; }
  .how-step-body p  { color: var(--c-muted); font-size: 1.25rem; line-height: 1.58; }
.listening-card {
  background: var(--c-forest); border-radius: var(--r-md);
  padding: 40px 34px;
  position: sticky; top: 128px;
}
.listening-card .eyebrow { color: var(--c-gold); display: block; }
.listening-card h3 { color: #fff; margin-bottom: 16px; }
  .listening-card p  { color: rgba(255,255,255,.7); font-size: 1.08rem; line-height: 1.68; margin-bottom: 28px; }

/* ═══════════════════════════════════════════════════════════════
   PRODUCTS PAGE
═══════════════════════════════════════════════════════════════ */
.product-nav {
  background: #f3e9d8;
  border-bottom: 1px solid var(--c-border);
  position: sticky; top: clamp(80px, 8vw, 128px); z-index: 50;
}
.product-nav-inner {
  display: flex; overflow-x: auto;
  scrollbar-width: none;
}
.product-nav-inner::-webkit-scrollbar { display: none; }
.product-nav-inner a {
  padding: 18px 26px; white-space: nowrap;
  font-size: 1.15rem; font-weight: 500; color: var(--c-muted);
  border-bottom: 3px solid transparent;
  transition: color var(--t), border-color var(--t);
}
.product-nav-inner a:hover { color: var(--c-pine); }
.product-nav-inner a.active { color: var(--c-pine); border-bottom-color: var(--c-gold); }

.products-section { padding: clamp(56px, 6vw, 120px) 0; background: #ede0c8; }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(420px, 100%), 1fr));
  gap: clamp(18px, 1.8vw, 32px); margin-top: clamp(36px, 4vw, 64px);
}
.product-card {
  background: #f3e9d8; border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.product-card-img { aspect-ratio: 16/9; overflow: hidden; }
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
  transform: scale(0.98);
}
.product-card:hover .product-card-img img { transform: scale(1.02); }

/* Ensure Olive Oils product image shows the bottle/scene clearly */
.product-card#olive-oils .product-card-img img {
  object-position: center 35%;
}
.product-card#olive-oils:hover .product-card-img img { transform: scale(1.02); }
.product-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }

/* Wide card — 5th product spans full row */
@media (min-width: 640px) {
  .product-card--wide {
    grid-column: 1 / -1;
    flex-direction: row;
  }
  .product-card--wide .product-card-img {
    width: 44%;
    aspect-ratio: auto;
    flex-shrink: 0;
    min-height: 280px;
  }
  .product-card--wide .product-card-img img { height: 100%; }
  .product-card--wide .product-card-body { justify-content: center; }
}
.product-card-body h2 { color: var(--c-pine); font-size: 1.4rem; margin-bottom: 8px; }
.product-card-body > p { color: var(--c-muted); font-size: .9rem; margin-bottom: 20px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; flex: 1; }
.product-tag {
  display: inline-flex; align-items: center;
  height: 28px; padding: 0 13px;
  border-radius: 999px;
  background: rgba(80,98,70,.07);
  color: var(--c-forest); font-size: .82rem; font-weight: 500;
}

.products-request { padding: 80px 0; background: var(--c-forest); }
.products-request-inner { text-align: center; max-width: 600px; margin-inline: auto; }
.products-request h2 { color: #fff; margin-bottom: 16px; }
.products-request p  { color: rgba(255,255,255,.7); font-size: 1.13rem; margin-bottom: 34px; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */
.contact-section { padding: 80px 0; background: #ede0c8; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: start; }

.form-card {
  background: #f3e9d8; border-radius: var(--r-md);
  padding: 44px 40px; box-shadow: var(--shadow-card);
}
.form-card h2 { color: var(--c-pine); margin-bottom: 32px; font-size: 1.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label  { font-size: .82rem; font-weight: 700; color: var(--c-pine); letter-spacing: .04em; text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--c-border); border-radius: var(--r-sm);
  background: var(--c-cream); color: var(--c-ink);
  font-size: .92rem; outline: none; width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--c-sage); box-shadow: 0 0 0 3px rgba(58,107,74,.12); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; height: 52px; }

.info-card {
  background: var(--c-pine); border-radius: var(--r-md);
  padding: 38px 32px; color: #fff;
}
.info-card h2 { color: #fff; font-size: 1.4rem; margin-bottom: 26px; }
.info-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 28px; }
.info-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,.72); font-size: .92rem; line-height: 1.52;
}
.info-list li::before {
  content: ''; width: 7px; height: 7px;
  border-radius: 50%; background: var(--c-gold);
  flex-shrink: 0; margin-top: 6px;
}
.info-divider { height: 1px; background: rgba(255,255,255,.1); margin: 24px 0; }
.info-card p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — large screens (1440px → 2560px)
═══════════════════════════════════════════════════════════════ */
@media (min-width: 1440px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { gap: clamp(24px, 2vw, 48px); }
  .story-grid { gap: clamp(56px, 6vw, 120px); }
  .founders-grid { gap: clamp(48px, 5vw, 96px); }
  .mission-grid  { gap: clamp(48px, 5vw, 96px); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-cta { height: 38px; padding: 0 22px; font-size: 0.9rem; }
}

@media (min-width: 1920px) {
  .hero { min-height: 60vh; }
  .hero-inner { width: clamp(480px, 44%, 1000px); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 2560px) {
  .hero { min-height: 65vh; }
  .hero-inner { width: 42%; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — small screens
═══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--c-border); }
  .process-step:last-child { border-bottom: none; }
  .journey-flow { flex-direction: column; align-items: center; }
  .journey-step { width: 100%; max-width: 480px; padding: 28px 0; }
  .journey-sep { padding-top: 0; transform: rotate(90deg); }
  .model-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 0; max-width: 100%; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-request { grid-column: span 1; }
  .story-grid      { grid-template-columns: 1fr; }
  .story-img-accent { display: none; }
  .founders-grid    { grid-template-columns: 1fr; }
  .founders-img-accent { display: none; }
  .mission-grid     { grid-template-columns: 1fr; }
  .mission-img-accent  { display: none; }
  .how-grid    { grid-template-columns: 1fr; }
  .listening-card { position: static; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { width: calc(100% - 32px); }
  .nav-links  { display: none; }
  .hero { min-height: 80vh; }
  .hero-inner { width: 100%; padding: 40px 0; }
  .hero-trust { gap: 14px; }
  .hero-trust-sep { display: none; }
  .trust-inner { flex-direction: column; gap: 14px; }
  .trust-sep   { display: none; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .custom-request-inner { flex-direction: column; }
  .cat-request { padding: 32px 24px; flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
}
