/* ============================================================
   VJT.BIZ - Modern Redesign
   Verbruggen Juice Trading B.V.
   Colors: #f5821f (brand orange) · #1c2631 (dark) · #ffffff (white)
   ============================================================ */

/* ── Fonts ──────────────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter_18pt-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter_18pt-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter_18pt-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter_18pt-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --orange:      #f5821f;
  --orange-dark: #d96e18;
  --orange-light:#fef3e8;
  --dark:        #1c2631;
  --dark-2:      #2d3e50;
  --text:        #2c3e50;
  --text-light:  #6b7c93;
  --light:       #f7f8fb;
  --mid:         #e8ecf0;
  --white:       #ffffff;
  --border:      #dde2ea;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 1px 8px rgba(0,0,0,0.07);
  --shadow:      0 2px 20px rgba(0,0,0,0.09);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --t:           0.2s ease;
  --container:   1180px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text); line-height: 1.65; background: var(--white); overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Typography ────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }

/* ── Container ─────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ── Utilities ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-block; color: var(--orange);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.7rem 1.4rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.01em;
  transition: all var(--t); white-space: nowrap;
  vertical-align: middle;
}
.btn-primary   { background: var(--orange); color: var(--white); border: 2px solid transparent; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(245,130,31,0.38); }
.btn-ghost     { background: rgba(255,255,255,0.12); color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-outline   { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-dark      { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #0f1a22; transform: translateY(-1px); }
.btn-sm        { padding: 0.45rem 1rem; font-size: 0.82rem; }
.btn-lg        { padding: 0.9rem 2rem; font-size: 1rem; }

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--dark);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  overflow: visible;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 56px;
  overflow: visible;
  transition: height 0.35s ease;
}
/* Logo */
.nav-logo { display: flex; align-items: flex-start; flex-shrink: 0; align-self: flex-start; }
.nav-logo img {
  height: 64px; width: auto; display: block;
  transition: height 0.35s ease;
  position: relative; z-index: 201;
}
/* Scrolled state */
.site-nav.scrolled .nav-inner { height: 40px; }
.site-nav.scrolled .nav-logo img { height: 49px; }
.nav-logo-text { display: none; }
/* Links */
.nav-menu { display: flex; align-items: center; gap: 0.1rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 0.28rem;
  padding: 0.5rem 0.7rem; border-radius: 5px;
  color: rgba(255,255,255,0.82); font-size: 0.86rem; font-weight: 500;
  transition: all var(--t);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-link svg { width: 12px; height: 12px; flex-shrink: 0; transition: transform var(--t); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown - bridge gap with ::after so mouse can travel from link to menu */
.nav-item { padding-bottom: 0; }
.nav-item::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0;
  height: 12px; /* invisible bridge covering the gap */
}
.dropdown {
  position: absolute; top: calc(100% + 3px); left: 0;
  min-width: 210px; background: var(--white);
  border-radius: var(--radius); border-top: 3px solid var(--orange);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-4px);
  transition: all var(--t); z-index: 300;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0); }
.dropdown a {
  white-space: nowrap;
  display: block; padding: 0.58rem 1rem;
  font-size: 0.87rem; color: var(--text);
  border-bottom: 1px solid var(--mid);
  transition: all var(--t);
}
.dropdown a:last-child { border-bottom: none; border-radius: 0 0 var(--radius) var(--radius); }
.dropdown a:hover { background: var(--light); color: var(--orange); padding-left: 1.3rem; }

/* Phone CTA in nav */
.nav-cta { margin-left: 1rem; }
.nav-phone-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.9rem; background: var(--orange);
  border-radius: 50px; color: var(--white);
  font-size: 0.82rem; font-weight: 700;
  transition: all var(--t);
}
.nav-phone-btn:hover { background: var(--orange-dark); }
.nav-phone-btn svg { width: 14px; height: 14px; }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero-viewport {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 56px);
}
.hero-viewport .hero { flex: 1; min-height: 0; }
.hero-viewport .usp-strip { flex-shrink: 0; }

.hero {
  position: relative; min-height: 0;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(28,38,49,0.88) 0%, rgba(28,38,49,0.55) 60%, rgba(28,38,49,0.3) 100%);
}
/* Geen wave: straight bottom */
.hero { border-bottom: 4px solid var(--orange); }
.hero-content {
  position: relative; z-index: 1;
  color: var(--white); max-width: 680px;
  padding: 2rem 0;
  transition: opacity 0.35s ease;
}
.hero-badge {
  display: inline-block;
  background: var(--orange); color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.32rem 0.8rem; border-radius: 3px;
  margin-bottom: 1.4rem;
}
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.78);
  margin-bottom: 2.2rem; max-width: 500px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
/* Slide indicators */
.hero-indicators {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 2;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: all var(--t);
}
.hero-dot.active { background: var(--orange); transform: scale(1.3); }
/* hero-wave removed - straight bottom edge */

/* ── USP Strip ─────────────────────────────────────────────── */
.usp-strip { background: var(--orange); padding: 1.25rem 0; }
.usp-grid {
  display: inline-grid;
  grid-template-columns: repeat(4, auto);
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}
.usp-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.28);
  text-decoration: none;
  transition: background var(--t);
  white-space: nowrap;
}
.usp-item:hover { background: rgba(0,0,0,0.08); }
.usp-item:last-child { border-right: none; }
.usp-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,255,255,0.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.usp-icon svg { width: 18px; height: 18px; }
.usp-label strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--white); }
.usp-label span  { font-size: 0.8rem; color: rgba(255,255,255,0.82); }

/* tablet: 2×2 */
@media (max-width: 1024px) and (min-width: 481px) {
  .usp-grid { display: grid; grid-template-columns: repeat(2, 1fr); position: static; transform: none; }
  .usp-item { white-space: normal; border-right: none; gap: 0.7rem; padding: 0.6rem 1.25rem; }
  .usp-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.28); }
  .usp-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.28); }
  .usp-icon { width: 34px; height: 34px; }
  .usp-icon svg { width: 15px; height: 15px; }
  .usp-label strong { font-size: 0.8rem; }
  .usp-label span   { font-size: 0.75rem; }
}

/* mobile: 2×2 compact, geen subtitle */
@media (max-width: 480px) {
  .usp-grid { display: grid; grid-template-columns: repeat(2, 1fr); position: static; transform: none; }
  .usp-item { white-space: normal; border-right: none; gap: 0.5rem; padding: 0.55rem 0.85rem; }
  .usp-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.28); }
  .usp-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.28); }
  .usp-icon { width: 30px; height: 30px; }
  .usp-icon svg { width: 14px; height: 14px; }
  .usp-label strong { font-size: 0.78rem; }
  .usp-label span   { display: none; }
}

/* ── Section ───────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: rgba(245,130,31,0.9); }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-light); font-size: 1.02rem; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 2rem;
  transition: all var(--t); border-top: 4px solid transparent;
  height: 100%;
}
.card:hover { box-shadow: var(--shadow-lg); border-top-color: var(--orange); transform: translateY(-4px); }
.card-icon {
  width: 50px; height: 50px;
  background: var(--orange-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 1.25rem;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 0.6rem; }
.card p  { color: var(--text-light); font-size: 0.92rem; }
.card-list { margin-top: 0.75rem; padding: 0; }
.card-list li {
  padding: 0.3rem 0; border-bottom: 1px solid var(--mid);
  font-size: 0.88rem; color: var(--text-light);
  display: flex; align-items: center; gap: 0.4rem;
}
.card-list li:last-child { border-bottom: none; }
.card-list li::before { content: '›'; color: var(--orange); font-weight: 700; font-size: 1rem; }

.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

/* ── About teaser ──────────────────────────────────────────── */
.about-teaser {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-teaser-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.about-teaser-img img { width: 100%; height: 380px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--orange); color: var(--white);
  padding: 1.2rem 1.5rem; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge span   { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p  { color: var(--text-light); margin-bottom: 1.25rem; }
.about-stats { display: flex; gap: 2rem; margin: 2rem 0; }
.stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--orange); }
.stat span   { font-size: 0.82rem; color: var(--text-light); }

/* ── Markets section ───────────────────────────────────────── */
.market-chips { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 2rem; }
.market-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.48rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.2); border-radius: 50px;
  font-size: 0.84rem; color: rgba(255,255,255,0.75);
  transition: all var(--t);
}
.market-chip:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.market-chip svg { width: 14px; height: 14px; opacity: 0.7; }
.market-chip:hover svg { opacity: 1; }

/* ── Products preview ──────────────────────────────────────── */
.fruit-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1.1rem; }
.fruit-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  transition: all var(--t); text-align: center;
  display: block;
}
.fruit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--orange); }
.fruit-thumb {
  height: 150px; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.fruit-thumb img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 0.5rem; box-sizing: border-box; transition: transform 0.4s ease; }
.fruit-card:hover .fruit-thumb img { transform: scale(1.08); }
.fruit-body { padding: 0.8rem 0.6rem; background: var(--light); }
.fruit-body h4 { font-size: 0.9rem; margin-bottom: 0.2rem; font-weight: 600; }
.fruit-body small { font-size: 0.72rem; color: var(--text-light); font-style: italic; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9124 100%);
  padding: 60px 0; text-align: center; color: var(--white);
}
.cta-banner h2 { margin-bottom: 0.75rem; }
.cta-banner p  { font-size: 1.05rem; opacity: 0.92; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page header (inner pages) ─────────────────────────────── */
.page-header {
  background: linear-gradient(110deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 3.5rem 0 2.5rem;
  color: var(--white);
  border-bottom: 4px solid var(--orange);
}
.page-header h1 { margin-bottom: 0.4rem; }
.page-header .subtitle { color: var(--orange); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 0.75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.page-header p { color: rgba(255,255,255,0.68); max-width: 620px; }
.breadcrumb { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,0.45); font-size: 0.82rem; transition: color var(--t); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.25); font-size: 0.82rem; }

/* ── Content layout (with sidebar) ─────────────────────────── */
.content-wrap { padding: 4rem 0; }
.content-layout { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; align-items: start; }
.main-content { min-width: 0; }
.main-content p { color: var(--text-light); line-height: 1.8; }
.main-content h2 { margin: 2rem 0 1rem; color: var(--text); }
.main-content h3 { margin: 1.5rem 0 0.6rem; color: var(--dark); }
.lead { font-size: 1.1rem; color: var(--text-light); padding-bottom: 1.75rem; border-bottom: 2px solid var(--mid); margin-bottom: 2rem; line-height: 1.85; }

/* Info boxes */
.info-box { background: var(--orange-light); border-left: 4px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.info-box h4 { color: var(--orange); margin-bottom: 0.4rem; }

/* Sidebar */
.sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-block { background: var(--light); border-radius: var(--radius-lg); padding: 1.5rem; }
.sidebar-block.bordered { border-left: 4px solid var(--orange); }
.sidebar-block h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 1rem; }
.sidebar-nav a {
  display: block; padding: 0.42rem 0.6rem; border-radius: 4px;
  font-size: 0.87rem; color: var(--text); transition: all var(--t);
}
.sidebar-nav a:hover, .sidebar-nav a.active { background: var(--orange); color: var(--white); }
.sidebar-contact-block { background: var(--dark); color: var(--white); }

/* ── Sidebar fruit mini-cards ───────────────────────────────── */
.sidebar-fruit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.sidebar-fruit-card {
  display: flex; flex-direction: column; align-items: center;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden; text-decoration: none;
  transition: all var(--t);
}
.sidebar-fruit-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow); }
.sidebar-fruit-thumb {
  width: 100%; aspect-ratio: 1;
  background: var(--white);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.sidebar-fruit-thumb img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  padding: 0.3rem; box-sizing: border-box;
  transition: transform 0.3s ease;
}
.sidebar-fruit-card:hover .sidebar-fruit-thumb img { transform: scale(1.08); }
.sidebar-fruit-card span {
  font-size: 0.68rem; font-weight: 600; color: var(--text);
  padding: 0.25rem 0.2rem; text-align: center;
  background: var(--light); width: 100%;
  line-height: 1.3;
}
.sidebar-fruit-more .sidebar-fruit-thumb {
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
}
.sidebar-fruit-more .sidebar-fruit-thumb span {
  font-size: 1.1rem; font-weight: 700; color: var(--orange);
}
.sidebar-fruit-more span:last-child {
  background: var(--orange-light); color: var(--orange);
}
.sidebar-contact-block h4 { color: var(--orange); }
.sidebar-contact-block a { color: rgba(255,255,255,0.75); font-size: 0.87rem; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.sidebar-contact-block a:hover { color: var(--orange); }
.sidebar-contact-block svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Markets photo grid (overview) ─────────────────────────── */
.market-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.market-photo-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: all var(--t);
}
.market-photo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.market-photo-thumb {
  width: 100%; aspect-ratio: 4 / 3;
  overflow: hidden; background: var(--light);
}
.market-photo-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.4s ease;
}
.market-photo-card:hover .market-photo-thumb img { transform: scale(1.06); }
.market-photo-body {
  padding: 1rem 1rem 1.1rem;
  border-top: 3px solid var(--orange);
}
.market-photo-body h3 { font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--dark); }
.market-photo-body .sub { font-size: 0.78rem; color: var(--orange); font-weight: 600; margin: 0; }
@media (max-width: 1024px) { .market-photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .market-photo-grid { grid-template-columns: 1fr; } }

/* ── Markets grid ──────────────────────────────────────────── */
.markets-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.market-card {
  display: block;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  transition: all var(--t); cursor: pointer;
  text-decoration: none; color: inherit;
}
.market-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.market-card-bar { height: 4px; background: var(--orange); }
.market-card-body { padding: 1.75rem; }
.market-card-body h3 { margin-bottom: 0.3rem; }
.market-card-body .sub { color: var(--orange); font-size: 0.82rem; font-weight: 600; margin-bottom: 0.85rem; }
.market-card-body p   { color: var(--text-light); font-size: 0.9rem; }
.app-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.app-chip  { padding: 0.28rem 0.75rem; background: var(--light); border: 1px solid var(--border); border-radius: 50px; font-size: 0.78rem; color: var(--text-light); }

/* ── Products grid ─────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1.1rem; }
/* ── Harvest Table ──────────────────────────────────────────── */
.harvest-section { margin-top: 2.5rem; }

/* ── Product page footer CTA ────────────────────────────────── */
.product-footer-cta {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.product-footer-cta p {
  margin: 0; font-size: 0.9rem; color: var(--text-light);
}
.product-footer-cta p a {
  color: var(--orange); font-weight: 600; text-decoration: none;
}
.product-footer-cta p a:hover { text-decoration: underline; }
.back-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.84rem; font-weight: 600; color: var(--text-light);
  text-decoration: none; white-space: nowrap; transition: color var(--t);
}
.back-link:hover { color: var(--orange); }
.harvest-section h3 {
  color: var(--orange); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.75rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--orange-light);
}
.harvest-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.harvest-table {
  width: 100%; border-collapse: collapse; font-size: 0.78rem;
  font-family: var(--font);
}
/* All cells */
.harvest-table td {
  padding: 0.38rem 0.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  vertical-align: middle; text-align: center;
  min-width: 32px; white-space: nowrap;
}
.harvest-table tr:last-child td { border-bottom: none; }
.harvest-table td:last-child { border-right: none; }
/* Month header row (row 1) */
.harvest-table tr:first-child td {
  background: var(--dark); color: var(--white);
  font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.04em; padding: 0.45rem 0.5rem;
}
.harvest-table tr:first-child td:first-child {
  background: var(--dark-2); color: rgba(255,255,255,0.5);
}
/* "Origin" label row (row 2) */
.harvest-table tr:nth-child(2) td {
  background: var(--light); color: var(--text-light);
  font-weight: 600; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.06em;
}
/* Origin name column (first cell of data rows) */
.harvest-table tr:nth-child(n+3) td:first-child {
  text-align: left; min-width: 130px; font-weight: 500;
  color: var(--text); background: var(--light);
  border-right: 2px solid var(--border);
}
/* Empty data cells */
.harvest-table tr:nth-child(n+3) td:not(:first-child) {
  background: var(--white);
}
/* Harvest month — volle oranje achtergrond */
.harvest-table td.harvest {
  background: var(--orange) !important;
  border-color: var(--orange-dark);
}
/* Year-round availability — licht oranje */
.harvest-table td.harvest-light {
  background: var(--orange-light) !important;
  border-color: var(--border);
}

.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07); overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t); text-align: center; display: block;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--orange); }
.product-thumb {
  height: 150px; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 0.5rem; box-sizing: border-box; transition: transform 0.4s ease; }
.product-card:hover .product-thumb img { transform: scale(1.08); }
.product-body { padding: 0.85rem 0.75rem; background: var(--light); }
.product-body h4 { font-size: 0.9rem; font-weight: 600; }
.product-body small { font-size: 0.72rem; color: var(--text-light); font-style: italic; }

/* Product detail */
.product-info-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin: 2rem 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.product-info-cell { padding: 1.25rem 1.25rem 1.25rem 1rem; background: var(--white); border-right: 1px solid var(--border); position: relative; }
.product-info-cell:last-child { border-right: none; }
.product-info-cell::before {
  content: '';
  display: block;
  width: 28px; height: 28px;
  background: var(--orange-light);
  border-radius: 50%;
  margin-bottom: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5821f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
}
.product-info-cell .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); font-weight: 700; margin-bottom: 0.35rem; }
.product-info-cell p { font-size: 0.84rem; color: var(--text-light); margin: 0; line-height: 1.55; }
.product-info-cell p a { color: var(--orange); font-weight: 600; text-decoration: none; }
.product-info-cell p a:hover { text-decoration: underline; }
.origins-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.5rem; }
.origin-tag { padding: 0.28rem 0.75rem; background: var(--dark); color: rgba(255,255,255,0.8); border-radius: 50px; font-size: 0.78rem; }

/* ── Certifications ─────────────────────────────────────────── */
.cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.cert-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 1.75rem; border-top: 4px solid var(--orange); }
.cert-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; background: var(--orange);
  border-radius: 50%; color: var(--white);
  font-weight: 900; font-size: 0.75rem; letter-spacing: 0.05em;
  margin-bottom: 1rem; flex-shrink: 0;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.contact-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 1.75rem; }
.contact-card h3 { color: var(--dark); border-bottom: 2px solid var(--mid); padding-bottom: 0.75rem; margin-bottom: 0.5rem; }
.contact-role { display: inline-block; background: var(--orange-light); color: var(--orange); font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.6rem; border-radius: 3px; margin-bottom: 1.1rem; }
.contact-row { display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 0.65rem; font-size: 0.9rem; }
.contact-row svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-row a { color: var(--orange); }
.contact-row a:hover { text-decoration: underline; }

/* ── News ───────────────────────────────────────────────────── */
.news-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.news-card-header { background: linear-gradient(110deg, var(--dark) 0%, var(--dark-2) 100%); padding: 1.75rem; color: var(--white); border-left: 4px solid var(--orange); }
.news-card-header h3 { color: var(--white); }
.news-card-body { padding: 1.75rem; }
.news-card-body p { color: var(--text-light); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 0 0 2rem; }
.footer-top { padding: 0 0 2rem; }
.footer-logo-link { display: inline-flex; }
.footer-logo-link img { width: 128px; height: 32px; opacity: 0.9; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 2rem; }
.footer-brand p { font-size: 0.87rem; line-height: 1.75; margin-top: 0; }
.footer-contact-links { margin-top: 1.5rem; }
.footer-contact-links a {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.55); font-size: 0.87rem; margin-bottom: 0.5rem;
  transition: color var(--t);
}
.footer-contact-links a:hover { color: var(--orange); }
.footer-contact-links svg { width: 13px; height: 13px; flex-shrink: 0; }
.footer-col h5 {
  color: var(--white); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.footer-col li { margin-bottom: 0.35rem; }
.footer-col li a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: all var(--t); }
.footer-col li a:hover { color: var(--orange); padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--t); }
.footer-bottom a:hover { color: var(--orange); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser-img { max-width: 500px; margin: 0 auto; }
  .about-badge { right: 0.5rem; }
}
@media (max-width: 1100px) {
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); padding: 1rem; flex-direction: column; align-items: stretch; border-top: 1px solid rgba(255,255,255,0.1); z-index: 100; max-height: calc(100dvh - 56px); overflow-y: auto; }
  .nav-menu.open { display: flex; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.06); border-top: none; border-left: 3px solid var(--orange); border-radius: 0 0 var(--radius) var(--radius); margin: 0.15rem 0 0.15rem 1rem; pointer-events: all; }
  .dropdown a { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.1); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
}
@media (max-width: 768px) {
  .hero { min-height: 75vh; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .contact-grid, .markets-grid, .cert-grid { grid-template-columns: 1fr; }
  .product-info-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-stats { flex-wrap: wrap; gap: 1rem; }
}
@media (max-width: 480px) {
  .fruit-grid, .products-grid { grid-template-columns: repeat(2,1fr); }
  .product-info-grid { grid-template-columns: 1fr; }
}

