/* ============================================================
   Prim Drive — feuille de style principale (CSS pur, sans build)
   ============================================================ */

:root {
  /* Doré/jaune — couleur structurelle du site, assortie au jaune du logo Prim Drive */
  --gold-950: #2e2004;
  --gold-900: #4a3506;
  --gold-800: #6b4c08;
  --gold-700: #8f660b;
  --gold-600: #b3820e;
  --gold-500: #d9a112;
  --gold-400: #edb92a;
  --gold-300: #f5cf6b;
  --gold-100: #faeab8;
  --gold-50: #fdf6e0;

  --citrus-600: #d95f0e;
  --citrus-500: #f5821f;
  --citrus-400: #ff9d45;
  --citrus-100: #fde8d3;
  --citrus-50: #fef4e8;

  --cream-50: #fdfbf6;
  --cream-100: #f7f2e7;
  --ink-900: #16211c;
  --ink-700: #384038;
  --ink-500: #5c6660;

  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;

  --shadow-card: 0 1px 2px rgba(46, 32, 4, 0.05), 0 12px 32px -12px rgba(46, 32, 4, 0.2);
  --shadow-card-lg: 0 4px 12px rgba(46, 32, 4, 0.07), 0 30px 60px -20px rgba(46, 32, 4, 0.3);

  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink-900);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px;
}

@media (min-width: 640px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 5rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 7rem 0;
  }
}

.section--tight {
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .section--tight {
    padding: 5rem 0;
  }
}

.text-balance {
  text-wrap: balance;
}

/* ---------- Reveal on scroll ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 1rem;
  height: 1rem;
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.btn--primary {
  background: var(--citrus-500);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(217, 95, 14, 0.55);
}

.btn--primary:hover {
  background: var(--citrus-600);
}

.btn--secondary {
  background: var(--gold-800);
  color: #fff;
}

.btn--secondary:hover {
  background: var(--gold-900);
}

.btn--ghost {
  background: #fff;
  color: var(--gold-800);
  box-shadow: inset 0 0 0 1px rgba(107, 76, 8, 0.15);
}

.btn--ghost:hover {
  background: var(--gold-50);
}

.btn--full {
  width: 100%;
}

/* ---------- Badge ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.badge--gold {
  background: var(--gold-50);
  color: var(--gold-700);
  box-shadow: inset 0 0 0 1px rgba(143, 102, 11, 0.15);
}

.badge--citrus {
  background: var(--citrus-50);
  color: var(--citrus-600);
  box-shadow: inset 0 0 0 1px rgba(245, 130, 31, 0.2);
}

.badge--light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* ---------- Header ---------- */

.topbar {
  display: none;
  background: var(--gold-100);
  color: var(--ink-700);
}

@media (min-width: 768px) {
  .topbar {
    display: block;
  }
}

/* Bannière promo (gérée depuis l'administration) : fusionnée dans la même
   bande que le téléphone/la livraison, visible à toutes les tailles d'écran
   quand elle est active (contrairement au reste de la bande), et fixe
   (aucun bouton de fermeture). */
.topbar--has-banner {
  display: block;
  background: var(--citrus-500);
  color: #fff;
}

.topbar__row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 0.5rem 0;
  font-size: 0.75rem;
}

.topbar--has-banner .topbar__row {
  justify-content: space-between;
}

.topbar__row a:hover {
  color: var(--gold-700);
}

.topbar--has-banner .topbar__row a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar__banner {
  font-weight: 600;
  min-width: 0;
}

.topbar__contact {
  display: none;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .topbar__contact {
    display: flex;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(46, 32, 4, 0.08);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 640px) {
  .logo img {
    height: 68px;
  }
}

.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
}

.main-nav a {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-700);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--gold-50);
  color: var(--gold-800);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-actions .btn {
  display: none;
}

@media (min-width: 640px) {
  .header-actions .btn {
    display: inline-flex;
  }
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: none;
  box-shadow: inset 0 0 0 1px rgba(22, 33, 28, 0.1);
  color: var(--gold-900);
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset-inline: 0;
  top: 65px;
  z-index: 40;
  background: #fff;
  box-shadow: 0 20px 40px rgba(46, 32, 4, 0.15);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu.is-open {
  min-height: calc(100vh - 65px);
  max-height: calc(100vh - 65px);
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
}

.mobile-menu a.nav-link {
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-700);
}

.mobile-menu a.nav-link.is-active {
  background: var(--gold-50);
  color: var(--gold-800);
}

.mobile-menu__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(22, 33, 28, 0.06);
}

.mobile-menu__cta a.phone-link {
  text-align: center;
  font-weight: 600;
  color: var(--gold-700);
}

.mobile-sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(22, 33, 28, 0.06);
  backdrop-filter: blur(6px);
  transform: translateY(0);
  transition: transform 0.25s ease;
}

.mobile-sticky-cta.is-hidden {
  transform: translateY(100%);
}

@media (min-width: 640px) {
  .mobile-sticky-cta {
    display: none;
  }
}

/* ---------- Bandeau RGPD / cookies ---------- */

.rgpd-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 60;
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  background: #fff;
  color: var(--ink-700);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-card-lg), inset 0 0 0 1px var(--gold-100);
}

.rgpd-banner.is-visible {
  display: flex;
}

.rgpd-banner p {
  font-size: 0.85rem;
  line-height: 1.55;
}

.rgpd-banner a {
  font-weight: 700;
  color: var(--gold-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rgpd-banner__actions {
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 640px) {
  .rgpd-banner {
    left: 1.25rem;
    right: auto;
    bottom: 1.25rem;
    max-width: 24rem;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream-50);
  padding: 3rem 0 5rem;
}

@media (min-width: 640px) {
  .hero {
    padding: 4rem 0 7rem;
  }
}

.hero__blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.hero__blob--1 {
  top: -6rem;
  left: -8rem;
  width: 26rem;
  height: 26rem;
  background: var(--gold-100);
}

.hero__blob--2 {
  top: 10rem;
  right: -6rem;
  width: 22rem;
  height: 22rem;
  background: var(--citrus-100);
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2.5rem;
  }
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}

.hero__title {
  font-size: 2.75rem;
  line-height: 1.05;
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

.hero__title .accent {
  color: var(--citrus-500);
}

.hero__desc {
  max-width: 34rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-500);
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero__ctas {
    flex-direction: row;
  }
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 2rem;
  padding-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-500);
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__trust .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  display: inline-block;
}

.hero__media {
  position: relative;
  margin: 0 auto;
  max-width: 30rem;
}

@media (min-width: 1024px) {
  .hero__media {
    max-width: none;
  }
}

.hero__media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow-card-lg);
}

.hero__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.hero__float-card--1 {
  left: -1rem;
  top: 2rem;
}

@media (min-width: 640px) {
  .hero__float-card--1 {
    left: -2rem;
    top: 2.5rem;
  }
}

.hero__float-card--2 {
  right: 0.5rem;
  bottom: -1.5rem;
  background: #fff;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .hero__float-card--2 {
    right: -1.5rem;
  }
}

.hero__float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--gold-50);
  color: var(--gold-700);
  flex-shrink: 0;
}

.hero__float-card--2 .hero__float-icon {
  background: var(--citrus-100);
  color: var(--citrus-600);
}

.hero__float-card p {
  font-size: 0.85rem;
  line-height: 1.3;
}

.hero__float-card .label {
  font-weight: 700;
  color: var(--ink-900);
}

.hero__float-card .sub {
  color: var(--ink-500);
}

/* ---------- Section title ---------- */

.section-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 42rem;
}

.section-title--center {
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.section-title--wide {
  max-width: 58rem;
}

.section-title__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-700);
}

.section-title--light .section-title__eyebrow {
  color: var(--gold-700);
}

.section-title__title {
  font-size: 1.9rem;
}

@media (min-width: 640px) {
  .section-title__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .section-title__title {
    font-size: 2.75rem;
  }
}

.section-title--light .section-title__title {
  color: var(--ink-900);
}

.section-title__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-500);
}

@media (min-width: 640px) {
  .section-title__desc {
    font-size: 1.125rem;
  }
}

.section-title--light .section-title__desc {
  color: var(--ink-500);
}

.section-header-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .section-header-row {
    flex-direction: row;
    align-items: flex-end;
  }
}

/* ---------- Cards ---------- */

.card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid--3 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid--4 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-lg);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: var(--gold-50);
  color: var(--gold-700);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1rem;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-500);
}

.feature-card--dark .feature-card__icon {
  background: var(--citrus-50);
  color: var(--citrus-600);
}

.feature-card--delivery .feature-card__icon {
  background: var(--citrus-50);
  color: var(--citrus-600);
}

/* Product card */

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-lg);
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.product-card__tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold-700);
  box-shadow: var(--shadow-card);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

.product-card__body h3 {
  font-size: 1.1rem;
}

.product-card__body p {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-500);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.25rem;
}

.product-card__season {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--citrus-600);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-700);
}

.product-card__link svg {
  width: 16px;
  height: 16px;
}

/* Category pills */

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 1rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  background: #fff;
  color: var(--ink-700);
  box-shadow: inset 0 0 0 1px rgba(22, 33, 28, 0.1);
  transition: box-shadow 0.2s ease;
}

.category-pill:hover {
  box-shadow: inset 0 0 0 1px rgba(143, 102, 11, 0.3);
}

.category-pill.is-active {
  background: var(--citrus-500);
  color: #fff;
  box-shadow: var(--shadow-card);
}

.category-pill__count {
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  font-size: 0.75rem;
  background: var(--gold-50);
  color: var(--gold-700);
}

.category-pill.is-active .category-pill__count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ---------- Search input ---------- */

.search-field {
  position: relative;
  width: 100%;
}

@media (min-width: 640px) {
  .search-field {
    width: 16rem;
  }
}

.search-field svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--ink-500);
  pointer-events: none;
}

.search-field input {
  width: 100%;
  border-radius: 1rem;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  font-size: 0.9rem;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(22, 33, 28, 0.1);
  border: none;
  color: var(--ink-900);
}

.search-field input:focus {
  outline: 2px solid var(--gold-600);
  outline-offset: 1px;
}

.catalog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .catalog-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.catalog-empty {
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 3rem;
  text-align: center;
  color: var(--ink-500);
}

/* ---------- Zigzag rows (intro / rungis / savoir-faire / a-propos) ---------- */

.row {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .row {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
  .row--reverse .row__media {
    order: 2;
  }
  .row--reverse .row__copy {
    order: 1;
  }
  .row--media-wide {
    grid-template-columns: 3fr 2fr;
  }
}

.row__media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow-card-lg);
}

.row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Photo affichée telle quelle (détourée, sans cadre) : pas de recadrage,
   pas d'arrondi/ombre, le fond transparent laisse voir la page. */
.row__media--plain {
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.row__media--plain img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Bannière photo large (ex. flotte de véhicules), en dehors d'un .row 2 colonnes. */
.row__media--banner {
  aspect-ratio: 1400 / 577;
  max-width: 64rem;
  margin: 0 auto;
}

.point-list {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .point-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.point-list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.point-list .point-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-900);
}

.point-list .point-title .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--citrus-500);
  flex-shrink: 0;
}

.point-list p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-500);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-list .check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 3px;
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--gold-700);
  flex-shrink: 0;
}

.check-list .check-icon svg {
  width: 14px;
  height: 14px;
}

/* ---------- Flow strip (Rungis > Prim Drive > Livraison > Client) ---------- */

.flow-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 2rem;
  background: var(--gold-50);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .flow-panel {
    flex-direction: row;
    align-items: center;
  }
}

.flow-panel--dark {
  background: var(--gold-50);
  box-shadow: inset 0 0 0 1px var(--gold-100);
  padding: 2rem;
}

@media (min-width: 640px) {
  .flow-panel--dark {
    padding: 2.5rem;
  }
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  width: 100%;
}

.flow-step__info {
  display: flex;
  flex-direction: column;
}

.flow-step .step-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-800);
}

.flow-step .step-sub {
  font-size: 0.75rem;
  color: var(--ink-500);
}

.flow-step .step-arrow {
  width: 16px;
  height: 16px;
  color: var(--gold-400);
  flex-shrink: 0;
  display: none;
}

@media (min-width: 640px) {
  .flow-step .step-arrow {
    display: block;
  }
}

.flow-panel--numbered {
  align-items: center;
  justify-content: space-between;
}

.flow-panel--numbered .flow-step {
  flex-direction: column;
  gap: 0.5rem;
  flex: none;
  width: auto;
}

.flow-panel--numbered .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--citrus-500);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.flow-panel--numbered .flow-step-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .flow-panel--numbered .flow-step-wrap {
    width: auto;
  }
}

/* ---------- Process steps (livraison page) ---------- */

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.process-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--citrus-500);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}

.process-step__arrow {
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--gold-100);
  display: none;
}

@media (min-width: 1024px) {
  .process-step__arrow {
    display: block;
  }
}

/* ---------- Delivery map ---------- */

.delivery-map {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 32rem;
  aspect-ratio: 4 / 3;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card-lg);
}

.delivery-map__canvas {
  width: 100%;
  height: 100%;
  background: var(--gold-50);
  font-family: var(--font-sans);
}

.delivery-map__pin {
  position: relative;
}

.delivery-map__pin-dot {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--citrus-500);
  box-shadow: 0 0 0 4px rgba(245, 130, 31, 0.25);
}

.delivery-map__pin-label {
  position: absolute;
  top: -6px;
  left: 12px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.1rem 0.4rem;
  border-radius: 0.4rem;
}

.delivery-map__caption {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold-700);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 14rem;
  gap: 1rem;
}

@media (min-width: 640px) {
  .gallery {
    grid-auto-rows: 16rem;
  }
}

@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

/* ---------- FAQ ---------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 0.25rem 1.5rem;
  transition: box-shadow 0.25s ease;
}

.faq-item:hover,
.faq-item[open] {
  box-shadow: var(--shadow-card-lg);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-50);
  color: var(--gold-700);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.faq-item__icon svg {
  width: 18px;
  height: 18px;
}

.faq-item[open] .faq-item__icon {
  background: var(--citrus-500);
  color: #fff;
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item__answer p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-500);
}

.faq-item__image {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1rem;
}

/* ---------- Team (Qui sommes-nous ?) ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-lg);
}

.team-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gold-50);
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
}

.team-card__body h3 {
  font-size: 1.05rem;
}

.team-card__body p {
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--ink-500);
}

.team-card__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.team-card__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--ink-500);
  transition: color 0.2s ease;
}

.team-card__contact a:hover {
  color: var(--gold-700);
}

.team-card__contact svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--gold-600);
}

/* ---------- CTA section ---------- */

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
}

@media (min-width: 640px) {
  .cta-section {
    padding: 6rem 0;
  }
}

.cta-section__blob {
  position: absolute;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  pointer-events: none;
}

.cta-section__blob--1 {
  top: -7rem;
  right: -7rem;
  background: radial-gradient(circle, rgba(217, 161, 18, 0.22) 0%, rgba(217, 161, 18, 0) 70%);
}

.cta-section__blob--2 {
  bottom: -8rem;
  left: -6rem;
  background: radial-gradient(circle, rgba(245, 130, 31, 0.16) 0%, rgba(245, 130, 31, 0) 70%);
}

.cta-section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-section h2 {
  font-size: 2rem;
  color: var(--ink-900);
}

@media (min-width: 640px) {
  .cta-section h2 {
    font-size: 2.5rem;
  }
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--ink-500);
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-section__actions {
    flex-direction: row;
  }
}

.cta-section__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--gold-800);
}

.cta-section__phone svg {
  width: 16px;
  height: 16px;
}

.cta-section__phone:hover {
  color: var(--citrus-600);
}

/* ---------- Page hero (secondary pages) ---------- */

.page-hero {
  position: relative;
  overflow: hidden;
  background: rgba(253, 246, 224, 0.5);
  padding: 2.5rem 0 4rem;
}

@media (min-width: 640px) {
  .page-hero {
    padding: 3.5rem 0 5rem;
  }
}

.page-hero__blob {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: var(--citrus-100);
  filter: blur(60px);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-500);
  margin-bottom: 1.5rem;
}

.breadcrumb a:hover {
  color: var(--gold-700);
}

.breadcrumb .sep {
  color: rgba(92, 102, 96, 0.4);
}

.breadcrumb .current {
  color: var(--gold-700);
}

.page-hero__content {
  position: relative;
  display: flex;
  max-width: 42rem;
  flex-direction: column;
  gap: 1rem;
}

.page-hero__content h1 {
  font-size: 2.25rem;
}

@media (min-width: 640px) {
  .page-hero__content h1 {
    font-size: 2.75rem;
  }
}

.page-hero__content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-500);
}

/* ---------- Forms ---------- */

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-900);
}

.form-field .optional {
  font-weight: 400;
  color: var(--ink-500);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(22, 33, 28, 0.1);
  background: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--ink-900);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--gold-600);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #dc2626;
}

.form-error {
  font-size: 0.78rem;
  font-weight: 600;
  color: #dc2626;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1.5rem;
  background: var(--gold-50);
  padding: 2.5rem;
  text-align: center;
}

.form-success__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--gold-700);
  color: #fff;
}

.form-success h3 {
  font-size: 1.25rem;
}

.form-success p {
  max-width: 24rem;
  color: var(--ink-500);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  opacity: 0;
}

/* ---------- Contact page ---------- */

.contact-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
  }
}

.contact-card {
  border-radius: 1.5rem;
  background: var(--gold-50);
  box-shadow: inset 0 0 0 1px var(--gold-100);
  color: var(--ink-900);
  padding: 2rem;
}

.contact-card h2 {
  font-size: 1.25rem;
}

.contact-card > p {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--ink-500);
}

.contact-card ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  color: var(--gold-700);
  flex-shrink: 0;
}

.contact-card .icon svg {
  width: 20px;
  height: 20px;
}

.contact-card .label {
  font-size: 0.8rem;
  color: var(--ink-500);
}

.contact-card .value {
  font-weight: 700;
  color: var(--ink-900);
}

.contact-card .value:hover {
  color: var(--citrus-600);
}

.contact-note {
  border-radius: 1.5rem;
  background: var(--gold-50);
  padding: 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-700);
  margin-top: 1.5rem;
}

.contact-note .strong {
  font-weight: 600;
  color: var(--ink-900);
}

.contact-form-panel {
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .contact-form-panel {
    padding: 2.5rem;
  }
}

/* ---------- Legal pages ---------- */

.legal-article {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

.legal-section h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-700);
  margin-bottom: 0.75rem;
}

.legal-section a {
  font-weight: 600;
  color: var(--gold-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #fff;
  color: var(--ink-700);
  border-top: 1px solid rgba(20, 21, 31, 0.08);
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr;
  }
  .footer-col--right {
    text-align: right;
    align-items: flex-end;
  }
  .footer-col--right ul {
    align-items: flex-end;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-brand__logo {
  display: inline-flex;
  width: fit-content;
  border-radius: 0.6rem;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(20, 21, 31, 0.08);
  padding: 0.3rem;
}

.footer-brand__logo img {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: none;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--ink-500);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--gold-50);
  color: var(--gold-700);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: var(--citrus-500);
  color: #fff;
}

.footer-social svg {
  width: 14px;
  height: 14px;
}

.footer-col h3 {
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-500);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.82rem;
  color: var(--ink-700);
}

.footer-col a:hover {
  color: var(--citrus-600);
}

.footer-bottom {
  border-top: 1px solid rgba(20, 21, 31, 0.08);
}

.footer-bottom__row {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  color: var(--ink-500);
}

@media (min-width: 640px) {
  .footer-bottom__row {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom__links a:hover {
  color: var(--citrus-600);
}

.footer-highlight {
  position: relative;
  display: inline-block;
}

.footer-highlight__mark {
  position: absolute;
  left: -2%;
  bottom: -0.2em;
  width: 104%;
  height: 0.55em;
  transform: rotate(-1deg);
  mix-blend-mode: multiply;
  opacity: 0.55;
  pointer-events: none;
}
