/* ═══════════════════════════════════════════════════════
   EXTRUFOOD HOMEPAGE — clean build following Figma
   ═══════════════════════════════════════════════════════ */

:root {
  --green:          #17A91E;
  --green-dark:     #10831D;
  --green-darkest:  #00412D;   /* officiële brand donkergroen */
  --green-accent:   #005164;   /* officiële brand blauwe accent-gloed */
  --green-tint:     #E3F4E5;   /* light green section bg */
  --green-card:     #E8F7E9;   /* light green card bg for "lead your category" ring alt */

  --blue-tint:      #E8F1F7;   /* light blue innovation section bg */

  --ink:            #121212;
  --ink-soft:       #2A2A2A;
  --ink-mute:       #6B6B6B;
  --paper:          #FFFFFF;
  --paper-warm:     #FAFAF8;
  --line:           #E5E5E2;

  --r-lg: 24px;
  --r-md: 16px;
  --r-pill: 999px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-optical-sizing: auto;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap      { width: min(1280px, 92%); margin: 0 auto; }
.wrap-wide { width: min(1440px, 94%); margin: 0 auto; }

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  padding: 24px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 34px;
}
.nav-links a {
  color: rgba(255,255,255,.9);
  font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--green); }
.nav-links .chev {
  opacity: .6;
  font-size: 10px;
  transition: transform .25s var(--ease);
}

/* Desktop dropdown under About us */
.nav-links .has-dropdown {
  position: relative;
}
.nav-links .has-dropdown:hover .chev,
.nav-links .has-dropdown:focus-within .chev {
  transform: rotate(180deg);
}
.nav-links .dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 200px;
  background: var(--paper);
  border-radius: var(--r-md);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  padding: 10px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s var(--ease), visibility .25s var(--ease), transform .25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 50;
}
.nav-links .dropdown::before {
  /* Invisible hover-bridge voorkomt dat menu sluit wanneer cursor tussen parent en dropdown beweegt */
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links .dropdown li a {
  display: block;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-links .dropdown li a:hover {
  background: var(--green-tint);
  color: var(--green-darkest);
}

.btn-contact {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--paper); color: var(--green-darkest);
  padding: 8px 8px 8px 22px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 15px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(23,169,30,.3);
}
.btn-contact .arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  color: var(--paper); font-size: 16px;
}

/* Burger button — hidden by default, shown on mobile */
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: background .25s var(--ease);
  position: relative;
  z-index: 101;
}
.nav-burger:hover { background: rgba(255,255,255,.12); }
.nav-burger span {
  width: 18px;
  height: 2px;
  background: var(--paper);
  border-radius: 1px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  transform-origin: center;
}
/* Transform to X when open */
.nav-burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--green-darkest);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
  overflow-y: auto;
}
.mobile-menu::before {
  /* Subtile blauwe gloed zoals in de hero, consistent branding */
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 120%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle, var(--green-accent) 0%, transparent 55%);
  transform: translate(-50%, -50%);
  opacity: 0.35;
  pointer-events: none;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

/* Explicit close button — rechtsboven in overlay */
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.mobile-menu-close:hover {
  background: rgba(255,255,255,.14);
  transform: rotate(90deg);
}
.mobile-menu-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--paper);
  border-radius: 1px;
}
.mobile-menu-close span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu-close span:nth-child(2) { transform: rotate(-45deg); }
.mobile-menu-nav {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 100px 28px 48px;
}
.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-links > li {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mobile-menu.is-open .mobile-menu-links > li {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger each link so they appear one after another */
.mobile-menu.is-open .mobile-menu-links > li:nth-child(1) { transition-delay: .12s; }
.mobile-menu.is-open .mobile-menu-links > li:nth-child(2) { transition-delay: .18s; }
.mobile-menu.is-open .mobile-menu-links > li:nth-child(3) { transition-delay: .24s; }
.mobile-menu.is-open .mobile-menu-links > li:nth-child(4) { transition-delay: .30s; }
.mobile-menu.is-open .mobile-menu-links > li:nth-child(5) { transition-delay: .36s; }
.mobile-menu.is-open .mobile-menu-links > li:nth-child(6) { transition-delay: .42s; }
.mobile-menu.is-open .mobile-menu-links > li:nth-child(7) { transition-delay: .48s; }

.mobile-menu-links a {
  display: block;
  padding: 14px 0;
  color: var(--paper);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.mobile-menu-links a:hover,
.mobile-menu-links a:focus {
  color: var(--green);
  padding-left: 8px;
}
.mobile-menu-links > li:last-child a {
  color: var(--green);
  font-weight: 500;
}

/* Mobile accordion submenu (About us) */
.mobile-menu-links .submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  color: var(--paper);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 400;
  font-family: inherit;
  letter-spacing: -0.02em;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
  text-align: left;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.mobile-menu-links .submenu-toggle:hover,
.mobile-menu-links .submenu-toggle:focus {
  color: var(--green);
  padding-left: 8px;
}
.mobile-menu-links .submenu-chev {
  font-size: 28px;
  font-weight: 300;
  transition: transform .3s var(--ease);
  color: rgba(255,255,255,.6);
}
.mobile-menu-links .has-submenu.is-open .submenu-chev {
  transform: rotate(45deg);
  color: var(--green);
}

.mobile-menu-links .submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.mobile-menu-links .has-submenu.is-open .submenu {
  max-height: 400px;
}
.mobile-menu-links .submenu li {
  opacity: 1;
  transform: none;
  transition: none;
}
.mobile-menu-links .submenu a {
  font-size: clamp(18px, 4.5vw, 22px);
  font-weight: 400;
  padding: 10px 0 10px 20px;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-menu-links .submenu a:hover,
.mobile-menu-links .submenu a:focus {
  color: var(--paper);
  padding-left: 28px;
}
.mobile-menu-links .submenu li:last-child a {
  color: rgba(255,255,255,.75);
  font-weight: 400;
  border-bottom: none;
}

/* ═══════════════ 1. HERO ═══════════════ */
.hero {
  position: relative;
  background: var(--green-darkest);
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
  min-height: 780px;
}
.hero-copy {
  max-width: 560px;
  padding: 160px 0 120px;
  align-self: center;
}
.hero h1 {
  color: var(--paper);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
}
.hero-lede {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 40px;
}
.btn-hero-pill {
  display: inline-flex; align-items: center;
  background: var(--green);
  color: var(--paper);
  border: none;
  padding: 18px 32px;
  border-radius: var(--r-pill);
  font-weight: 500; font-size: 16px;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-hero-pill:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(23,169,30,.3);
}

.hero-visual {
  position: relative;
  min-height: 780px;
  margin-right: calc(-1 * (100vw - 100%) / 2);
  overflow: hidden;
}
.hero-visual--video {
  overflow: visible;
  z-index: 1;
}
.hero .hero-copy {
  position: relative;
  z-index: 3;
}
.hero-visual--video video {
  position: absolute;
  top: 110px;
  left: 0;
  width: 130%;
  height: calc(100% - 110px);
  margin-left: -38%;
  object-fit: contain;
  object-position: center;
  /* Zoom de cirkel in zodat 'ie prominent in beeld komt */
  transform: scale(1.75);
  transform-origin: center center;
}
/* Intermediate desktop: less aggressive shift so circle doesn't overlap body copy */
@media (max-width: 1400px) {
  .hero-visual--video video {
    margin-left: -22%;
    transform: scale(1.5);
  }
}
@media (max-width: 1200px) {
  .hero-visual--video video {
    margin-left: -10%;
    transform: scale(1.3);
  }
}

/* ═══════════════ 2. PARTNER INTRO ═══════════════ */
.partner-intro {
  background: var(--paper);
  padding: 140px 0;
}
.pi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pi-eyebrow {
  color: var(--green);
  font-size: 15px; font-weight: 500;
  margin-bottom: 28px;
}
.pi-left h2 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--green-darkest);
}
.pi-right { padding-top: 20px; }
.pi-right p {
  font-size: 18px; line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.btn-dark-pill {
  display: inline-flex; align-items: center;
  background: var(--green-darkest);
  color: var(--paper);
  padding: 18px 36px;
  border-radius: var(--r-pill);
  font-weight: 500; font-size: 16px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.btn-dark-pill:hover {
  background: var(--green);
  transform: translateY(-1px);
}

/* ═══════════════ 3. EXTRUSION LINE SHOWCASE (dark) ═══════════════ */
.line-showcase {
  background: var(--green-darkest);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 140px 0 160px;
}
.line-showcase::before {
  /* Subtiele blauwe gloed, consistent met hero */
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  aspect-ratio: 16 / 9;
  background: radial-gradient(ellipse at center, var(--green-accent) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}
.line-showcase-inner {
  position: relative;
  z-index: 2;
}
.line-showcase-copy {
  text-align: center;
  margin-bottom: 72px;
}
.ls-eyebrow {
  color: var(--green);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  text-transform: none;
}
.line-showcase-copy h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 28px;
}
.line-showcase-copy p {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto;
}
.line-showcase-visual {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 40px 24px;
}
.line-showcase-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  animation: line-drift 80s ease-in-out infinite alternate;
}
@keyframes line-drift {
  0%   { transform: translateX(-1.5%) scale(1.02); }
  100% { transform: translateX(1.5%) scale(1.02); }
}
@media (prefers-reduced-motion: reduce) {
  .line-showcase-visual img { animation: none; transform: scale(1.02); }
}
.line-showcase-foot {
  text-align: center;
}
.btn-line-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--paper);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-line-pill:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
}
.btn-line-pill .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn-line-pill:hover .arrow {
  transform: translateX(3px);
}

/* ═══════════════ 4. LIMITLESS (light blue) ═══════════════ */
.limitless {
  background: var(--blue-tint);
  padding: 100px 0 120px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.candy-shot {
  aspect-ratio: 21 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #D4E2EC;
  margin-bottom: 100px;
}
.candy-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: candy-ambient 16s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}
@keyframes candy-ambient {
  0%   { transform: scale(1.00); }
  100% { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .candy-shot img { animation: none; }
}
.limitless-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 100px;
}
.limitless-eyebrow {
  color: var(--green-darkest);
  font-size: 15px; font-weight: 500;
  margin-bottom: 28px;
}
.limitless-left h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--green-darkest);
}
.limitless-right p {
  font-size: 18px; line-height: 1.6;
  color: var(--green-darkest);
  margin-bottom: 20px;
}
.limitless-tagline {
  font-weight: 500;
  margin-bottom: 36px !important;
}
.lifestyle-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lifestyle-card {
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #D4E2EC;
}
.lifestyle-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
}

/* Three different ambient motions — subtle, always-on, unsynchronized.
   Elke card beweegt minimaal en op een eigen timing, zodat het trio nooit
   tegelijk in dezelfde fase zit. */
.lifestyle-card img {
  will-change: transform;
  transform-origin: center center;
}
.lifestyle-card:nth-child(1) img {
  animation: kb-ambient-1 48s ease-in-out infinite alternate;
}
.lifestyle-card:nth-child(2) img {
  animation: kb-ambient-2 56s ease-in-out infinite alternate;
}
.lifestyle-card:nth-child(3) img {
  animation: kb-ambient-3 52s ease-in-out infinite alternate;
}

@keyframes kb-ambient-1 {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.06) translate(-0.6%, -0.4%); }
}
@keyframes kb-ambient-2 {
  0%   { transform: scale(1.04) translate(-0.8%, 0.2%); }
  100% { transform: scale(1.04) translate(0.8%, -0.2%); }
}
@keyframes kb-ambient-3 {
  0%   { transform: scale(1.06) translate(0.4%, 0.4%); }
  100% { transform: scale(1.02) translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .lifestyle-card img { animation: none; }
}

/* ═══════════════ 4. LEAD YOUR CATEGORY (light green) ═══════════════ */
.lead-category {
  background: var(--green-tint);
  padding: 140px 0;
}
.lc-header { margin-bottom: 80px; }
.lc-eyebrow {
  color: var(--green);
  font-size: 15px; font-weight: 500;
  margin-bottom: 28px;
}
.lc-header h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--green-darkest);
}
.lc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.lc-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 16px 16px 40px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease);
}
.lc-card:hover { transform: translateY(-4px); }
.lc-card-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #EFEFEF;
  margin-bottom: 28px;
}
.lc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.lc-card-body {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.lc-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--green-darkest);
  margin-bottom: 12px;
}
.lc-card p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 32px;
  flex-grow: 1;
}
.lc-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.lc-arrow:hover {
  background: var(--green-dark);
  transform: translateX(4px);
}

/* ═══════════════ 4b. LEAD BENEFITS (white bg, light green cards) ═══════════════ */
.lead-benefits {
  background: var(--paper);
  padding: 140px 0;
}
.lb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.lb-card {
  background: var(--green-card);
  border-radius: var(--r-lg);
  padding: 40px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease);
}
.lb-card:hover { transform: translateY(-4px); }
.lb-icon {
  width: 56px;
  height: 56px;
  background: var(--paper);
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  margin-bottom: 80px;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}
.lb-card h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--green-darkest);
  margin-bottom: 16px;
}
.lb-card p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--green-darkest);
  opacity: 0.85;
}
.btn-green-pill {
  display: inline-flex; align-items: center;
  background: var(--green-dark);
  color: var(--paper);
  padding: 18px 36px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 16px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.btn-green-pill:hover {
  background: var(--green);
  transform: translateY(-1px);
}

/* ═══════════════ 6. FOOTER (dark green, three columns) ═══════════════ */
.footer {
  background: var(--green-darkest);
  color: var(--paper);
  padding: 100px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 80px;
  padding-bottom: 72px;
}

.footer-heading {
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Column 1: Sitemap */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-links a {
  font-size: 17px;
  color: var(--paper);
  transition: color .2s var(--ease);
}
.footer-links a:hover { color: var(--green); }

/* Column 2: Contact */
.footer-address {
  font-style: normal;
  font-size: 17px;
  line-height: 1.7;
  color: var(--paper);
  margin-bottom: 32px;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: var(--paper);
}
.footer-contact-list svg {
  flex-shrink: 0;
  color: var(--green);
}
.footer-contact-list a {
  color: var(--paper);
  transition: color .2s var(--ease);
}
.footer-contact-list a:hover { color: var(--green); }

.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  color: var(--paper);
  transition: color .2s var(--ease);
}
.footer-social a:hover { color: var(--green); }

/* Column 3: Logo + about */
.footer-logo {
  display: block;
  margin-bottom: 32px;
}
.footer-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.footer-about {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  text-align: justify;
  hyphens: auto;
  max-width: 560px;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.footer-copyright a {
  color: rgba(255,255,255,.6);
  transition: color .2s var(--ease);
}
.footer-copyright a:hover { color: var(--green); }

.footer-legal {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}
.footer-legal a {
  color: rgba(255,255,255,.8);
  transition: color .2s var(--ease);
}
.footer-legal a:hover { color: var(--green); }
.footer-legal .sep {
  color: rgba(255,255,255,.35);
}

/* ═══════════════════════════════════════════════════════
   HOMEPAGE CONTENT SECTIONS — real Extrugroup content
   ═══════════════════════════════════════════════════════ */

/* Features list (9 items, 2-column grid with check-mark) */
.features-list-home {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.features-list-home li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(1, 55, 28, 0.08);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.feature-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 2px;
  position: relative;
}
.feature-check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%) rotate(45deg);
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
}
.feature-text {
  flex: 1;
}

/* Join our team — dark green CTA banner */
.join-team {
  background: var(--green-darkest);
  color: var(--paper);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.join-team::before {
  /* Dezelfde blauwe gloed als hero voor consistentie */
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 55%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle, var(--green-accent) 0%, transparent 60%);
  transform: translateY(-50%);
  opacity: 0.5;
  pointer-events: none;
}
.join-team-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.join-team-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 24px;
}
.join-team h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 24px;
}
.join-team p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  max-width: 600px;
}

/* Exhibitions section */
.exhibitions {
  background: var(--paper);
  padding: 100px 0;
}
/* Interpack feature — single highlighted upcoming event */
.interpack-feature {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}
.interpack-feature-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--green-darkest);
  aspect-ratio: 4 / 5;
}
.interpack-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.interpack-feature-content {
  max-width: 560px;
}
.interpack-feature-dates {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.interpack-feature-content h3 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--green-darkest);
  margin: 0 0 20px;
}
.interpack-feature-content p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 32px;
}
.interpack-feature-content strong {
  color: var(--green-darkest);
  font-weight: 600;
}
.exhibition-card {
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid rgba(1, 55, 28, 0.1);
  border-radius: var(--r-lg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.exhibition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 65, 45, 0.08);
  border-color: var(--green);
}
.exhibition-card--featured {
  background: var(--green-tint);
  border-color: var(--green);
}
.exhibition-dates {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.exhibition-card h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
}
.exhibition-card p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* btn-dark-pill arrow icon */
.btn-dark-pill .arrow,
.btn-green-pill .arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform .25s var(--ease);
}
.btn-dark-pill:hover .arrow,
.btn-green-pill:hover .arrow {
  transform: translateX(3px);
}

/* Page CTA — used at bottom of portfolio pages */
.page-cta {
  background: var(--green-tint);
  padding: 120px 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.page-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -8%;
  width: 45%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle, rgba(23, 169, 30, 0.18) 0%, transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}
.page-cta .wrap {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.page-cta-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 24px;
}
.page-cta h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--green-darkest);
  margin-bottom: 20px;
}
.page-cta p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 580px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — full breakpoint system
   ═══════════════════════════════════════════════════════

   Breakpoints (mobile-first logic, declared max-width):
   - 1400px  — large tablet / small desktop
   - 1100px  — tablet landscape
   - 900px   — tablet portrait
   - 680px   — large phone / small tablet
   - 480px   — mobile
   - 380px   — small mobile

   Each breakpoint overrides only what needs to change
   at that size, keeping the cascade predictable.
   ═══════════════════════════════════════════════════════ */


@media (max-width: 1100px) {
  .features-list-home { grid-template-columns: 1fr; gap: 0; }
  .interpack-feature { grid-template-columns: 1fr; gap: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
  .interpack-feature-visual { aspect-ratio: 16 / 10; }
  .join-team { padding: 100px 0; }
  .page-cta { padding: 100px 0; }
  .exhibitions { padding: 80px 0; }
}

@media (max-width: 900px) {
  .join-team { padding: 80px 0; }
  .join-team h2 { font-size: clamp(28px, 6vw, 44px); }
  .page-cta { padding: 80px 0; }
  .page-cta h2 { font-size: clamp(28px, 5.5vw, 44px); }
  .exhibitions { padding: 64px 0; }
  .exhibition-card { padding: 24px 22px; }
  .exhibition-card h3 { font-size: 20px; }
}

@media (max-width: 680px) {
  .features-list-home li { font-size: 15px; padding: 16px 0; }
  .feature-check { width: 22px; height: 22px; }
  .feature-check::after { width: 5px; height: 10px; }
  .join-team { padding: 64px 0; }
  .join-team-inner { text-align: left; }
  .join-team p { font-size: 16px; }
  .page-cta { padding: 64px 0; }
  .page-cta p { font-size: 16px; }
  .exhibitions { padding: 56px 0; }
  .interpack-feature { margin-top: 32px; gap: 24px; }
  .interpack-feature-visual { aspect-ratio: 4 / 5; }
}

/* ─────────── ≤ 1400px: large tablet / small laptop ─────────── */
@media (max-width: 1400px) {
  .wrap { width: min(1100px, 92%); }
  .wrap-wide { width: min(1200px, 94%); }
  .hero-grid { min-height: 680px; }
  .hero h1 { font-size: clamp(40px, 6vw, 72px); }
  .pi-grid { gap: 60px; }
  .limitless-grid { gap: 60px; }
  .candy-shot { aspect-ratio: 2 / 1; }
}


/* ─────────── ≤ 1100px: tablet landscape ─────────── */
@media (max-width: 1100px) {
  /* Hero — stacked */
  .hero { padding: 0; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-copy {
    padding: 20px 0 40px;
    max-width: 100%;
    text-align: left;
  }
  .hero h1 {
    font-size: clamp(44px, 8vw, 76px);
    white-space: normal;
  }
  .hero-lede { max-width: 600px; font-size: 16px; }
  .hero-visual {
    position: relative;
    min-height: 0;
    aspect-ratio: 1 / 1;
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
  }
  .hero-visual img {
    position: relative;
    object-fit: contain;
  }
  .hero-visual--video video {
    /* Reset desktop positioning on mobile/tablet — centered in its container */
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 100%;
    margin-left: 0;
    transform: scale(1.25);
    transform-origin: center center;
  }
  /* Nav blijft werken, maar burger verschijnt later */
  .nav-inner { gap: 20px; }

  /* Partner intro */
  .partner-intro { padding: 100px 0; }
  .pi-grid { grid-template-columns: 1fr; gap: 40px; }
  .pi-right { padding-top: 0; }

  /* Limitless section */
  .limitless { padding: 80px 0 100px; }
  .candy-shot { aspect-ratio: 16/9; margin-bottom: 64px; }
  .limitless-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }
  .lifestyle-trio {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Lead category (products) */
  .lead-category { padding: 100px 0; }
  .lc-header { margin-bottom: 48px; }
  .lc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Lead benefits */
  .lead-benefits { padding: 100px 0; }
  .lb-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }
  .lb-card { min-height: auto; padding: 32px; }
  .lb-icon { margin-bottom: 48px; }
  .lb-card h3 { font-size: 20px; }
  .lb-card p { font-size: 15px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
  }
  .footer-col--about { grid-column: 1 / -1; }
}


/* ─────────── ≤ 900px: tablet portrait ─────────── */
@media (max-width: 900px) {
  .wrap,
  .wrap-wide { width: min(100%, 92%); }

  /* Nav — reduce menu items or hide */
  .nav { padding: 18px 0; }
  .nav-links { gap: 20px; font-size: 14px; }
  .nav-links a { font-size: 14px; }
  .btn-contact { padding: 6px 6px 6px 16px; font-size: 14px; }
  .btn-contact .arrow { width: 30px; height: 30px; font-size: 14px; }

  /* Hero */
  .hero-grid { padding-top: 90px; padding-bottom: 50px; }
  .hero h1 { font-size: clamp(40px, 9vw, 64px); margin-bottom: 24px; }
  .hero-lede { font-size: 15px; margin-bottom: 32px; }
  .btn-hero-pill { padding: 16px 28px; font-size: 15px; }

  /* Partner intro */
  .partner-intro { padding: 80px 0; }
  .pi-left h2 { font-size: clamp(32px, 6vw, 48px); }
  .pi-right p { font-size: 16px; margin-bottom: 32px; }

  /* Limitless */
  .limitless { padding: 64px 0 80px; }
  .candy-shot { margin-bottom: 48px; }
  .limitless-left h2 { font-size: clamp(32px, 6vw, 48px); }
  .limitless-right p { font-size: 16px; }
  .limitless-grid { margin-bottom: 48px; }

  /* Line showcase */
  .line-showcase { padding: 80px 0 100px; }
  .line-showcase-copy { margin-bottom: 48px; }
  .line-showcase-copy h2 { font-size: clamp(32px, 7vw, 52px); }
  .line-showcase-copy p { font-size: 16px; }
  .line-showcase-visual { padding: 24px 0; margin-bottom: 40px; }
  .btn-line-pill { padding: 14px 24px; font-size: 15px; }

  /* Section headings */
  .lc-header h2 { font-size: clamp(32px, 6vw, 56px); }
  .pi-left h2, .limitless-left h2 { line-height: 1.1; }

  /* Lead category / benefits */
  .lead-category { padding: 80px 0; }
  .lead-benefits { padding: 80px 0; }
  .lc-header { margin-bottom: 40px; }
  .lc-card-img { aspect-ratio: 16/10; margin-bottom: 20px; }
  .lc-card { padding: 12px 12px 32px; }
  .lc-card h3 { font-size: 20px; }
  .lc-card p { font-size: 15px; margin-bottom: 24px; }

  /* Footer */
  .footer { padding: 64px 0 24px; }
  .footer-grid { gap: 40px; padding-bottom: 40px; }
  .footer-heading { font-size: 15px; margin-bottom: 28px; }
  .footer-links a { font-size: 15px; }
  .footer-address,
  .footer-contact-list li { font-size: 15px; }
  .footer-about { font-size: 15px; }
  .footer-logo img { height: 44px; }
}


/* ─────────── ≤ 680px: large phone ─────────── */
@media (max-width: 680px) {
  /* Nav — collapse to logo + burger only */
  .nav-links { display: none; }
  .btn-contact { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { justify-content: space-between; }
  .logo img { height: 26px; }

  /* Hero */
  .hero-grid {
    padding-top: 80px;
    padding-bottom: 40px;
    gap: 30px;
  }
  .hero-copy { padding: 10px 0 20px; }
  .hero h1 {
    font-size: clamp(36px, 10vw, 54px);
    margin-bottom: 20px;
  }
  .hero-lede { font-size: 15px; line-height: 1.55; margin-bottom: 28px; }
  .btn-hero-pill {
    padding: 15px 26px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
  .hero-visual { max-width: 100%; }

  /* Partner intro */
  .partner-intro { padding: 64px 0; }
  .pi-grid { gap: 32px; }
  .pi-left h2 { font-size: clamp(28px, 8vw, 40px); }
  .btn-dark-pill {
    padding: 15px 26px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Limitless */
  .limitless { padding: 48px 0 64px; }
  .candy-shot { aspect-ratio: 4/3; margin-bottom: 40px; border-radius: 16px; }
  .limitless-grid { gap: 24px; margin-bottom: 40px; }
  .limitless-left h2 { font-size: clamp(28px, 8vw, 40px); }
  .limitless-right p { font-size: 15px; }
  .limitless-tagline { margin-bottom: 28px !important; }

  /* Line showcase — narrow the render further on phones */
  .line-showcase-visual { padding: 24px 48px; }

  /* Lifestyle trio — stack vertically */
  .lifestyle-trio { grid-template-columns: 1fr; gap: 12px; }
  .lifestyle-card { aspect-ratio: 16/10; border-radius: 16px; }

  /* Lead category */
  .lead-category { padding: 64px 0; }
  .lc-header h2 { font-size: clamp(28px, 8vw, 44px); }
  .lc-grid { grid-template-columns: 1fr; gap: 14px; }
  .lc-card-img { aspect-ratio: 16/10; }
  .lc-card { padding: 10px 10px 28px; border-radius: 20px; }
  .lc-card h3 { font-size: 19px; margin-bottom: 10px; }
  .lc-card p { font-size: 14px; line-height: 1.5; margin-bottom: 20px; }
  .lc-arrow { width: 42px; height: 42px; }

  /* Lead benefits */
  .lead-benefits { padding: 64px 0; }
  .lb-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 32px;
  }
  .lb-card { padding: 28px; min-height: auto; border-radius: 20px; }
  .lb-icon { margin-bottom: 32px; width: 48px; height: 48px; }
  .lb-card h3 { font-size: 19px; margin-bottom: 10px; }
  .lb-card p { font-size: 15px; }
  .btn-green-pill {
    padding: 15px 26px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer { padding: 56px 0 20px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 32px;
  }
  .footer-col--about { grid-column: auto; }
  .footer-heading { font-size: 14px; margin-bottom: 20px; letter-spacing: 0.1em; }
  .footer-links { gap: 14px; }
  .footer-links a { font-size: 15px; }
  .footer-address { margin-bottom: 24px; }
  .footer-contact-list { gap: 12px; margin-bottom: 28px; }
  .footer-contact-list li { font-size: 15px; }
  .footer-social { gap: 14px; }
  .footer-logo img { height: 40px; }
  .footer-logo { margin-bottom: 24px; }
  .footer-about { font-size: 14px; line-height: 1.65; text-align: left; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 22px;
  }
  .footer-copyright,
  .footer-legal { font-size: 13px; }
  .footer-legal { flex-wrap: wrap; }
}


/* ─────────── ≤ 480px: mobile ─────────── */
@media (max-width: 480px) {
  /* Nav */
  .nav { padding: 14px 0; }
  .logo img { height: 24px; }
  .btn-contact {
    padding: 5px 5px 5px 14px;
    font-size: 13px;
    gap: 10px;
  }
  .btn-contact .arrow { width: 26px; height: 26px; font-size: 13px; }

  /* Hero */
  .hero-grid {
    padding-top: 70px;
    padding-bottom: 32px;
    gap: 24px;
  }
  .hero h1 {
    font-size: clamp(32px, 11vw, 48px);
    letter-spacing: -0.03em;
  }
  .hero-lede { font-size: 14px; margin-bottom: 24px; }

  /* Partner intro */
  .partner-intro { padding: 48px 0; }
  .pi-left h2 { font-size: clamp(26px, 9vw, 36px); }
  .pi-right p { font-size: 15px; margin-bottom: 24px; }

  /* Limitless */
  .limitless { padding: 40px 0 56px; }
  .candy-shot { border-radius: 14px; margin-bottom: 32px; }
  .limitless-left h2 { font-size: clamp(26px, 9vw, 36px); }
  .limitless-right p { font-size: 14px; }
  .lifestyle-card { border-radius: 14px; }

  /* Lead category */
  .lead-category { padding: 48px 0; }
  .lc-header h2 { font-size: clamp(26px, 9vw, 38px); }
  .lc-card { border-radius: 18px; }

  /* Lead benefits */
  .lead-benefits { padding: 48px 0; }
  .lb-card { padding: 24px; border-radius: 18px; }
  .lb-icon { margin-bottom: 24px; width: 44px; height: 44px; }

  /* Footer */
  .footer { padding: 48px 0 16px; }
  .footer-grid { gap: 32px; }
}


/* ─────────── ≤ 380px: small mobile (iPhone SE-ish) ─────────── */
@media (max-width: 380px) {
  .hero h1 { font-size: 32px; }
  .pi-left h2,
  .limitless-left h2,
  .lc-header h2 { font-size: 26px; }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-legal .sep { display: none; }
}


/* ─────────── ≥ 1800px: large desktop ─────────── */
@media (min-width: 1800px) {
  .wrap { width: min(1440px, 92%); }
  .wrap-wide { width: min(1600px, 94%); }
  .hero-grid { min-height: 860px; }
}


/* ─────────── Landscape phone specific (low height) ─────────── */
@media (max-height: 500px) and (orientation: landscape) and (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    padding-top: 60px;
    padding-bottom: 40px;
    gap: 40px;
  }
  .hero-visual { max-width: 340px; }
  .hero h1 { font-size: 40px; margin-bottom: 16px; }
  .hero-lede { font-size: 14px; margin-bottom: 20px; }
  .btn-hero-pill { width: auto; padding: 12px 22px; font-size: 14px; }
}


/* ─────────── Touch-friendly tap targets on all touch devices ─────────── */
@media (hover: none) and (pointer: coarse) {
  .lifestyle-card img { animation: none !important; }
  .nav-links a,
  .footer-links a,
  .footer-legal a {
    padding: 6px 0;
  }
  .btn-hero-pill,
  .btn-dark-pill,
  .btn-green-pill,
  .btn-contact {
    min-height: 48px;
  }
}


/* ─────────── Print styles ─────────── */
@media print {
  .hero { background: white; color: black; }
  .hero h1, .hero-lede { color: black !important; }
  .hero-visual,
  .lifestyle-trio,
  .footer-social,
  nav { display: none; }
}
