/* ── BeanGlobe - Design System ─────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,200;9..40,300;9..40,400;9..40,500;9..40,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ── Tokens ── */
:root {
  --ivory:     #FAF3E8;
  --ivory-2:   #EEE2CC;
  --espresso:  #1A0B04;
  --moka:      #2C1A0E;
  --gold:      #C4860A;
  --muted:     #9B7A50;
  --cream:     #F0E2C8;

  --font-body:    'DM Sans', sans-serif;
  --font-display: 'DM Sans', sans-serif;

  --nav-h: 84px;
  --max-w: 1320px;
  --pad:   clamp(24px, 5vw, 80px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--espresso);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  z-index: 100;
  background: var(--espresso);
  border-bottom: 1px solid rgba(240,226,200,0.1);
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled {
  border-color: rgba(240,226,200,0.18);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav__mark {
  width: 100px;
  height: auto;
  flex-shrink: 0;
}
.nav__wordmark {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.28em;
  color: var(--cream);
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__item {
  position: relative;
}
.nav__link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,226,200,0.58);
  transition: color 0.2s;
  text-decoration: none;
}
.nav__link:hover,
.nav__link.active { color: var(--cream); }
.nav__item--has-menu > .nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav__item--has-menu > .nav__link::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.55;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav__item--has-menu:hover > .nav__link::after,
.nav__item--has-menu:focus-within > .nav__link::after {
  opacity: 1;
  transform: rotate(-180deg);
}
.nav__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 190px;
  padding: 18px 12px 12px;
  background: var(--espresso);
  border: 1px solid rgba(240,226,200,0.14);
  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav__submenu a {
  display: block;
  padding: 12px 14px;
  color: rgba(240,226,200,0.62);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.nav__submenu a:hover {
  color: var(--cream);
  background: rgba(240,226,200,0.07);
}
.nav__item--has-menu:hover .nav__submenu,
.nav__item--has-menu:focus-within .nav__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav__cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--cream);
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.2s;
  text-decoration: none;
}
.nav__cta:hover { background: var(--gold); color: var(--espresso); }
.nav > .nav__cta { justify-self: end; }

/* ── Language switcher ── */
.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
}
.lang-switcher {
  position: relative;
}
.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(240,226,200,0.6);
  padding: 6px 0;
  transition: color 0.18s;
}
.lang-switcher__btn:hover { color: var(--cream); }
.lang-switcher__btn svg { transition: transform 0.18s; }
.lang-switcher.lang-open .lang-switcher__btn svg { transform: rotate(180deg); }
.lang-switcher.lang-open .lang-switcher__btn { color: var(--cream); }
.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 140px;
  background: var(--espresso);
  border: 1px solid rgba(240,226,200,0.14);
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 500;
}
.lang-switcher.lang-open .lang-switcher__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-switcher__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(240,226,200,0.55);
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  border-bottom: 1px solid rgba(240,226,200,0.07);
  text-decoration: none;
}
.lang-switcher__menu li:last-child a { border-bottom: none; }
.lang-switcher__menu a:hover { color: var(--cream); background: rgba(240,226,200,0.06); }
.lang-switcher__menu a.is-active { color: var(--gold); }
.lang-switcher__menu .flag {
  width: 20px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 1px;
  overflow: hidden;
}

/* ── Mobile nav burger ── */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  z-index: 1001;
  color: var(--cream);
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.22s, opacity 0.22s;
  transform-origin: center;
}
.nav--open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav--open .nav__burger span:nth-child(2) { opacity: 0; }
.nav--open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
body.nav-open { overflow: hidden; }
.nav__item--mobile-only { display: none; }

@media (max-width: 768px) {
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--espresso);
    padding: clamp(32px, 6vw, 56px) var(--pad) clamp(32px, 6vw, 56px);
    gap: 0;
    z-index: 999;
    overflow-y: auto;
  }
  .nav--open .nav__links .nav__item { width: 100%; }
  .nav--open .nav__item--mobile-only { display: block; }
  .nav--open .nav__link {
    display: block;
    font-size: clamp(26px, 8vw, 40px);
    font-weight: 300;
    color: rgba(240,226,200,0.65) !important;
    padding: 18px 0;
    border-bottom: 1px solid rgba(240,226,200,0.1);
    letter-spacing: -0.01em;
    text-transform: none;
  }
  .nav--open .nav__link:hover,
  .nav--open .nav__link.active { color: var(--cream) !important; }

  /* Mobile submenu */
  .nav--open .nav__submenu {
    position: static !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 0 8px 16px !important;
    top: auto !important;
    display: none;
    min-width: 0 !important;
  }
  .nav--open .nav__item--open .nav__submenu { display: block; }
  .nav--open .nav__submenu a {
    font-size: 14px !important;
    letter-spacing: 0.12em !important;
    padding: 10px 0 !important;
    color: rgba(240,226,200,0.4) !important;
    border-bottom: 1px solid rgba(240,226,200,0.06) !important;
    background: transparent !important;
  }
  .nav--open .nav__submenu a:hover { color: rgba(240,226,200,0.7) !important; background: transparent !important; }
}

/* ── Small screens (≤ 480px) ── */
@media (max-width: 480px) {
  :root { --nav-h: 70px; }
  .nav__mark { width: 60px; }
  .section-title { font-size: clamp(26px, 9vw, 42px); }
  .about-hero__title { font-size: clamp(36px, 10vw, 60px); }
  .contact-main__title { font-size: clamp(30px, 9vw, 48px); }
  .form-submit { width: 100%; text-align: center; }
}

/* ── Page wrapper ── */
.page { padding-top: var(--nav-h); }

/* ── Typography helpers ── */
.label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.mono-caps {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ── Inline logo SVG mark helper ── */
.logo-mark {
  flex-shrink: 0;
  display: block;
}

/* ── Section spacing ── */
.section { padding: clamp(64px, 10vw, 140px) var(--pad); }
.section--dark {
  background: var(--espresso);
  color: var(--cream);
}
.section--mid { background: var(--ivory-2); }

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

/* ── Divider ── */
.rule {
  border: none;
  border-top: 1px solid var(--ivory-2);
  margin: 0;
}
.rule--dark { border-color: rgba(240,226,200,0.12); }

/* ── Button ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
}
.btn--dark {
  background: var(--espresso);
  color: var(--cream);
}
.btn--dark:hover { background: var(--moka); }
.btn--outline {
  border: 1.5px solid var(--espresso);
  color: var(--espresso);
}
.btn--outline:hover {
  background: var(--espresso);
  color: var(--cream);
}
.btn--outline-light {
  border: 1.5px solid var(--cream);
  color: var(--cream);
}
.btn--outline-light:hover {
  background: var(--cream);
  color: var(--espresso);
}

/* ── Arrow link ── */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
}
.arrow-link:hover { gap: 16px; }

/* ── Footer ── */
.footer {
  background: var(--moka);
  color: var(--cream);
  padding: 56px var(--pad) 36px;
}
.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(240,226,200,0.12);
}
.footer__brand p {
  font-size: 13px;
  color: rgba(240,226,200,0.5);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 260px;
}
.footer__col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 13px;
  color: rgba(240,226,200,0.6);
  transition: color 0.2s;
  text-decoration: none;
}
.footer__links a:hover { color: var(--cream); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 11px;
  color: rgba(240,226,200,0.35);
  letter-spacing: 0.06em;
}

/* ── Form elements ── */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border-bottom: 1.5px solid var(--ivory-2);
  padding: 12px 0;
  font-size: 15px;
  font-weight: 300;
  color: var(--espresso);
  width: 100%;
  transition: border-color 0.2s;
  resize: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); opacity: 0.5; }

/* ── Scroll reveal (JS-driven) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── index ── */

/* Ticker */
.ticker {
  background: var(--espresso);
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 90s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker__item {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,226,200,0.5);
  padding: 0 18px;
  flex-shrink: 0;
}
.ticker__sep {
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: calc(100svh - var(--nav-h) - 40px);
  min-height: 520px;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide--1 {
  background: url(../img/hero-1.svg) center/cover no-repeat;
}
.hero-slide--2 {
  background: url(../img/hero-2.svg) center/cover no-repeat;
}
.hero-slide--3 {
  background: url(../img/hero-3.svg) center/cover no-repeat;
}
.hero-slide__content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-slide__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero-slide__title {
  font-size: clamp(52px, 8vw, 130px);
  font-weight: 200;
  line-height: 0.93;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 32px;
  max-width: 900px;
}
.hero-slide__line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}
.hero-slide__sub {
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 300;
  color: rgba(240,226,200,0.88);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
  text-wrap: pretty;
}
/* Slider controls */
.hero-slider__ui {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 16px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(240,226,200,0.22);
  border-radius: 50%;
  color: rgba(240,226,200,0.65);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
  background: transparent;
  line-height: 1;
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold); }
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(240,226,200,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
  flex-shrink: 0;
}
.slider-dot.is-active {
  background: var(--gold);
  width: 24px;
}
.slider-counter {
  margin-left: auto;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: rgba(240,226,200,0.35);
}

/* Hero Slider imported from /i */
.hero-slider {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  background: var(--espresso);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.slide.active { opacity: 1; z-index: 2; }
.slide.prev { opacity: 0; z-index: 1; }
.slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,2,1,1) 0%,
    rgba(6,2,1,0.95) 25%,
    rgba(6,2,1,0.72) 55%,
    rgba(6,2,1,0.38) 80%,
    rgba(6,2,1,0.18) 100%
  );
}
.slide-1 .slide__bg {
  background-color: #1A0B04;
  background-image: url('https://images.unsplash.com/photo-1514432324607-a09d9b4aefdd?auto=format&fit=crop&w=1920&q=80');
  background-position: center 40%;
}
.slide-1 .slide__watermark {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 42vw;
  max-width: 580px;
  opacity: 0.07;
  z-index: 2;
}
.slide-2 .slide__bg {
  background-color: #1C0E06;
  background-image: url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?auto=format&fit=crop&w=1920&q=80');
  background-position: center 40%;
}
.slide-3 .slide__bg {
  background-color: #0A1208;
  background-image: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?auto=format&fit=crop&w=1920&q=80');
  background-position: center 50%;
}
.slide__content {
  position: relative;
  z-index: 3;
  padding: var(--pad);
  padding-bottom: clamp(48px, 6vw, 72px);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.slide__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.slide__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.slide__title {
  font-size: clamp(44px, 7vw, 100px);
  font-weight: 200;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 32px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}
.slide__sub {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 440px;
  text-wrap: pretty;
  margin-bottom: 32px;
}
.slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid rgba(240,226,200,0.3);
  padding-bottom: 6px;
  text-decoration: none;
  transition: border-color 0.2s, gap 0.2s, color 0.2s;
}
.slide__cta:hover { border-color: var(--gold); color: var(--gold); gap: 18px; }
.slide__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.slide__counter {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(240,226,200,0.3);
}
.slide__counter strong { color: var(--cream); }
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(240,226,200,0.1);
  z-index: 10;
}
.slider-progress__fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 6s linear;
}
.slider-dots {
  position: absolute;
  bottom: 28px;
  right: var(--pad);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 24px;
  height: 2px;
  border-radius: 0;
  background: rgba(240,226,200,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.slider-dot.active {
  background: var(--gold);
  width: 40px;
}
.slider-arrows {
  position: absolute;
  bottom: 20px;
  left: var(--pad);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.slider-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(240,226,200,0.18);
  background: transparent;
  color: rgba(240,226,200,0.6);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  border-radius: 2px;
}
.slider-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,134,10,0.08);
}

/* ── Chiffres bar ── */
.chiffres {
  background: var(--espresso);
  border-bottom: 1px solid rgba(240,226,200,0.06);
}
.chiffres__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.chiffre {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px) clamp(18px, 3vw, 36px);
  border-right: 1px solid rgba(240,226,200,0.08);
  display: flex;
  align-items: baseline;
  gap: clamp(12px, 2vw, 20px);
}
.chiffre:last-child { border-right: none; }
.chiffre__num {
  font-size: clamp(30px, 3.8vw, 58px);
  font-weight: 200;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1;
  flex-shrink: 0;
}
.chiffre__num sup { font-size: 0.4em; color: var(--gold); vertical-align: super; font-weight: 400; letter-spacing: 0; }
.chiffre__label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(240,226,200,0.35);
}

/* ── Home editorial sections ── */
.home-section {
  padding: clamp(72px, 10vw, 140px) var(--pad);
  border-bottom: 1px solid rgba(26,11,4,0.1);
}
.home-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--espresso);
  text-wrap: balance;
}
.section-lede {
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--moka);
  margin-top: 28px;
  text-wrap: pretty;
}
.section-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 22px;
  text-wrap: pretty;
}
.maison-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.maison-copy {
  max-width: 720px;
}
.maison-panel {
  position: relative;
  min-height: 560px;
  background: var(--moka);
  overflow: hidden;
}
.maison-panel__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26,11,4,0.82), rgba(26,11,4,0.08) 60%),
    url('https://images.unsplash.com/photo-1517701604599-bb29b565090c?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}
.maison-panel__note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  border-top: 1px solid rgba(240,226,200,0.22);
  padding-top: 20px;
  color: var(--cream);
}
.maison-panel__note span,
.origin-notes span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.maison-panel__note strong,
.origin-notes strong {
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.maison-panel__note p,
.origin-notes p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(240,226,200,0.62);
  margin-top: 8px;
}
.sourcing-section {
  background: var(--ivory-2);
}
.section-head {
  max-width: 880px;
  margin-bottom: clamp(44px, 6vw, 76px);
}
.sourcing-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(26,11,4,0.14);
  border-bottom: 1px solid rgba(26,11,4,0.14);
}
.sourcing-step {
  min-height: 360px;
  padding: clamp(28px, 3vw, 42px) clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(26,11,4,0.14);
  display: flex;
  flex-direction: column;
}
.sourcing-step:last-child {
  border-right: none;
}
.sourcing-step__num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: auto;
}
.sourcing-step h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1;
  color: var(--espresso);
  margin-bottom: 18px;
}
.sourcing-step p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  text-wrap: pretty;
}
.catalogue-section {
  background: var(--espresso);
  color: var(--cream);
}
.catalogue-section .section-title,
.catalogue-section .section-lede {
  color: var(--cream);
}
.catalogue-section .section-lede {
  color: rgba(240,226,200,0.66);
}
.catalogue-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  margin-bottom: clamp(42px, 6vw, 78px);
}
.catalogue-head .section-kicker {
  margin-top: 12px;
}
.catalogue-head .section-lede {
  max-width: 680px;
}
.catalogue-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(240,226,200,0.16);
  border-bottom: 1px solid rgba(240,226,200,0.16);
}
.catalogue-card {
  min-height: 420px;
  padding: clamp(28px, 3vw, 42px);
  border-right: 1px solid rgba(240,226,200,0.16);
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.catalogue-card:last-child {
  border-right: none;
}
.catalogue-card:hover {
  background: rgba(240,226,200,0.05);
}
.catalogue-card__num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 54px;
}
.catalogue-card h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 300;
  line-height: 0.98;
  color: var(--cream);
  margin-bottom: 20px;
}
.catalogue-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240,226,200,0.58);
  text-wrap: pretty;
  max-width: 320px;
}
.catalogue-card__meta {
  margin-top: auto;
  padding-top: 34px;
}
.catalogue-card__meta span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(240,226,200,0.34);
  margin-bottom: 8px;
}
.catalogue-card__meta strong {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.5;
}
.catalogue-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(240,226,200,0.12);
}
.catalogue-card__footer span,
.catalogue-card__footer em {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.catalogue-card__footer em {
  color: rgba(240,226,200,0.52);
  transition: color 0.2s;
}
.catalogue-card:hover .catalogue-card__footer em {
  color: var(--gold);
}
.catalogue-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}
.carnet-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.carnet-photo {
  min-height: 620px;
  background:
    linear-gradient(to bottom, rgba(26,11,4,0.05), rgba(26,11,4,0.38)),
    url('https://images.unsplash.com/photo-1445077100181-a33e9ac94db0?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}
.carnet-copy {
  max-width: 740px;
}
.origin-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 36px 0 34px;
  background: rgba(26,11,4,0.12);
}
.origin-notes > div {
  background: var(--moka);
  color: var(--cream);
  padding: 24px;
}
.origin-notes strong {
  font-size: clamp(18px, 1.6vw, 24px);
}
.origin-notes p {
  color: rgba(240,226,200,0.52);
}

/* ── CTA strip ── */
.cta-strip {
  background: var(--espresso);
  padding: clamp(64px, 8vw, 100px) var(--pad);
  border-top: 1px solid rgba(240,226,200,0.08);
}
.cta-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-strip__text {
  font-size: clamp(22px, 2.5vw, 38px);
  font-weight: 200;
  letter-spacing: -0.01em;
  color: var(--cream);
  max-width: 520px;
  text-wrap: pretty;
}
.cta-strip__text em { color: var(--gold); font-style: normal; }

@media (max-width: 900px) {
  .hero-slider { height: 75vh; min-height: 480px; }
  .slide__content { grid-template-columns: 1fr; }
  .slide__meta { align-items: flex-start; }
  .slide__title { font-size: clamp(40px, 11vw, 80px); }
  .chiffres__inner { grid-template-columns: 1fr 1fr; }
  .chiffre {
    padding: 22px var(--pad);
    border-bottom: 1px solid rgba(240,226,200,0.08);
  }
  .chiffre:nth-child(2n) { border-right: none; }
  .chiffre:nth-last-child(-n+2) { border-bottom: none; }
  .maison-grid,
  .carnet-grid {
    grid-template-columns: 1fr;
  }
  .maison-panel,
  .carnet-photo {
    min-height: 420px;
  }
  .sourcing-steps {
    grid-template-columns: 1fr 1fr;
  }
  .sourcing-step {
    min-height: 300px;
    border-bottom: 1px solid rgba(26,11,4,0.14);
  }
  .sourcing-step:nth-child(2n) { border-right: none; }
  .sourcing-step:nth-last-child(-n+2) { border-bottom: none; }
  .origin-notes {
    grid-template-columns: 1fr;
  }
  .catalogue-head,
  .catalogue-cards {
    grid-template-columns: 1fr;
  }
  .catalogue-card {
    min-height: 320px;
    border-right: none;
    border-bottom: 1px solid rgba(240,226,200,0.16);
  }
  .catalogue-card:last-child {
    border-bottom: none;
  }
  .catalogue-card__num {
    margin-bottom: 34px;
  }
  .catalogue-action {
    justify-content: flex-start;
  }
  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .home-section {
    padding: 56px var(--pad);
  }
  .section-title {
    font-size: clamp(32px, 12vw, 52px);
  }
  .maison-panel,
  .carnet-photo {
    min-height: 340px;
  }
  .sourcing-steps {
    grid-template-columns: 1fr;
  }
  .sourcing-step,
  .sourcing-step:nth-child(2n) {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(26,11,4,0.14);
  }
  .sourcing-step:last-child {
    border-bottom: none;
  }
  .sourcing-step__num {
    margin-bottom: 44px;
  }
  .catalogue-card {
    min-height: auto;
    padding: 28px 0;
  }
}

/* ── about ── */
.about-hero {
  background: var(--espresso);
  color: var(--cream);
  padding: calc(var(--nav-h) + 58px) var(--pad) clamp(68px, 8vw, 116px);
}
.about-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-hero__top {
  display: grid;
  grid-template-columns: 220px minmax(0, 700px);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  margin-bottom: clamp(44px, 6vw, 82px);
}
.about-hero__label {
  color: var(--gold);
  margin-top: 8px;
}
.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 76px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  max-width: 1160px;
}
.about-hero__intro {
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(240,226,200,0.64);
  text-wrap: pretty;
  max-width: 700px;
}
.about-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(52px, 7vw, 92px);
  border-top: 1px solid rgba(240,226,200,0.16);
  border-bottom: 1px solid rgba(240,226,200,0.16);
}
.about-hero__meta p {
  min-height: 118px;
  padding: clamp(24px, 3vw, 34px) clamp(22px, 2.8vw, 36px);
  border-right: 1px solid rgba(240,226,200,0.14);
  color: rgba(240,226,200,0.72);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}
.about-hero__meta p:first-child { padding-left: 0; }
.about-hero__meta p:last-child {
  border-right: none;
  padding-right: 0;
}
.about-hero__meta span,
.about-band__item span,
.wholesale-stack span,
.wholesale-note span,
.client-card__body span,
.offer-row span,
.operations-panel span,
.operations-step span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-hero__meta span {
  display: block;
  margin-bottom: 12px;
}
.about-band {
  background: var(--espresso);
  color: var(--cream);
  padding: 22px var(--pad);
}
.about-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.about-band__item {
  min-height: 132px;
  padding: 40px 34px 38px 0;
  border-right: 1px solid rgba(240,226,200,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-band__item:not(:first-child) {
  padding-left: 34px;
}
.about-band__item:last-child {
  border-right: none;
}
.about-band__item strong {
  display: block;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 200;
  line-height: 1;
  margin-bottom: 10px;
}
.about-band__item span {
  display: block;
  color: rgba(240,226,200,0.42);
  line-height: 1.5;
}
.about-section {
  padding: clamp(76px, 10vw, 140px) var(--pad);
  border-bottom: 1px solid rgba(26,11,4,0.1);
}
.about-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.wholesale-layout {
  display: grid;
  gap: clamp(42px, 6vw, 78px);
}
.wholesale-head {
  display: grid;
  gap: clamp(34px, 5vw, 56px);
}
.wholesale-head__top {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}
.wholesale-head__top .section-kicker { margin-top: 12px; }
.wholesale-head__top .section-lede { max-width: 640px; }
.wholesale-note {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 92px);
  padding: clamp(28px, 4vw, 48px) clamp(32px, 4.5vw, 56px);
  background: var(--espresso);
  color: var(--cream);
  align-items: start;
}
.wholesale-note span { margin-top: 6px; }
.wholesale-note p {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240,226,200,0.72);
  max-width: 680px;
}
.wholesale-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.wholesale-stack article {
  min-height: 300px;
  padding: clamp(28px, 3.4vw, 44px);
  background: var(--ivory-2);
  border-top: 3px solid rgba(181,138,82,0.52);
  display: flex;
  flex-direction: column;
}
.wholesale-stack article:nth-child(2) {
  background: #efe6d8;
}
.wholesale-stack article:nth-child(3) {
  background: #e8ddcc;
}
.wholesale-stack strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 300;
  line-height: 1;
  margin: clamp(56px, 6vw, 88px) 0 18px;
}
.wholesale-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(26,11,4,0.16);
  color: var(--brown);
}
.wholesale-stack p {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(26,11,4,0.12);
}
.wholesale-stack p,
.offer-row p,
.operations-step p,
.client-card__body p,
.about-cta__right p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  text-wrap: pretty;
}
.client-section {
  background: var(--ivory-2);
}
.client-head {
  max-width: 840px;
  margin-bottom: clamp(44px, 6vw, 76px);
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.client-card {
  background: var(--ivory);
  color: inherit;
}
.client-card__image {
  min-height: 280px;
  background-size: cover;
  background-position: center;
}
.client-card__image--roaster {
  background-image: url('https://images.unsplash.com/photo-1512034400317-de97d7d6c3ed?auto=format&fit=crop&w=900&q=80');
}
.client-card__image--horeca {
  background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=900&q=80');
}
.client-card__image--retail {
  background-image: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=900&q=80');
}
.client-card__body {
  padding: 32px;
}
.client-card__body h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 300;
  line-height: 1;
  margin: 18px 0 14px;
}
.offer-section {
  background: var(--espresso);
  color: var(--cream);
}
.offer-section .section-title,
.offer-section .section-lede {
  color: var(--cream);
}
.offer-section .section-lede {
  color: rgba(240,226,200,0.62);
}
.offer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.offer-list {
  border-top: 1px solid rgba(240,226,200,0.16);
}
.offer-row {
  padding: clamp(26px, 3vw, 38px) 0;
  border-bottom: 1px solid rgba(240,226,200,0.16);
}
.offer-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  margin: 12px 0;
}
.offer-row p {
  color: rgba(240,226,200,0.54);
  max-width: 620px;
}
.operations-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: stretch;
}
.operations-panel {
  background: var(--ivory-2);
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
}
.operations-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  margin: 16px 0;
}
.operations-panel p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}
.operations-list {
  border-top: 1px solid rgba(26,11,4,0.14);
}
.operations-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid rgba(26,11,4,0.14);
}
.operations-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
}
.about-cta {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(68px, 8vw, 110px) var(--pad);
}
.about-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.62fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.about-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  max-width: 760px;
}
.about-cta__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-cta__right p {
  color: rgba(240,226,200,0.62);
  font-size: 14px;
}

@media (max-width: 900px) {
  .about-hero__top,
  .about-hero__meta,
  .wholesale-head__top,
  .wholesale-note,
  .wholesale-stack {
    grid-template-columns: 1fr;
  }
  .offer-grid,
  .operations-grid,
  .about-cta__inner {
    grid-template-columns: 1fr;
  }
  .about-hero__meta p,
  .about-hero__meta p:first-child,
  .about-hero__meta p:last-child {
    min-height: auto;
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid rgba(240,226,200,0.14);
  }
  .about-hero__meta p:last-child {
    border-bottom: none;
  }
  .about-band__inner,
  .client-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-band__item:nth-child(2n) {
    border-right: none;
  }
  .about-band__item {
    border-bottom: 1px solid rgba(240,226,200,0.1);
  }
  .about-band__item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .wholesale-stack article {
    min-height: auto;
  }
  .wholesale-stack strong {
    margin-top: 44px;
  }
}

@media (max-width: 640px) {
  .about-hero,
  .about-section,
  .about-cta {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  .about-band__inner,
  .client-grid {
    grid-template-columns: 1fr;
  }
  .about-band__item,
  .about-band__item:not(:first-child) {
    min-height: 116px;
    padding: 34px 0;
    border-right: none;
    border-bottom: 1px solid rgba(240,226,200,0.1);
  }
  .about-band__item:last-child {
    border-bottom: none;
  }
  .client-card__image {
    min-height: 220px;
  }
  .operations-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ── cafes ── */
.cafes-hero {
  padding: calc(var(--nav-h) + 58px) var(--pad) clamp(60px, 7vw, 94px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 5vw, 58px);
}
.cafes-hero__copy { max-width: 1040px; }
.cafes-hero__label { margin-bottom: 24px; }
.cafes-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.4vw, 104px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  max-width: 1080px;
}
.cafes-hero__sub {
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  max-width: 760px;
  margin-top: 34px;
  text-wrap: pretty;
}
.cafes-hero__meta {
  color: var(--espresso);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #efe6d8;
  border-top: 3px solid rgba(181,138,82,0.72);
  border-bottom: 1px solid rgba(26,11,4,0.16);
  box-shadow: 0 18px 42px rgba(26,11,4,0.06);
}
.cafes-hero__meta div {
  min-height: 124px;
  padding: clamp(26px, 3vw, 38px) clamp(22px, 2.6vw, 34px);
  border-right: 1px solid rgba(26,11,4,0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cafes-hero__meta div:last-child { border-right: none; }
.cafes-hero__meta span,
.cafes-band__item span,
.range-card__body span,
.use-row span,
.buying-panel span,
.buying-step span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.cafes-hero__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 300;
  line-height: 1.08;
  margin-top: 14px;
}
.cafes-band {
  background: var(--espresso);
  color: var(--cream);
  padding: 22px var(--pad);
}
.cafes-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cafes-band__item {
  min-height: 132px;
  padding: 40px 34px 38px 0;
  border-right: 1px solid rgba(240,226,200,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cafes-band__item:not(:first-child) { padding-left: 34px; }
.cafes-band__item:last-child { border-right: none; }
.cafes-band__item strong {
  display: block;
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 200;
  line-height: 1;
  margin-bottom: 10px;
}
.cafes-band__item span {
  display: block;
  color: rgba(240,226,200,0.42);
  line-height: 1.5;
}
.cafes-section {
  padding: clamp(76px, 10vw, 140px) var(--pad);
  border-bottom: 1px solid rgba(26,11,4,0.1);
}
.cafes-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.range-head {
  display: grid;
  grid-template-columns: 240px minmax(0, 820px);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  margin-bottom: clamp(46px, 6vw, 84px);
}
.range-head .section-kicker { margin-top: 12px; }
.range-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.range-card {
  background: var(--ivory-2);
  color: inherit;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  min-height: 330px;
  border: 1px solid rgba(26,11,4,0.1);
  overflow: hidden;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.range-card:hover {
  background: #efe6d8;
  border-color: rgba(181,138,82,0.38);
  transform: translateY(-2px);
}
.range-card__media {
  min-height: 100%;
  background-size: cover;
  background-position: center;
}
.range-card__media--arabica { background-image: url('https://images.unsplash.com/photo-1445077100181-a33e9ac94db0?auto=format&fit=crop&w=900&q=80'); }
.range-card__media--robusta { background-image: url('https://images.unsplash.com/photo-1497935586351-b67a49e012bf?auto=format&fit=crop&w=900&q=80'); }
.range-card__body {
  padding: clamp(30px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}
.range-card__body span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 11px;
  border: 1px solid rgba(181,138,82,0.42);
  color: var(--brown);
  background: rgba(255,255,255,0.32);
}
.range-card__body h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 66px);
  font-weight: 300;
  line-height: 0.98;
  margin: 0 0 20px;
  max-width: 460px;
}
.range-card__body p {
  max-width: 520px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  text-wrap: pretty;
}
.range-card dl {
  padding-top: 4px;
}
.range-card dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(26,11,4,0.12);
}
.range-card dl div:last-child {
  border-bottom: 1px solid rgba(26,11,4,0.12);
}
.range-card dt {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.range-card dd {
  font-size: 13px;
  font-weight: 400;
  color: var(--espresso);
}
.use-section {
  background: var(--espresso);
  color: var(--cream);
}
.use-section .section-title,
.use-section .section-lede { color: var(--cream); }
.use-section .section-lede { color: rgba(240,226,200,0.62); }
.use-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.use-table { border-top: 1px solid rgba(240,226,200,0.16); }
.use-row {
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid rgba(240,226,200,0.16);
}
.use-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  margin: 12px 0;
}
.use-row p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240,226,200,0.54);
}
.buying-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: stretch;
}
.buying-panel {
  background: var(--ivory-2);
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
}
.buying-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  margin: 16px 0;
}
.buying-panel p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}
.buying-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(26,11,4,0.14);
  border-bottom: 1px solid rgba(26,11,4,0.14);
}
.buying-step {
  padding: clamp(28px, 3vw, 42px);
  border-right: 1px solid rgba(26,11,4,0.14);
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.buying-step:last-child { border-right: none; }
.buying-step span { margin-bottom: auto; }
.buying-step h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}
.buying-step p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  text-wrap: pretty;
}
.cafes-cta {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(68px, 8vw, 110px) var(--pad);
}
.cafes-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.62fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.cafes-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  max-width: 760px;
}
.cafes-cta__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cafes-cta__right p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240,226,200,0.62);
}
@media (max-width: 900px) {
  .use-grid,
  .buying-grid,
  .cafes-cta__inner {
    grid-template-columns: 1fr;
  }
  .cafes-hero__meta {
    grid-template-columns: 1fr;
  }
  .cafes-hero__meta div {
    min-height: 112px;
    border-right: none;
    border-bottom: 1px solid rgba(26,11,4,0.12);
  }
  .cafes-hero__meta div:last-child {
    border-bottom: none;
  }
  .cafes-band__inner,
  .range-cards,
  .buying-steps,
  .range-head {
    grid-template-columns: 1fr;
  }
  .range-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .range-card__media {
    min-height: 260px;
  }
  .range-card__body {
    grid-template-columns: 1fr;
  }
  .buying-step {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(26,11,4,0.14);
  }
  .buying-step:last-child { border-bottom: none; }
  .buying-step span { margin-bottom: 44px; }
  .cafes-band__item,
  .cafes-band__item:not(:first-child) {
    min-height: 116px;
    padding: 34px 0;
    border-right: none;
    border-bottom: 1px solid rgba(240,226,200,0.1);
  }
  .cafes-band__item:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .cafes-section,
  .cafes-cta {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  .range-card dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ── arabica ── */
.detail-hero {
      min-height: 90svh;
      background: var(--espresso);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: calc(var(--nav-h) + 60px) var(--pad) 72px;
    }
    .detail-hero__inner { max-width: var(--max-w); margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
    .detail-hero__index { font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
    .detail-hero__name { font-size: clamp(64px, 12vw, 180px); font-weight: 200; letter-spacing: -0.04em; line-height: 0.88; color: var(--cream); }
    .detail-hero__tag { font-size: 15px; font-weight: 300; color: rgba(240,226,200,0.5); margin-top: 24px; letter-spacing: 0.04em; }
    .detail-hero__bean { width: clamp(120px, 18vw, 260px); opacity: 0.18; }
    .chars { background: var(--ivory-2); padding: 0 var(--pad); }
    .chars__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
    .char-item { padding: 44px 0; border-right: 1px solid var(--ivory); padding-right: 32px; }
    .char-item:last-child { border-right: none; }
    .char-item:not(:first-child) { padding-left: 32px; }
    .char-item__label { font-size: 9px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
    .char-item__value { font-size: clamp(18px, 2vw, 26px); font-weight: 300; letter-spacing: -0.01em; color: var(--espresso); }
    .char-bar { height: 3px; background: var(--ivory); margin-top: 12px; border-radius: 2px; }
    .char-bar__fill { height: 100%; background: var(--gold); border-radius: 2px; }
    .detail-body { padding: clamp(80px, 10vw, 140px) var(--pad); }
    .detail-body__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 120px); }
    .detail-body h2 { font-size: clamp(26px, 2.5vw, 38px); font-weight: 200; letter-spacing: -0.02em; margin-bottom: 28px; }
    .detail-body p { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.85; margin-bottom: 18px; text-wrap: pretty; }
    .origins-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
    .origin-card { background: var(--ivory-2); padding: 28px; }
    .origin-card__country { font-size: 14px; font-weight: 500; color: var(--espresso); margin-bottom: 6px; }
    .origin-card__detail { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.6; }
    .origin-card__altitude { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 8px; }
    .detail-nav { background: var(--espresso); padding: clamp(48px, 6vw, 80px) var(--pad); }
    .detail-nav__inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
    .detail-nav__prev, .detail-nav__next { display: flex; flex-direction: column; gap: 8px; text-decoration: none; }
    .detail-nav__label { font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(240,226,200,0.35); }
    .detail-nav__name { font-size: clamp(20px, 2.5vw, 32px); font-weight: 200; color: var(--cream); transition: color 0.2s; letter-spacing: -0.01em; }
    .detail-nav__prev:hover .detail-nav__name, .detail-nav__next:hover .detail-nav__name { color: var(--gold); }
    .detail-nav__next { text-align: right; }
    .detail-nav__divider { width: 1px; height: 40px; background: rgba(240,226,200,0.12); }
    @media (max-width: 900px) {
      .detail-hero__inner { grid-template-columns: 1fr; }
      .detail-hero__bean { display: none; }
      .chars__inner { grid-template-columns: 1fr 1fr; }
      .char-item { border-right: none; padding-left: 0; }
      .char-item:nth-child(odd) { border-right: 1px solid var(--ivory); }
      .detail-body__inner { grid-template-columns: 1fr; }
      .detail-nav__inner { flex-direction: column; gap: 32px; text-align: left; }
      .detail-nav__next { text-align: left; }
    }

/* ── robusta ── */
.detail-hero {
      min-height: 90svh;
      background: var(--espresso);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: calc(var(--nav-h) + 60px) var(--pad) 72px;
    }
    .detail-hero__inner { max-width: var(--max-w); margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
    .detail-hero__index { font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
    .detail-hero__name { font-size: clamp(64px, 12vw, 180px); font-weight: 200; letter-spacing: -0.04em; line-height: 0.88; color: var(--cream); }
    .detail-hero__tag { font-size: 15px; font-weight: 300; color: rgba(240,226,200,0.5); margin-top: 24px; letter-spacing: 0.04em; }
    .detail-hero__bean { width: clamp(120px, 18vw, 260px); opacity: 0.18; }
    .chars { background: var(--ivory-2); padding: 0 var(--pad); }
    .chars__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
    .char-item { padding: 44px 0; border-right: 1px solid var(--ivory); padding-right: 32px; }
    .char-item:last-child { border-right: none; }
    .char-item:not(:first-child) { padding-left: 32px; }
    .char-item__label { font-size: 9px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
    .char-item__value { font-size: clamp(18px, 2vw, 26px); font-weight: 300; letter-spacing: -0.01em; color: var(--espresso); }
    .char-bar { height: 3px; background: var(--ivory); margin-top: 12px; border-radius: 2px; }
    .char-bar__fill { height: 100%; background: var(--gold); border-radius: 2px; }
    .detail-body { padding: clamp(80px, 10vw, 140px) var(--pad); }
    .detail-body__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 120px); }
    .detail-body h2 { font-size: clamp(26px, 2.5vw, 38px); font-weight: 200; letter-spacing: -0.02em; margin-bottom: 28px; }
    .detail-body p { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.85; margin-bottom: 18px; text-wrap: pretty; }
    .origins-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
    .origin-card { background: var(--ivory-2); padding: 28px; }
    .origin-card__country { font-size: 14px; font-weight: 500; color: var(--espresso); margin-bottom: 6px; }
    .origin-card__detail { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.6; }
    .origin-card__altitude { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 8px; }
    .detail-nav { background: var(--espresso); padding: clamp(48px, 6vw, 80px) var(--pad); }
    .detail-nav__inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
    .detail-nav__prev, .detail-nav__next { display: flex; flex-direction: column; gap: 8px; text-decoration: none; }
    .detail-nav__label { font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(240,226,200,0.35); }
    .detail-nav__name { font-size: clamp(20px, 2.5vw, 32px); font-weight: 200; color: var(--cream); transition: color 0.2s; letter-spacing: -0.01em; }
    .detail-nav__prev:hover .detail-nav__name, .detail-nav__next:hover .detail-nav__name { color: var(--gold); }
    .detail-nav__next { text-align: right; }
    .detail-nav__divider { width: 1px; height: 40px; background: rgba(240,226,200,0.12); }
    @media (max-width: 900px) {
      .detail-hero__inner { grid-template-columns: 1fr; }
      .detail-hero__bean { display: none; }
      .chars__inner { grid-template-columns: 1fr 1fr; }
      .char-item { border-right: none; padding-left: 0; }
      .char-item:nth-child(odd) { border-right: 1px solid var(--ivory); }
      .detail-body__inner { grid-template-columns: 1fr; }
      .detail-nav__inner { flex-direction: column; gap: 32px; text-align: left; }
      .detail-nav__next { text-align: left; }
    }

/* ── autres ── */
.detail-hero {
      min-height: 90svh;
      background: var(--espresso);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: calc(var(--nav-h) + 60px) var(--pad) 72px;
    }
    .detail-hero__inner { max-width: var(--max-w); margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
    .detail-hero__index { font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
    .detail-hero__name { font-size: clamp(64px, 12vw, 180px); font-weight: 200; letter-spacing: -0.04em; line-height: 0.88; color: var(--cream); }
    .detail-hero__tag { font-size: 15px; font-weight: 300; color: rgba(240,226,200,0.5); margin-top: 24px; letter-spacing: 0.04em; }
    .detail-hero__bean { width: clamp(120px, 18vw, 260px); opacity: 0.18; }
    .chars { background: var(--ivory-2); padding: 0 var(--pad); }
    .chars__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
    .char-item { padding: 44px 0; border-right: 1px solid var(--ivory); padding-right: 32px; }
    .char-item:last-child { border-right: none; }
    .char-item:not(:first-child) { padding-left: 32px; }
    .char-item__label { font-size: 9px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
    .char-item__value { font-size: clamp(18px, 2vw, 26px); font-weight: 300; letter-spacing: -0.01em; color: var(--espresso); }
    .char-bar { height: 3px; background: var(--ivory); margin-top: 12px; border-radius: 2px; }
    .char-bar__fill { height: 100%; background: var(--gold); border-radius: 2px; }
    .detail-body { padding: clamp(80px, 10vw, 140px) var(--pad); }
    .detail-body__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 120px); }
    .detail-body h2 { font-size: clamp(26px, 2.5vw, 38px); font-weight: 200; letter-spacing: -0.02em; margin-bottom: 28px; }
    .detail-body p { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.85; margin-bottom: 18px; text-wrap: pretty; }
    .origins-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
    .origin-card { background: var(--ivory-2); padding: 28px; }
    .origin-card__country { font-size: 14px; font-weight: 500; color: var(--espresso); margin-bottom: 6px; }
    .origin-card__detail { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.6; }
    .origin-card__altitude { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 8px; }
    .detail-nav { background: var(--espresso); padding: clamp(48px, 6vw, 80px) var(--pad); }
    .detail-nav__inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
    .detail-nav__prev, .detail-nav__next { display: flex; flex-direction: column; gap: 8px; text-decoration: none; }
    .detail-nav__label { font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(240,226,200,0.35); }
    .detail-nav__name { font-size: clamp(20px, 2.5vw, 32px); font-weight: 200; color: var(--cream); transition: color 0.2s; letter-spacing: -0.01em; }
    .detail-nav__prev:hover .detail-nav__name, .detail-nav__next:hover .detail-nav__name { color: var(--gold); }
    .detail-nav__next { text-align: right; }
    .detail-nav__divider { width: 1px; height: 40px; background: rgba(240,226,200,0.12); }
    @media (max-width: 900px) {
      .detail-hero__inner { grid-template-columns: 1fr; }
      .detail-hero__bean { display: none; }
      .chars__inner { grid-template-columns: 1fr 1fr; }
      .char-item { border-right: none; padding-left: 0; }
      .char-item:nth-child(odd) { border-right: 1px solid var(--ivory); }
      .detail-body__inner { grid-template-columns: 1fr; }
      .detail-nav__inner { flex-direction: column; gap: 32px; text-align: left; }
      .detail-nav__next { text-align: left; }
    }
    .rare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 0; }
    .rare-card { background: var(--ivory-2); padding: 36px 32px; }
    .rare-card__tag { font-size: 9px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
    .rare-card__name { font-size: clamp(18px, 1.8vw, 24px); font-weight: 300; letter-spacing: -0.01em; margin-bottom: 10px; }
    .rare-card__origin { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 12px; }
    .rare-card__desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.7; text-wrap: pretty; }
    @media (max-width: 900px) { .rare-grid { grid-template-columns: 1fr; } }

/* ── FAQ section ── */
.faq-section { background: var(--ivory); }
.faq-inner { display: grid; gap: clamp(42px, 6vw, 72px); }
.faq-head { max-width: 680px; }
.faq-list { display: grid; gap: 0; }
.faq-item {
  padding: clamp(24px, 3vw, 36px) 0;
  border-top: 1px solid rgba(26,11,4,0.1);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
.faq-item:last-child { border-bottom: 1px solid rgba(26,11,4,0.1); }
.faq-q {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--espresso);
}
.faq-a {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}
@media (max-width: 768px) {
  .faq-item { grid-template-columns: 1fr; gap: 12px; }
}

/* ── import-export ── */
.ie-distrib-section { background: var(--espresso); color: var(--cream); }
.ie-distrib-section .wholesale-stack article { color: var(--espresso); }
.ie-distrib-section .section-kicker,
.ie-distrib-section .section-title,
.ie-distrib-section .section-lede { color: var(--cream); }
.ie-distrib-section .section-lede { color: rgba(240,226,200,0.62); }
.ie-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: clamp(42px, 6vw, 72px);
}
.ie-format-card {
  padding: clamp(32px, 4vw, 52px);
  background: var(--ivory-2);
  border-top: 3px solid rgba(181,138,82,0.52);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ie-format-card:nth-child(2) { background: #e8e0cf; }
.ie-format-card:nth-child(3) { background: #e2d8c5; }
.ie-format-card > span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.ie-format-card strong {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1;
  color: var(--espresso);
}
.ie-format-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(26,11,4,0.1);
}
@media (max-width: 900px) {
  .ie-formats-grid { grid-template-columns: 1fr; }
}

/* ── contact ── */
.contact-main {
  background: var(--ivory);
  color: var(--espresso);
  padding: calc(var(--nav-h) + clamp(68px, 8vw, 110px)) var(--pad) clamp(80px, 10vw, 140px);
}
.contact-main__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 8vw, 120px);
  align-items: start;
}
.contact-left__label {
  color: var(--gold);
  margin-bottom: 24px;
}
.contact-main__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--espresso);
  margin-bottom: clamp(20px, 2.5vw, 32px);
  text-wrap: balance;
}
.contact-main__desc {
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: clamp(44px, 6vw, 72px);
  max-width: 480px;
}
.contact-coords {
  border-top: 1px solid rgba(26,11,4,0.12);
}
.contact-coord {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid rgba(26,11,4,0.08);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.18s;
}
a.contact-coord:hover { opacity: 0.64; }
.contact-coord span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-coord strong {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 300;
  color: var(--espresso);
}
.contact-right {
  background: #fff8f0;
  border: 1.5px solid rgba(26,11,4,0.32);
  padding: clamp(32px, 4vw, 52px);
}
.contact-right .contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-right .field input,
.contact-right .field textarea {
  border-bottom-color: rgba(26,11,4,0.3);
}
.contact-right .field input:focus,
.contact-right .field textarea:focus { border-bottom-color: var(--gold); }
.custom-select {
  position: relative;
}
.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1.5px solid rgba(26,11,4,0.3);
  cursor: pointer;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  opacity: 0.5;
  user-select: none;
  transition: border-color 0.2s;
}
.custom-select__trigger.has-value { color: var(--espresso); opacity: 1; }
.custom-select.open .custom-select__trigger { border-bottom-color: var(--gold); opacity: 1; }
.custom-select__trigger svg { transition: transform 0.18s; flex-shrink: 0; color: var(--muted); }
.custom-select.open .custom-select__trigger svg { transform: rotate(180deg); }
.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  background: var(--espresso);
  list-style: none;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.custom-select.open .custom-select__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.custom-select__dropdown li {
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(240,226,200,0.58);
  cursor: pointer;
  border-bottom: 1px solid rgba(240,226,200,0.08);
  transition: color 0.15s, background 0.15s;
}
.custom-select__dropdown li:last-child { border-bottom: none; }
.custom-select__dropdown li:hover { color: var(--cream); background: rgba(240,226,200,0.07); }
.custom-select__dropdown li.is-selected { color: var(--gold); }

/* legacy - kept for shared form styles below */
.contact-hero {
  padding: calc(var(--nav-h) + 58px) var(--pad) clamp(60px, 7vw, 94px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 5vw, 58px);
}
.contact-hero__copy { max-width: 1040px; }
.contact-hero__label { margin-bottom: 24px; }
.contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.4vw, 104px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  max-width: 1060px;
}
.contact-hero__sub {
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  max-width: 760px;
  margin-top: 34px;
  text-wrap: pretty;
}
.contact-info {
  background: var(--espresso);
  color: var(--cream);
}
.contact-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--espresso);
  background: #efe6d8;
  border-top: 3px solid rgba(181,138,82,0.72);
  border-bottom: 1px solid rgba(26,11,4,0.16);
  box-shadow: 0 18px 42px rgba(26,11,4,0.06);
}
.contact-hero__meta div {
  min-height: 124px;
  padding: clamp(26px, 3vw, 38px) clamp(22px, 2.6vw, 34px);
  border-right: 1px solid rgba(26,11,4,0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-hero__meta div:last-child {
  border-right: none;
}
.contact-hero__meta span,
.contact-route span,
.contact-detail__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-hero__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 300;
  line-height: 1.04;
  margin-top: 14px;
}
.contact-route p,
.contact-info__intro {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240,226,200,0.58);
}
.contact-routes {
  padding: 0 var(--pad);
  background: var(--ivory-2);
}
.contact-routes__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.contact-route {
  background: var(--ivory);
  padding: clamp(36px, 4vw, 56px);
  color: inherit;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.contact-route--dark {
  background: var(--moka);
  color: var(--cream);
}
.contact-route strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 300;
  line-height: 1;
  margin: 20px 0 16px;
}
.contact-route:not(.contact-route--dark) p { color: var(--muted); }
.contact-body {
  padding: clamp(76px, 10vw, 140px) var(--pad);
  background: var(--ivory);
}
.contact-body__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  gap: 2px;
  align-items: stretch;
}
.contact-info {
  padding: clamp(34px, 4vw, 56px);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  min-height: 640px;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 24px;
}
.contact-info__intro {
  margin-bottom: 44px;
}
.contact-detail {
  border-top: 1px solid rgba(240,226,200,0.14);
}
.contact-detail__item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(240,226,200,0.14);
}
.contact-detail__label { margin-bottom: 8px; }
.contact-detail__value {
  font-size: 14px;
  font-weight: 300;
  color: rgba(240,226,200,0.7);
  line-height: 1.65;
}
.contact-form-panel {
  background: #FFF8EE;
  border: 1px solid rgba(26,11,4,0.1);
  padding: clamp(28px, 4vw, 56px);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.form-block {
  background: var(--ivory);
  border: 1px solid rgba(26,11,4,0.1);
  padding: clamp(24px, 3vw, 34px);
}
.form-block--tinted {
  background: var(--ivory-2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 22px;
}
.form-section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(26,11,4,0.12);
}
.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B7A50' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.form-submit-row span {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}
.form-submit {
  align-self: flex-start;
  background: var(--espresso);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.22s;
  border: none;
  font-family: var(--font-body);
}
.form-submit:hover { background: var(--moka); }
.form-success {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 56px;
  background: var(--ivory-2);
  text-align: center;
  align-items: center;
}
.form-success.visible { display: flex; }
.form-success__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
}
.form-success__title {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.form-success__sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}
.offices {
  background: var(--espresso);
  padding: clamp(68px, 8vw, 110px) var(--pad);
}
.offices__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.offices__head {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  margin-bottom: clamp(42px, 6vw, 72px);
}
.offices__label { color: var(--gold); }
.offices__head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
}
.offices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.office-card {
  background: rgba(240,226,200,0.04);
  border: 1px solid rgba(240,226,200,0.08);
  padding: clamp(28px, 3vw, 40px);
  min-height: 240px;
}
.office-card__city {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 8px;
}
.office-card__country {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.office-card__address {
  font-size: 13px;
  font-weight: 300;
  color: rgba(240,226,200,0.5);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .contact-main__inner {
    grid-template-columns: 1fr;
  }
}

/* ── origines ── */
.origines-hero {
  padding: calc(var(--nav-h) + 58px) var(--pad) clamp(60px, 7vw, 94px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 5vw, 58px);
}
.origines-hero__copy { max-width: 1040px; }
.origines-hero__label { margin-bottom: 24px; }
.origines-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.4vw, 104px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  max-width: 1080px;
}
.origines-hero__sub {
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  max-width: 760px;
  margin-top: 34px;
  text-wrap: pretty;
}
.origines-hero__meta {
  color: var(--espresso);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #efe6d8;
  border-top: 3px solid rgba(181,138,82,0.72);
  border-bottom: 1px solid rgba(26,11,4,0.16);
  box-shadow: 0 18px 42px rgba(26,11,4,0.06);
}
.origines-hero__meta div {
  min-height: 124px;
  padding: clamp(26px, 3vw, 38px) clamp(22px, 2.6vw, 34px);
  border-right: 1px solid rgba(26,11,4,0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.origines-hero__meta div:last-child { border-right: none; }
.origines-hero__meta span,
.origines-band__item span,
.origin-map-row span,
.origin-map-row small,
.origin-card-pro span,
.trace-board__header span,
.trace-board__row small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.origines-hero__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 300;
  line-height: 1.08;
  margin-top: 14px;
}
.origines-band {
  background: var(--espresso);
  color: var(--cream);
  padding: 22px var(--pad);
}
.origines-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.origines-band__item {
  min-height: 132px;
  padding: 40px 34px 38px 0;
  border-right: 1px solid rgba(240,226,200,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.origines-band__item:not(:first-child) { padding-left: 34px; }
.origines-band__item:last-child { border-right: none; }
.origines-band__item strong {
  display: block;
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 200;
  line-height: 1;
  margin-bottom: 10px;
}
.origines-band__item span {
  display: block;
  color: rgba(240,226,200,0.42);
  line-height: 1.5;
}
.origines-section {
  padding: clamp(76px, 10vw, 140px) var(--pad);
  border-bottom: 1px solid rgba(26,11,4,0.1);
}
.origines-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.origin-map-section {
  background: var(--ivory-2);
}
.origin-map-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}
.origin-map-copy {
  position: sticky;
  top: calc(var(--nav-h) + 28px);
}
.origin-map-copy__note {
  margin-top: clamp(34px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid rgba(26,11,4,0.14);
  max-width: 520px;
  font-size: clamp(18px, 1.6vw, 24px);
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.38;
  color: var(--espresso);
  text-wrap: pretty;
}
.origin-map-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.origin-map-row {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: clamp(28px, 3.4vw, 44px);
  background: var(--espresso);
  border: none;
  color: var(--cream);
}
.origin-map-row:nth-child(2) { background: #221005; }
.origin-map-row:nth-child(3) { background: #291308; }
.origin-map-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(240,226,200,0.18);
  color: var(--gold);
  margin-bottom: clamp(46px, 6vw, 82px);
}
.origin-map-row small {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
}
.origin-map-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.1vw, 48px);
  font-weight: 300;
  line-height: 0.98;
  color: var(--cream);
  margin-bottom: 18px;
}
.origin-map-row p {
  color: rgba(240,226,200,0.62);
}
.origin-map-row ul {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
  list-style: none;
}
.origin-map-row li {
  padding-top: 12px;
  border-top: 1px solid rgba(240,226,200,0.14);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(240,226,200,0.68);
}
.origin-card-pro p,
.origines-cta__right p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  text-wrap: pretty;
}
.origin-card-pro p {
  color: rgba(240,226,200,0.62);
}
.origin-cards-section {
  background: var(--espresso);
  color: var(--cream);
}
.origin-cards-section .section-title,
.origin-cards-section .section-lede {
  color: var(--cream);
}
.origin-cards-section .section-lede {
  color: rgba(240,226,200,0.62);
}
.origin-cards-head {
  max-width: 860px;
  margin-bottom: clamp(42px, 6vw, 78px);
}
.origin-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.origin-card-pro {
  background: rgba(240,226,200,0.06);
  border-top: 3px solid rgba(196,134,10,0.52);
  padding: clamp(28px, 3vw, 40px);
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.origin-card-pro h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  margin: 18px 0;
}
.origin-card-pro dl {
  margin-top: auto;
  padding-top: 32px;
}
.origin-card-pro dl div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(240,226,200,0.12);
}
.origin-card-pro dt {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.origin-card-pro dd {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(240,226,200,0.72);
}
.trace-layout {
  display: grid;
  gap: clamp(42px, 6vw, 76px);
}
.trace-head {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}
.trace-head__top {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}
.trace-head__top .section-kicker {
  margin-top: 12px;
}
.trace-head__top .section-lede {
  max-width: 640px;
}
.trace-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.trace-stack article {
  min-height: 400px;
  padding: clamp(28px, 3.4vw, 44px);
  background: var(--espresso);
  color: var(--cream);
  border-top: 3px solid rgba(196,134,10,0.52);
  display: flex;
  flex-direction: column;
}
.trace-stack article:nth-child(2) { background: #221005; }
.trace-stack article:nth-child(3) { background: #291308; }
.trace-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(240,226,200,0.2);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.trace-stack strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  margin: clamp(48px, 5vw, 72px) 0 10px;
}
.trace-stack small {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 24px;
  margin-bottom: auto;
}
.trace-stack p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240,226,200,0.7);
}
.trace-stack em {
  font-style: normal;
  display: block;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(240,226,200,0.14);
  font-size: 12px;
  color: rgba(240,226,200,0.45);
  line-height: 1.7;
}
.origines-cta {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(68px, 8vw, 110px) var(--pad);
}
.origines-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.62fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.origines-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  max-width: 760px;
}
.origines-cta__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.origines-cta__right p {
  color: rgba(240,226,200,0.62);
  font-size: 14px;
}
@media (max-width: 900px) {
  .origin-map-grid,
  .trace-head__top,
  .origines-cta__inner {
    grid-template-columns: 1fr;
  }
  .origines-hero__meta {
    grid-template-columns: 1fr;
  }
  .origines-hero__meta div {
    min-height: 112px;
    border-right: none;
    border-bottom: 1px solid rgba(26,11,4,0.12);
  }
  .origines-hero__meta div:last-child {
    border-bottom: none;
  }
  .origin-map-copy {
    position: static;
  }
  .origines-band__inner,
  .origin-map-list,
  .origin-cards {
    grid-template-columns: 1fr;
  }
  .trace-stack {
    grid-template-columns: 1fr;
  }
  .trace-stack article {
    min-height: auto;
  }
  .origin-card-pro {
    min-height: auto;
  }
  .origin-map-row {
    min-height: auto;
  }
  .origines-band__item,
  .origines-band__item:not(:first-child) {
    min-height: 116px;
    padding: 34px 0;
    border-right: none;
    border-bottom: 1px solid rgba(240,226,200,0.1);
  }
  .origines-band__item:last-child {
    border-bottom: none;
  }
}
@media (max-width: 640px) {
  .origines-section,
  .origines-cta {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  .origin-card-pro dl div,
  .origin-map-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ── Footer responsive ── */
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Contact page responsive ── */
@media (max-width: 768px) {
  .contact-hero__meta {
    grid-template-columns: 1fr;
  }
  .contact-hero__meta div {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(26,11,4,0.12);
  }
  .contact-hero__meta div:last-child { border-bottom: none; }
  .contact-routes__inner {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* ── Nav dropdown trigger: mobile open state ── */
@media (max-width: 768px) {
  /* Align text + arrow on the same row, arrow pushed to the right */
  .nav--open .nav__item--has-menu > .nav__link {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .nav--open .nav__item--has-menu > .nav__link::after {
    display: inline-block;
    margin-left: auto;
    padding-left: 16px;
    opacity: 0.55;
    flex-shrink: 0;
  }
  /* Rotate arrow when submenu is open */
  .nav--open .nav__item--open > .nav__link::after {
    transform: rotate(-180deg);
    opacity: 0.9;
  }
  /* Fix parent flex alignment so items stretch full-width */
  .nav--open .nav__links {
    align-items: stretch;
  }
}
