/* =========================================================
   Silas Export Holding BV — Stylesheet
   ========================================================= */

:root {
  /* Brand palette (from official logo + invoice) */
  --brown-900:   #3d2615;
  --brown-800:   #5c3521;
  --brown-700:   #7a4a30;
  --burgundy-900: #3d2615; /* legacy alias -> brown */
  --burgundy-800: #5c3521; /* legacy alias -> brown */
  --burgundy-700: #7a4a30; /* legacy alias -> brown */
  --navy-900:    #15304d;
  --navy-800:    #1e3e60;
  --navy-700:    #2c5780;
  --sky-500:     #6ea8c8;
  --sky-400:     #8fc3dd;
  --sky-300:     #b5d0e2;
  --tan-500:     #b9a582;
  --tan-400:     #d4c69f;
  --cream:       #f4ede0;
  --cream-light: #faf7f1;
  --ink:      #1a2028;
  --ink-soft: #3a4050;
  --muted:    #6b7380;
  --line:     rgba(26, 32, 40, 0.10);
  --line-dark:rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 2px 8px rgba(21, 48, 77, 0.06);
  --shadow-md: 0 12px 32px rgba(21, 48, 77, 0.10);
  --shadow-lg: 0 24px 60px rgba(21, 48, 77, 0.16);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:   14px;
  --radius-lg:22px;

  --header-h: 180px;
  --logo-banner-h: 120px;
  --menu-bar-h: 56px;
  --container: 1200px;
}

/* =========== Reset =========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
section[id] { scroll-margin-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .4em; color: var(--navy-900); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

/* =========== Header (2 rows : logo banner + menu bar) =========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: box-shadow .3s ease;
}

/* --- Row 1 : full-width logo banner --- */
.logo-banner {
  background: #ffffff;
  border-bottom: 1px solid rgba(92, 53, 33, 0.08);
  transition: padding .3s ease, background .3s ease;
}
.logo-banner-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: var(--logo-banner-h);
  padding: 14px 0;
  transition: min-height .3s ease;
}
.brand { display: inline-flex; align-items: center; }
.brand img {
  height: 92px; width: auto; display: block;
  transition: height .3s ease;
}
.site-header.scrolled .logo-banner-inner { min-height: 64px; padding: 8px 0; }
.site-header.scrolled .brand img { height: 48px; }

.footer-logo { height: 80px; filter: brightness(0) invert(1); margin-bottom: 22px; display: block; }

/* --- Row 2 : menu bar --- */
.menu-bar {
  background: var(--brown-800);
  box-shadow: 0 2px 10px rgba(15, 30, 20, 0.15);
}
.menu-bar-inner {
  display: flex; align-items: center; justify-content: center;
  min-height: var(--menu-bar-h);
  position: relative;
}

.primary-nav { width: 100%; }
.primary-nav ul {
  display: flex; gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.primary-nav li { display: flex; }
.primary-nav a {
  font-size: .95rem; font-weight: 500; letter-spacing: .03em;
  color: rgba(255, 255, 255, 0.92);
  padding: 18px 26px;
  position: relative;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .12em;
  transition: background .2s ease, color .2s ease;
}
.primary-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--tan-400);
}
.primary-nav a::after {
  content: '';
  position: absolute; left: 50%; right: 50%; bottom: 0; height: 3px;
  background: var(--tan-400);
  transition: left .25s ease, right .25s ease;
}
.primary-nav a:hover::after { left: 20%; right: 20%; }

/* --- Language switcher --- */
.lang-switcher {
  display: flex; align-items: center;
  border: 1px solid rgba(92, 53, 33, 0.25);
  border-radius: 999px; padding: 3px;
  background: rgba(244, 237, 224, 0.6);
}
.lang-switcher button {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  padding: 7px 11px; color: var(--brown-800);
  border-radius: 999px; transition: all .2s ease;
}
.lang-switcher button:hover { background: rgba(92, 53, 33, 0.08); }
.lang-switcher button.active {
  background: var(--brown-800); color: #fff;
}

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
}
.menu-toggle span { width: 22px; height: 2px; background: #fff; transition: all .3s ease; }

@media (max-width: 900px) {
  .brand img { height: 70px; }
  .site-header.scrolled .brand img { height: 42px; }
  .footer-logo { height: 64px; }
}
@media (max-width: 800px) {
  :root { --logo-banner-h: 88px; --menu-bar-h: 52px; --header-h: 140px; }
  .brand img { height: 60px; }
  .primary-nav a { padding: 14px 18px; font-size: .78rem; }
}
@media (max-width: 640px) {
  .brand img { height: 46px; }
  .menu-toggle { display: flex; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--brown-800);
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease;
  }
  .primary-nav.open { max-height: 500px; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav li { width: 100%; }
  .primary-nav a {
    padding: 14px 20px; font-size: .85rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }
}

/* =========== Buttons =========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--burgundy-800); color: #fff;
  box-shadow: 0 10px 24px rgba(92, 53, 33, 0.35);
}
.btn-primary:hover { background: var(--burgundy-700); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(92, 53, 33, 0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

/* =========== Hero =========== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
  background: var(--navy-900);
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slideshow { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 8s ease;
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Corporate numbered gallery navigation */
.hero-slide-labels {
  position: absolute; left: 0; right: 0; bottom: 42px;
  z-index: 3;
  display: flex; gap: 20px; justify-content: flex-end;
  pointer-events: none;
  flex-wrap: wrap;
}
.hero-label {
  display: flex; flex-direction: column; gap: 6px;
  min-width: 130px;
  padding-top: 12px;
  border-top: 2px solid rgba(255,255,255, 0.18);
  opacity: 0.45;
  transition: opacity .4s ease, border-top-color .4s ease;
}
.hero-label.is-active {
  opacity: 1;
  border-top-color: var(--tan-400);
}
.hero-label-num {
  font-family: 'Inter', monospace;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--tan-400);
}
.hero-label-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: #fff;
  letter-spacing: .005em;
}
@media (max-width: 800px) {
  .hero-slide-labels { display: none; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 48, 77, 0.55) 0%, rgba(21, 48, 77, 0.30) 45%, rgba(21, 48, 77, 0.85) 100%),
    linear-gradient(90deg, rgba(21, 48, 77, 0.65) 0%, rgba(21, 48, 77, 0.15) 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 820px;
  padding-top: 60px;
}
/* Corporate eyebrow with hairline dividers */
.hero-eyebrow {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px 14px;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
}
.hero-eyebrow .hero-eyebrow-sep {
  width: 26px; height: 1px;
  background: var(--tan-400);
  opacity: 0.65;
}

/* Hero title — tight kerning, strong hierarchy */
.hero-title {
  color: #fff;
  margin: 0 0 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-size: clamp(2.8rem, 6vw, 5rem);
}
.hero-title em {
  font-style: italic;
  color: var(--tan-400);
  font-weight: 500;
}
.hero-title-rule {
  width: 72px; height: 2px;
  background: var(--tan-400);
  margin-bottom: 30px;
}
/* Hero tagline — vertical stack with hairline border */
.hero-tagline {
  list-style: none; margin: 0 0 34px; padding: 0 0 0 18px;
  border-left: 1px solid rgba(212, 198, 159, 0.35);
  display: flex; flex-direction: column; gap: 6px;
  max-width: 520px;
}
.hero-tagline li {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--serif);
  font-size: .98rem;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  letter-spacing: .005em;
  line-height: 1.4;
}
.hero-tagline li:first-child { color: var(--tan-400); }
.hero-tagline-lang {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-style: normal;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .24em;
  color: rgba(212, 198, 159, 0.7);
  min-width: 22px;
}

/* Hero lead — refined with strong + emphasis */
.hero-lead {
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-lead strong { color: #fff; font-weight: 600; }
.hero-lead em {
  display: inline-block;
  margin-top: 8px;
  font-style: italic;
  color: var(--tan-400);
  font-weight: 400;
  letter-spacing: .005em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stats > div {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-stats strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--tan-400);
  font-weight: 500;
}
.hero-stats span {
  font-size: .82rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: .02em;
}

/* =========== Sections =========== */
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section-alt { background: var(--cream); }
.section-dark {
  background: var(--navy-900);
  color: rgba(255,255,255,0.88);
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-sub, .section-dark p { color: rgba(255,255,255,0.75); }

.kicker {
  display: inline-block;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--burgundy-800);
  margin-bottom: 16px;
}
.kicker.light { color: var(--tan-400); }
.kicker::before { content: '— '; }

.section-head { max-width: 760px; margin: 0 0 60px; }
.section-head.center { margin: 0 auto 70px; text-align: center; }
.section-sub { font-size: 1.05rem; color: var(--muted); margin-top: 8px; line-height: 1.7; }
.section-sub.light { color: rgba(255,255,255,0.72); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }

/* =========== About =========== */
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform 1s ease;
}
.about-visual:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  padding: 18px 22px;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--navy-900); margin-bottom: 4px; }
.about-badge span { font-size: .85rem; color: var(--muted); }

.about-text p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.8; }
.values {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px;
  margin-top: 28px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.values li {
  position: relative; padding-left: 22px;
  font-size: .95rem; color: var(--ink-soft);
  font-weight: 500;
}
.values li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--burgundy-700);
  box-shadow: 0 0 0 3px rgba(92, 53, 33,0.2);
}

/* =========== Products =========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 20px;
}
.product-grid-4 { grid-template-columns: repeat(4, 1fr); }
.product-grid-4 .product-img { aspect-ratio: 3/4; }
.product-grid-4 .product-body { padding: 26px 24px 30px; }
.product-grid-4 .product-body h3 { font-size: 1.3rem; }
.product-grid-4 .product-body p { font-size: .92rem; }

.product-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 1280px; margin-left: auto; margin-right: auto; }
.product-grid-3 .product-img { aspect-ratio: 3/2; }
.product-img.product-img-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--navy-900); }
.product-img.product-img-dual img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.product:hover .product-img.product-img-dual img { transform: scale(1.06); }
.product-grid-3 .product-body { padding: 28px 28px 32px; }
.product-grid-3 .product-body h3 {
  font-size: 1.55rem;
  color: var(--tan-400);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 198, 159, 0.25);
}
.product-specs {
  display: flex; flex-direction: column; gap: 10px;
  margin: 0;
}
.product-specs li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
  align-items: baseline;
}
.product-specs li > span:first-child {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  padding-top: 2px;
}
.product-specs li em {
  font-style: normal;
  color: #fff;
  font-weight: 400;
}
.product {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.product:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 198, 159, 0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-800);
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.product:hover .product-img img { transform: scale(1.08); }
.product-body { padding: 22px 22px 26px; }
.product-body h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.product-body p {
  color: rgba(255,255,255,0.7);
  font-size: .9rem;
  line-height: 1.55;
  margin: 0;
}
.product-foot {
  margin-top: 46px; text-align: center;
  font-style: italic;
  font-size: .95rem;
}

/* =========== Services Cards =========== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--burgundy-700);
}
.card-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: rgba(30, 62, 96, 0.08);
  color: var(--navy-800);
  border-radius: 14px;
  margin-bottom: 20px;
  transition: background .3s ease, color .3s ease;
}
.card:hover .card-icon { background: var(--navy-800); color: var(--tan-400); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .93rem; margin: 0; line-height: 1.65; }

/* =========== Quote block =========== */
.quote-block {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.quote-media { position: absolute; inset: 0; z-index: 0; }
.quote-media img { width: 100%; height: 100%; object-fit: cover; }
.quote-overlay { position: absolute; inset: 0; background: rgba(21, 48, 77, 0.78); }
.quote-block .container { position: relative; z-index: 2; max-width: 880px; }
.quote-block blockquote { margin: 0; }
.quote-block p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 26px;
  text-wrap: balance;
}
.quote-block footer {
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tan-400);
}

/* =========== Info grid (KvK / Bank) =========== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  box-shadow: var(--shadow-sm);
}
.info-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px; padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.info-head svg { color: var(--navy-700); flex-shrink: 0; }
.info-head h3 { margin: 0; font-size: 1.2rem; }

.info-card dl {
  display: grid; grid-template-columns: 38% 1fr; gap: 14px 20px;
  margin: 0;
}
.info-card dt {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}
.info-card dd {
  margin: 0;
  font-size: .98rem; font-weight: 500;
  color: var(--ink);
  align-self: center;
  word-break: break-word;
}
.info-card .note {
  margin: 24px 0 0; padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .85rem; color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}

/* =========== Contact =========== */
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--ink-soft); margin-bottom: 30px; }
.contact-list {
  display: flex; flex-direction: column; gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.contact-list li { display: flex; flex-direction: column; gap: 4px; }
.contact-list strong {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--brown-800);
}
.contact-list a:hover { color: var(--navy-700); }

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(44, 87, 128, 0.12);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { width: 100%; margin-top: 8px; }
.form-status { margin-top: 14px; font-size: .9rem; text-align: center; min-height: 1.4em; }
.form-status.success { color: var(--navy-700); }
.form-status.error { color: #b3261e; }

/* =========== Footer =========== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.72);
  padding: 70px 0 30px;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-dark);
}
.site-footer h4 {
  color: var(--tan-400);
  font-family: var(--sans);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--tan-400); }
.footer-bottom {
  padding-top: 26px;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

/* =========== Reveal (no hiding — always visible, subtle hover only) =========== */
.reveal {
  opacity: 1;
  transform: none;
}

/* =========== Responsive sections =========== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 800px) {
  .grid-2 { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid-3 { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { min-height: auto; padding: calc(var(--header-h) + 30px) 0 60px; }
  .hero-stats { margin-top: 50px; padding-top: 26px; }
  .contact-form { padding: 28px 22px; }
  .info-card { padding: 28px 24px; }
  .info-card dl { grid-template-columns: 1fr; gap: 4px 0; }
  .info-card dt { margin-top: 10px; }
  .logo-banner-inner { flex-direction: column; gap: 14px; padding: 16px 0; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .btn { padding: 13px 24px; font-size: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* =========================================================
   MARKET PAGES (pages longue traîne par pays)
   ========================================================= */
.breadcrumb {
  padding: calc(var(--header-h) + 20px) 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumb li + li::before {
  content: "›";
  margin-right: 6px;
  color: var(--tan-500);
}
.breadcrumb a {
  color: var(--brown-800);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--brown-900); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--navy-800); font-weight: 600; }

.market-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 100%);
  padding: 50px 0 60px;
  border-bottom: 1px solid var(--line);
}
.market-hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--brown-900);
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.market-hero .lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 800px;
  margin: 0 0 26px;
  line-height: 1.55;
}
.market-hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.market-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.market-section.alt {
  background: var(--cream-light);
}
.market-section h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--navy-900);
  margin: 0 0 28px;
  letter-spacing: -0.005em;
}
.market-section h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--brown-800);
  margin: 0 0 12px;
}
.market-section p { line-height: 1.6; color: var(--ink-soft); }
.market-section .market-note {
  margin-top: 26px;
  padding: 16px 20px;
  background: var(--cream);
  border-left: 3px solid var(--tan-500);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.market-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.market-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.market-product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.market-product ul {
  padding-left: 18px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}
.market-product li { margin: 4px 0; }

.market-section details {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
  background: #fff;
}
.market-section details[open] { border-color: var(--tan-500); }
.market-section summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-800);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.market-section summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--brown-700);
  line-height: 1;
}
.market-section details[open] summary::after { content: "−"; }
.market-section details p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.market-cta {
  background: linear-gradient(135deg, var(--brown-900) 0%, var(--navy-900) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.market-cta h2 {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin: 0 0 14px;
}
.market-cta p {
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin: 0 auto 26px;
  font-size: 1.05rem;
}
.market-cta .hero-cta {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.market-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.market-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}

.market-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.market-list li {
  padding: 12px 16px;
  background: var(--cream-light);
  border-left: 3px solid var(--tan-500);
  border-radius: 4px;
  transition: background 0.2s;
}
.market-list li:hover { background: var(--cream); }
.market-list a {
  color: var(--brown-900);
  text-decoration: none;
  font-weight: 500;
}
.market-list a:hover { color: var(--navy-900); }

@media (max-width: 900px) {
  .market-grid-2 { grid-template-columns: 1fr; gap: 26px; }
  .market-grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .market-list { grid-template-columns: 1fr; }
}
