/* ============================================================
   Agros-98 AD — Main Stylesheet
   ============================================================ */

/* --- Variables --- */
:root {
  --brand-deep:   #1e160a;
  --brand-mid:    #4a2d14;
  --brand-amber:  #b8723a;
  --seeds-green:  #598b43;
  --gold:         #d4a843;
  --gold-light:   #e8c870;
  --cream:        #faf5ed;
  --cream-dark:   #f0e5d0;
  --white:        #ffffff;
  --text-dark:    #1a1008;
  --text-body:    #3a2e1e;
  --text-muted:   #8c7a5e;
  --border:       rgba(30,22,10,0.12);

  --font-display: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --shadow-card:  0 2px 8px rgba(30,22,10,0.06), 0 8px 32px rgba(30,22,10,0.08), 0 24px 64px rgba(30,22,10,0.05);
  --shadow-btn:   0 2px 6px rgba(184,114,58,0.18), 0 6px 20px rgba(184,114,58,0.12);
  --shadow-nav:   0 1px 0 rgba(30,22,10,0.06), 0 8px 32px rgba(30,22,10,0.08);

  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* Skip navigation link — hidden until focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--brand-amber);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.15s;
  white-space: nowrap;
}
.skip-link:focus { top: 1rem; outline: 3px solid var(--gold); outline-offset: 2px; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }
p { line-height: 1.7; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) { .container { padding: 0 1.25rem; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background var(--transition-slow), padding var(--transition-slow), box-shadow var(--transition-slow);
}
.nav--scrolled {
  background: var(--white);
  padding: 0.875rem 0;
  box-shadow: var(--shadow-nav);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-img {
  height: 48px;
  width: auto;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav--scrolled .nav__link { color: var(--text-body); }
.nav__link:hover { color: var(--brand-amber); background: rgba(184,114,58,0.07); }
.nav--scrolled .nav__link:hover { color: var(--brand-amber); }
.nav__link--active { color: var(--gold) !important; }
.nav--scrolled .nav__link--active { color: var(--brand-amber) !important; background: rgba(184,114,58,0.07); }
.nav__mobile-link--active { color: var(--gold) !important; }

/* Dropdown arrow */
.nav__dropdown-arrow {
  width: 14px; height: 14px;
  transition: transform var(--transition-base);
  opacity: 0.7;
}
.nav__item--has-dropdown:hover .nav__dropdown-arrow { transform: rotate(180deg); }

/* Nav CTA */
.nav__cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--brand-amber);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background var(--transition-base), transform var(--transition-spring), box-shadow var(--transition-base);
  box-shadow: var(--shadow-btn);
}
.nav__cta:hover {
  background: var(--brand-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184,114,58,0.3), 0 8px 28px rgba(184,114,58,0.15);
}
.nav__cta:active { transform: translateY(0); }

/* Language Switcher */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: 0.5rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.nav__lang-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  transition: color 0.2s ease, background-color 0.2s ease;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav__lang-link:hover { color: rgba(255,255,255,0.9); }
.nav__lang-link--active { color: var(--gold); background: rgba(212,168,67,0.14); }
.nav__lang-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav--scrolled .nav__lang { border-left-color: rgba(30,22,10,0.15); }
.nav--scrolled .nav__lang-link { color: rgba(30,22,10,0.45); }
.nav--scrolled .nav__lang-link:hover { color: var(--brand-deep); }
.nav--scrolled .nav__lang-link--active { color: var(--brand-amber); background: rgba(184,114,58,0.1); }

/* LinkedIn Icon — Nav */
.nav__linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 0.5rem;
  color: #0A66C2;
  border-radius: 4px;
  flex-shrink: 0;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav__linkedin:hover { color: #fff; background: #0A66C2; }
.nav__linkedin:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav--scrolled .nav__linkedin { color: #0A66C2; }
.nav--scrolled .nav__linkedin:hover { color: #fff; background: #0A66C2; }

/* LinkedIn Icon — Footer */
.footer__social { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0; }
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(30,22,10,0.07);
  color: #0A66C2;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.footer__social-link:hover { background: #0A66C2; color: #fff; }
.footer__social-link:focus-visible { outline: 2px solid var(--brand-amber); outline-offset: 2px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition-slow), transform var(--transition-base), opacity var(--transition-base);
}
.nav--scrolled .nav__hamburger span { background: var(--brand-deep); }
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mega Dropdown */
.nav__item--has-dropdown { position: relative; }
.nav__mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 780px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(30,22,10,0.08), 0 16px 48px rgba(30,22,10,0.12);
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
  padding-top: 1rem;
}
.nav__item--has-dropdown:hover .nav__mega-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 1.25rem 1.5rem;
}
.nav__dropdown-col { padding: 0 0.65rem; }
.nav__dropdown-col + .nav__dropdown-col { border-left: 1px solid var(--border); }
.nav__dropdown-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-amber);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.nav__dropdown-link {
  display: block;
  font-size: 0.82rem;
  color: var(--text-body);
  padding: 0.3rem 0;
  transition: color var(--transition-base), transform var(--transition-base);
  line-height: 1.4;
}
.nav__dropdown-link:hover { color: var(--brand-amber); transform: translateX(3px); }
.nav__dropdown-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.nav__dropdown-certs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__dropdown-cert-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(20%);
  transition: opacity var(--transition-base), filter var(--transition-base);
}
.nav__dropdown-cert-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.nav__dropdown-all {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-amber);
  letter-spacing: 0.04em;
  transition: color var(--transition-base);
}
.nav__dropdown-all:hover { color: var(--brand-mid); }

/* Mobile Nav */
.nav__mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--brand-deep);
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile-links { display: flex; flex-direction: column; gap: 0.25rem; }
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition-base);
  display: block;
}
.nav__mobile-link:hover { color: var(--gold); }
.nav__mobile-cta {
  margin-top: 2rem;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--brand-amber);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}
.nav__mobile-cta:hover { background: var(--brand-mid); }

@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { gap: 1rem; }
  /* Lang switcher moves into hamburger menu on mobile */
  .nav__lang { display: none; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f0802;
}

/* Background video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 1;
}

/* Dark overlay over video so text stays legible */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10,5,0,0.55) 0%, rgba(20,12,4,0.48) 50%, rgba(40,20,8,0.38) 100%);
  pointer-events: none;
}

/* Grain texture overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  z-index: 2;
}

/* Geometric pattern removed */
.hero__pattern { display: none; }

/* Radial glow layers */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 70vw; height: 70vw;
  background: radial-gradient(ellipse, rgba(184,114,58,0.18) 0%, transparent 65%);
  z-index: 2;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -15%;
  width: 60vw; height: 60vw;
  background: radial-gradient(ellipse, rgba(212,168,67,0.12) 0%, transparent 65%);
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding: 8rem 0 6rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 2rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero__title-world {
  display: inline-block;
  color: var(--gold);
  background: linear-gradient(90deg, rgba(212,168,67,0.18) 0%, rgba(212,168,67,0.06) 100%);
  border-left: 3px solid var(--gold);
  padding: 0.05em 0.5em 0.05em 0.4em;
  margin-top: 0.1em;
  border-radius: 0 4px 4px 0;
}
.hero__subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
  max-width: 640px;
  margin-bottom: 2.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__flaxseed-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.4);
  padding: 12px 20px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.hero__flaxseed-badge-icon {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}
.hero__flaxseed-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.1;
}
.hero__flaxseed-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.hero__scroll:focus-visible {
  outline: 2px solid rgba(255,255,255,0.7);
  outline-offset: 6px;
  border-radius: 4px;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-spring), box-shadow var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* Primary */
.btn--primary {
  background: var(--brand-amber);
  color: var(--white);
  border-color: var(--brand-amber);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: var(--brand-mid);
  border-color: var(--brand-mid);
  box-shadow: 0 4px 16px rgba(184,114,58,0.3), 0 8px 32px rgba(184,114,58,0.15);
}

/* Outline (light — for dark backgrounds) */
.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* Gold */
.btn--gold {
  background: var(--gold);
  color: var(--brand-deep);
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(212,168,67,0.25);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(212,168,67,0.35);
}

/* White (for dark backgrounds) */
.btn--white {
  background: var(--white);
  color: var(--brand-deep);
  border-color: var(--white);
  box-shadow: 0 2px 8px rgba(255,255,255,0.15);
}
.btn--white:hover {
  background: var(--cream);
  box-shadow: 0 4px 16px rgba(255,255,255,0.25);
}

/* Outline dark */
.btn--outline {
  background: transparent;
  color: var(--brand-amber);
  border-color: var(--brand-amber);
}
.btn--outline:hover {
  background: var(--brand-amber);
  color: var(--white);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--brand-amber);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid rgba(212,168,67,0.3);
  padding: 2.25rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stats-bar__item {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.stats-bar__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.35rem;
  display: block;
}

@media (max-width: 640px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stats-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stats-bar__item:last-child, .stats-bar__item:nth-last-child(2) { border-bottom: none; }
}

/* ============================================================
   SECTION DEFAULTS
   ============================================================ */
.section { padding: 6rem 0; }
.section--lg { padding: 8rem 0; }
.section--dark {
  background: var(--brand-deep);
  color: var(--white);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--cream { background: var(--cream-dark); }

.section__header { margin-bottom: 3.5rem; }
.section__header--center { text-align: center; }
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-amber);
  margin-bottom: 0.875rem;
}
.section__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--brand-amber);
}
.section--dark .section__eyebrow { color: var(--gold); }
.section--dark .section__eyebrow::before { background: var(--gold); }
.section__title { margin-bottom: 1rem; }
.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}
.section--dark .section__subtitle { color: rgba(255,255,255,0.6); }
.section__header--center .section__subtitle { margin: 0 auto; text-align: left; }

/* ============================================================
   INTRO / WHO WE ARE
   ============================================================ */
.intro {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.intro__bg {
  position: absolute;
  inset: 0;
  background-image: url('../Media/factory.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.intro__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 7, 3, 0.72);
  z-index: 1;
}
.intro .container {
  position: relative;
  z-index: 2;
}
.intro__inner {
  width: 100%;
}
.intro__eyebrow {
  color: var(--gold) !important;
}
.intro__title {
  color: var(--white) !important;
  margin-bottom: 3rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.intro__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.intro__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: stretch;
}
.intro__pillar {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}
.intro__pillar-icon {
  width: 36px; height: 36px;
  background: var(--brand-amber);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.intro__pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.intro__pillar-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.intro__text {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}
.intro__lead {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.intro__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
  .intro__content { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro__pillars { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PRODUCTS SECTION (homepage)
   ============================================================ */
.products-home { padding: 7rem 0; background: #ffffff; }
.products-home__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .products-home__grid { grid-template-columns: repeat(2, 1fr); }
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30,22,10,0.06), 0 8px 24px rgba(30,22,10,0.07);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 16px rgba(30,22,10,0.08), 0 20px 48px rgba(30,22,10,0.13);
}
.cat-card__img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f7f3ed;
}
.cat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-card__content {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cat-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.cat-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.cat-card__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
}
.cat-card__item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-amber);
  flex-shrink: 0;
}
.cat-card__link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color 0.2s ease;
}
.cat-card__link:hover { color: var(--brand-amber); }

@media (max-width: 900px) {
  .products-home__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  padding: 7rem 0;
  background-image: url('../Media/sunflower-field.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(237, 223, 196, 0.78);
  pointer-events: none;
}
.why-us .container { position: relative; z-index: 1; }
.why-us .section__subtitle { color: var(--text-body); }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(30,22,10,0.08), 0 12px 40px rgba(30,22,10,0.1);
}
.why-card__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--brand-amber), var(--gold));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(184,114,58,0.25);
}
.why-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.why-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) { .why-us__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) {
  .why-us__grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
  .why-card { padding: 0.875rem 0.75rem; }
  .why-card__icon { width: 36px; height: 36px; font-size: 1rem; margin-bottom: 0.625rem; }
  .why-card__title { font-size: 0.875rem; margin-bottom: 0.375rem; }
  .why-card__text { font-size: 0.75rem; line-height: 1.55; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #fef3d8 0%, #f5e4b0 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 50vw; height: 100%;
  background: radial-gradient(ellipse, rgba(184,114,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}
.cta-band__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.6;
}
.cta-band .btn--outline-light {
  color: var(--brand-mid);
  border-color: var(--brand-mid);
}
.cta-band .btn--outline-light:hover {
  background: var(--brand-mid);
  color: var(--white);
  border-color: var(--brand-mid);
}
.cta-band__actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

@media (max-width: 768px) {
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, rgba(15,8,2,0.82) 0%, rgba(30,22,10,0.78) 60%, rgba(74,45,20,0.72) 100%), url('../Media/warehouse.webp') center/cover no-repeat;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 50vw; height: 80vh;
  background: radial-gradient(ellipse, rgba(184,114,58,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__pattern { display: none; }
.page-hero__content { position: relative; z-index: 1; }
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.page-hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.page-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
}
.page-hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.page-hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  letter-spacing: -0.03em;
  line-height: 1;
}
.page-hero__stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 0.25rem;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  margin-top: 76px;
}
.page-hero + .breadcrumb { margin-top: 0; }
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.breadcrumb__item a {
  color: var(--brand-amber);
  transition: color var(--transition-base);
}
.breadcrumb__item a:hover { color: var(--brand-mid); }
.breadcrumb__sep { color: var(--border); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #ffffff;
  color: #1a1a1a;
  padding: 5rem 0 0;
}
.footer__tagline,
.footer__heading,
.footer__nav-link,
.footer__contact-text,
.footer__copy,
.footer__bottom-link {
  color: #1a1a1a;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-top: 3px solid var(--brand-amber);
  padding-top: 3rem;
}
.footer__brand {}
.footer__logo {
  display: block;
  margin-bottom: 1rem;
}
.footer__logo-img {
  height: 52px;
  width: auto;
}
.footer__tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  max-width: 240px;
}
.footer__vat {
  font-size: 0.75rem;
  color: rgba(30,22,10,0.40);
  margin-top: 0.5rem;
  line-height: 1.5;
}
.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-amber);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__link {
  font-size: 0.85rem;
  color: #1a1a1a;
  transition: color var(--transition-base), transform var(--transition-base);
  display: inline-block;
}
.footer__link:hover { color: var(--brand-amber); transform: translateX(3px); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.83rem;
  color: #1a1a1a;
  margin-bottom: 0.875rem;
  line-height: 1.5;
}
.footer__contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-amber);
  margin-bottom: 0.2rem;
}
.footer__contact-link {
  color: #1a1a1a;
  transition: color var(--transition-base);
}
.footer__contact-link:hover { color: var(--brand-amber); }
.footer__contact-icon { color: var(--brand-amber); flex-shrink: 0; margin-top: 0.2rem; }
.footer__bottom {
  border-top: 1px solid rgba(30,22,10,0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.75rem;
  color: #1a1a1a;
}
.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer__bottom-link {
  font-size: 0.75rem;
  color: #1a1a1a;
  transition: color var(--transition-base);
}
.footer__bottom-link:hover { color: var(--brand-amber); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }
.reveal--left {
  transform: translateX(-28px);
}
.reveal--left.is-visible { transform: translateX(0); }
.reveal--right {
  transform: translateX(28px);
}
.reveal--right.is-visible { transform: translateX(0); }

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certs {
  padding: 3rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.certs__bar {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.certs__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 130px;
}
.certs__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 2rem;
}
.cert-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cert-logo:hover { opacity: 0.8; transform: translateY(-2px); }
.cert-logo__img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.cert-logo__name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.2;
}
.cert-logo__sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .certs__bar { flex-direction: column; gap: 1.25rem; align-items: flex-start; }
  .certs__logos { flex-wrap: wrap; justify-content: center; gap: 2rem; }
}
@media (max-width: 540px) {
  .certs { padding: 1.25rem 0; }
  .certs__bar { flex-direction: column; gap: 0.75rem; align-items: center; }
  .certs__label { min-width: unset; font-size: 0.75rem; }
  .certs__logos { flex-wrap: nowrap; justify-content: space-between; gap: 0; width: 100%; }
  .cert-logo { gap: 0.25rem; flex: 1; }
  .cert-logo__img { height: 28px; }
  .cert-logo__name { font-size: 0.75rem; }
  .cert-logo__sub { display: none; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 6rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info__block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.contact-info__block:last-child { border-bottom: none; }
.contact-info__role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-amber);
  margin-bottom: 0.4rem;
}
.contact-info__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.contact-info__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}
.contact-info__row svg { color: var(--brand-amber); flex-shrink: 0; }
.contact-info__row a { transition: color var(--transition-base); }
.contact-info__row a:hover { color: var(--brand-amber); }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.form__row { margin-bottom: 1.25rem; }
.form__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
  background: var(--cream);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  -webkit-appearance: none;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  border-color: var(--brand-amber);
  box-shadow: 0 0 0 3px rgba(184,114,58,0.12);
}
.form__textarea { resize: vertical; min-height: 140px; }
.form__submit { width: 100%; margin-top: 0.5rem; }

.contact-info__block--card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 8px rgba(30,22,10,0.04), 0 8px 24px rgba(30,22,10,0.06);
  border-bottom: none;
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
}
.contact-info__block--card:last-child { border-bottom: none; }

.contact-map-col__header { margin-bottom: 1.25rem; }
.contact-map-col__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-top: 0.4rem;
}
.contact-map-col__map {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map-col__addresses {
  display: flex;
  gap: 2rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.contact-map-col__address-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-amber);
  margin-bottom: 0.3rem;
}
.contact-map-col__address-text {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form__row--2col { grid-template-columns: 1fr; }
}

/* ============================================================
   MISC / UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-amber { color: var(--brand-amber); }
.text-gold { color: var(--gold); }
.mt-auto { margin-top: auto; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Color-tinted image treatment */
.img-treatment {
  position: relative;
  display: block;
}
.img-treatment::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-amber);
  mix-blend-mode: multiply;
  opacity: 0.08;
  pointer-events: none;
}

/* ============================================================
   MOBILE OPTIMIZATIONS
   ============================================================ */

/* --- Mobile nav: language switcher --- */
.nav__mobile-lang {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav__mobile-lang-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0.45rem 0.875rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.nav__mobile-lang-link:hover { color: rgba(255,255,255,0.85); }
.nav__mobile-lang-link--active {
  color: var(--gold);
  border-color: rgba(212,168,67,0.35);
  background: rgba(212,168,67,0.1);
}

/* ≤ 1024px — hamburger visible */
@media (max-width: 1024px) {
  .nav__logo-img { height: 42px; }
}

/* ≤ 768px — tablet & large phone */
@media (max-width: 768px) {
  /* Hero — hide video on mobile (no mobile source), show poster as bg */
  .hero__video { display: none; }
  .hero { background-image: url('../Media/hero-poster.jpg'); background-size: cover; background-position: center; }
  /* Hero */
  .hero__content { padding: 5.5rem 0 3.5rem; }
  .hero__flaxseed-badge { flex-wrap: wrap; gap: 10px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; text-align: center; justify-content: center; }

  /* Stats bar */
  .stats-bar { padding: 1.5rem 0; }
  .stats-bar__number { font-size: 2rem; }

  /* Sections */
  .section { padding: 4rem 0; }
  .section--lg { padding: 5rem 0; }
  .section__header { margin-bottom: 2.5rem; }
  .intro { padding: 5rem 0; }
  .products-home { padding: 4.5rem 0; }
  .why-us { padding: 4.5rem 0; background-attachment: scroll; }
  .cta-band { padding: 4rem 0; }

  /* Page hero */
  .page-hero { padding: 5.5rem 0 3rem; }

  /* Footer */
  .footer { padding: 3.5rem 0 0; }

  /* Logo size */
  .nav__logo-img { height: 38px; }

  /* Prevent iOS zoom on form inputs (font-size must be >= 16px) */
  .form__input,
  .form__select,
  .form__textarea { font-size: 1rem; }

  /* Contact map */
  .contact-map-col__map { height: 320px; }

  /* Contact info rows — 44px touch target on mobile only */
  .contact-info__row { min-height: 44px; }
}

/* ≤ 480px — small phone */
@media (max-width: 480px) {
  /* Hero */
  .hero__content { padding: 4.5rem 0 3rem; }
  .hero__title { font-size: clamp(1.85rem, 8vw, 2.4rem); line-height: 1.1; }
  .hero__flaxseed-badge { padding: 10px 14px; }
  .hero__flaxseed-badge strong { font-size: 1rem; }
  .hero__scroll { display: none; }

  /* Sections */
  .section { padding: 3rem 0; }
  .section--lg { padding: 4rem 0; }
  .section__header { margin-bottom: 2rem; }
  .intro { padding: 4rem 0; }
  .intro { padding: 2.5rem 0; }
  .intro__text { padding: 1rem; }
  .intro__lead { font-size: 0.875rem; line-height: 1.6; margin-bottom: 0; }
  .intro__body { display: none; }
  .intro__title { margin-bottom: 1.25rem; }
  .intro__content { gap: 0.75rem; }
  .intro__pillars { grid-template-columns: 1fr 1fr; gap: 0.625rem; }
  .intro__pillar { padding: 0.75rem; }
  .intro__pillar-icon { width: 28px; height: 28px; font-size: 0.875rem; margin-bottom: 0.5rem; }
  .intro__pillar-title { font-size: 0.8125rem; margin-bottom: 0.25rem; }
  .intro__pillar-text { font-size: 0.75rem; line-height: 1.5; }

  /* Homepage product category cards */
  .products-home { padding: 2rem 0; }
  .products-home__grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .cat-card__img-wrap { aspect-ratio: 4/3; }
  .cat-card__content { padding: 0.75rem 0.875rem 1rem; }
  .cat-card__title { font-size: 0.9375rem; margin-bottom: 0.5rem; }
  .cat-card__item { font-size: 0.75rem; gap: 0.4rem; }
  .cat-card__list { gap: 0.3rem; }
  .cat-card__link { margin-top: 0.75rem; }

  /* Why us cards */
  .why-us { padding: 2rem 0; }

  /* CTA band — full-width stacked buttons */
  .cta-band { padding: 3rem 0; }
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { width: 100%; text-align: center; justify-content: center; }

  /* Page hero */
  .page-hero { padding: 4.5rem 0 2.5rem; }
  .page-hero__stats { gap: 1.5rem; margin-top: 2rem; }
  .page-hero__stat-num { font-size: 1.6rem; }

  /* Footer */
  .footer { padding: 3rem 0 0; }
  .footer__tagline { max-width: 100%; }
  .footer__grid { gap: 1.5rem; }
  .footer__contact-link { display: inline-flex; align-items: center; min-height: 44px; }

  /* Contact map */
  .contact-map-col__map { height: 260px; }
  .contact-form { padding: 1.75rem 1.5rem; }
}
