:root {
  --forest: #0c261c;
  --moss: #1a3f30;
  --leaf: #2f6b52;
  --mist: #e7f0eb;
  --fog: #f4f8f6;
  --ink: #0f1f18;
  --mute: #5a7266;
  --lime: #d6ff4b;
  --gold: #e2b04a;
  --clay: #c27045;
  --line: rgba(15, 31, 24, 0.12);
  --display: "Syne", system-ui, sans-serif;
  --body: "Outfit", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--fog);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--lime);
  color: var(--forest);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding: 1rem 1.25rem;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(12, 38, 28, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(8, 24, 18, 0.25);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(0.92rem, 2.1vw, 1.15rem);
  letter-spacing: -0.03em;
  color: #fff;
  max-width: min(68vw, 17.5rem);
  line-height: 1.05;
  text-decoration: none;
}

.logo-mark {
  width: 2.45rem;
  height: 2.45rem;
  flex-shrink: 0;
}

.logo-wordmark {
  display: none;
  height: 2.35rem;
  width: auto;
  flex-shrink: 0;
}

.logo-mark-dark,
.logo-wordmark-dark {
  display: none;
}

.site-header.is-solid .logo-mark-light {
  display: none;
}

.site-header.is-solid .logo-mark-dark {
  display: block;
}

.site-header.is-solid .logo-text {
  color: var(--forest);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.logo-text-brand {
  font-size: inherit;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo-text-brand em {
  font-style: normal;
  color: var(--lime);
}

.site-header.is-solid .logo-text-brand em {
  color: #1f6b45;
}

.logo-text-sub {
  font-family: var(--body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-badge {
  display: inline-flex;
  flex-shrink: 0;
  width: 2.85rem;
  height: 2.85rem;
  margin-left: 0.15rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(214, 255, 75, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-badge img {
  width: 100%;
  height: 100%;
}

.promo-badge:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(214, 255, 75, 0.55);
}

.site-header.is-solid .promo-badge {
  box-shadow: 0 4px 14px rgba(12, 38, 28, 0.18);
}

@media (max-width: 420px) {
  .logo {
    max-width: min(52vw, 12.5rem);
    gap: 0.4rem;
  }

  .logo-mark {
    width: 2.2rem;
    height: 2.2rem;
  }

  .logo-text-sub {
    font-size: 0.58rem;
  }

  .promo-badge {
    width: 2.45rem;
    height: 2.45rem;
  }
}

.nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #e5ff7a;
  box-shadow: 0 8px 20px rgba(214, 255, 75, 0.35);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-left: auto;
  min-width: 3.1rem;
  min-height: 2.85rem;
  padding: 0.55rem 0.85rem;
  border: 2px solid var(--lime);
  border-radius: 0.85rem;
  background: var(--lime);
  color: var(--forest);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  z-index: 70;
  box-shadow: 0 8px 22px rgba(214, 255, 75, 0.35);
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 1.15rem;
}

.nav-toggle-bars i {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 999px;
  background: var(--forest);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle-label {
  letter-spacing: 0.02em;
}

.site-header.nav-open .nav-toggle {
  background: #fff;
  border-color: #fff;
}

.site-header.nav-open .nav-toggle-bars i:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bars i:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bars i:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 820px) {
  .nav {
    display: flex;
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    flex-direction: row;
    flex-wrap: wrap;
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    transform: none;
  }

  .nav-toggle {
    display: none !important;
  }

  .header-cta {
    display: inline-flex;
  }
}

@media (max-width: 819px) {
  .header-inner {
    position: relative;
    z-index: 70;
  }

  .nav-toggle {
    display: inline-flex !important;
  }

  .nav {
    display: flex !important;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 5.75rem 1.35rem calc(1.75rem + env(safe-area-inset-bottom));
    flex-direction: column;
    align-content: flex-start;
    gap: 0.1rem;
    background: #0c261c;
    max-height: none;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: none;
    z-index: 65;
  }

  .site-header.nav-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.nav-open .logo {
    position: relative;
    z-index: 75;
    color: #fff !important;
  }

  .nav a {
    padding: 0.95rem 0.25rem;
    font-size: 1.12rem;
    font-weight: 600;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav a::after {
    display: none;
  }

  body.nav-locked {
    overflow: hidden;
    touch-action: none;
  }

  .nav-group-title {
    margin: 0.85rem 0 0.35rem;
    padding: 0 0.25rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lime);
  }

  .nav-group-title:first-child {
    margin-top: 0;
  }

  .nav-cta-wa {
    margin-top: 1rem !important;
    padding: 0.95rem 1rem !important;
    border-radius: 0.85rem !important;
    background: #25d366 !important;
    color: #083b1f !important;
    font-weight: 800 !important;
    text-align: center;
    border-bottom: 0 !important;
  }

  .header-wa-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-left: auto;
    border-radius: 0.75rem;
    background: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  }

  .header-wa-mobile img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(42%) saturate(1200%) hue-rotate(115deg);
  }
}

@media (min-width: 820px) {
  .nav-group-title,
  .nav-cta-wa {
    display: none;
  }

  .header-wa-mobile {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 6s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

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

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 24, 18, 0.4) 0%, rgba(8, 24, 18, 0.12) 40%, rgba(8, 24, 18, 0.88) 100%),
    radial-gradient(ellipse at 18% 85%, rgba(214, 255, 75, 0.18), transparent 42%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.18;
  background-image:
    linear-gradient(135deg, rgba(226, 176, 74, 0.35) 12%, transparent 12%),
    linear-gradient(-45deg, rgba(47, 107, 82, 0.4) 12%, transparent 12%);
  background-size: 28px 28px;
  mix-blend-mode: soft-light;
  animation: patternDrift 22s linear infinite;
  pointer-events: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(8, 24, 18, 0.35);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-btn:hover {
  background: rgba(214, 255, 75, 0.9);
  color: var(--forest);
  transform: translateY(-50%) scale(1.05);
}

.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}

.slider-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease;
}

.slider-dot.is-active {
  width: 1.5rem;
  background: var(--lime);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 7.5rem 1.5rem 5rem;
}

.brand-mark {
  font-family: var(--display);
  font-size: clamp(2.2rem, 6.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin-bottom: 1.15rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  max-width: 12ch;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 14ch;
  margin-bottom: 1rem;
}

.hero-lead {
  max-width: 34ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.scroll-hint {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.scroll-hint span {
  width: 1.2rem;
  height: 1.9rem;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  position: relative;
}

.scroll-hint span::after {
  content: "";
  position: absolute;
  top: 0.35rem;
  left: 50%;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--lime);
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@media (max-width: 720px) {
  .slider-btn {
    display: none;
  }

  .scroll-hint {
    display: none;
  }

  .slider-dots {
    bottom: 0.9rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--lime);
  color: var(--forest);
}

.btn-primary:hover {
  background: #e5ff7a;
  box-shadow: 0 12px 28px rgba(214, 255, 75, 0.35);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-whatsapp {
  background: #25d366;
  color: #083b1f;
}

.btn-whatsapp:hover {
  background: #3be07a;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.pulse {
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.animate-in {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.7s; }

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.delay-sm { transition-delay: 0.12s; }
.delay-md { transition-delay: 0.24s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBreath {
  from { transform: scale(1.12) translateY(0); }
  to { transform: scale(1.02) translateY(-2%); }
}

@keyframes patternDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 120px 80px, -90px 60px; }
}

@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.35; transform: translateX(-50%) translateY(0.7rem); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214, 255, 75, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(214, 255, 75, 0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Marquee */
.marquee {
  background:
    linear-gradient(90deg, var(--forest), #163528 40%, #1f4a38 100%);
  color: var(--lime);
  overflow: hidden;
  border-block: 3px solid var(--gold);
  position: relative;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  inset: 0 auto;
  width: 4rem;
  z-index: 1;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, #0c261c, transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #1f4a38, transparent);
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.85rem 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
  animation: marquee 28s linear infinite;
}

/* Shared sections */
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.section-lead {
  max-width: 38rem;
  color: var(--mute);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
}

/* Cities */
.cities {
  background:
    radial-gradient(circle at 0% 0%, rgba(226, 176, 74, 0.12), transparent 35%),
    linear-gradient(180deg, #f4f8f6 0%, #e8f0eb 100%);
}

.city-split {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .city-split {
    grid-template-columns: 1fr 1fr;
  }
}

.city {
  background: rgba(255, 255, 255, 0.72);
  padding: 2rem 1.5rem;
  min-height: 14rem;
  transition: background 0.3s ease, transform 0.35s ease;
}

.city:hover {
  background: #fff;
  transform: translateY(-2px);
}

.city-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.6rem;
}

.city h3 {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.city p {
  color: var(--mute);
  max-width: 28rem;
}

.city-yde {
  background:
    linear-gradient(135deg, rgba(214, 255, 75, 0.14), transparent 55%),
    rgba(255, 255, 255, 0.72);
}

.city-dla {
  background:
    linear-gradient(225deg, rgba(194, 112, 69, 0.14), transparent 55%),
    rgba(255, 255, 255, 0.72);
}

/* Commerce: grands magasins, gros & détail */
.commerce {
  background:
    radial-gradient(circle at 100% 0%, rgba(226, 176, 74, 0.16), transparent 42%),
    linear-gradient(180deg, #eef5f1 0%, #f7faf8 100%);
}

.commerce-hero {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 18rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--line);
}

.commerce-hero img {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.commerce-hero:hover img {
  transform: scale(1.05);
}

.commerce-hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.4rem 1.6rem;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(8, 24, 18, 0.88));
}

.commerce-hero-copy .city-kicker {
  color: var(--lime);
}

.commerce-hero-copy h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.commerce-hero-copy p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.86);
}

.commerce-split {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .commerce-split {
    grid-template-columns: 1fr 1fr;
  }
}

.commerce-card {
  display: grid;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.commerce-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(12, 38, 28, 0.12);
}

.commerce-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.commerce-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.commerce-card:hover .commerce-media img {
  transform: scale(1.06);
}

.commerce-copy {
  padding: 1.35rem 1.4rem 1.55rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.commerce-copy h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.commerce-copy ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  color: var(--mute);
  margin-bottom: 0.35rem;
}

.commerce-copy li {
  position: relative;
  padding-left: 1rem;
}

.commerce-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--leaf);
}

.badge-gros,
.badge-detail {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-gros {
  background: rgba(194, 112, 69, 0.16);
  color: #8a3f1f;
}

.badge-detail {
  background: rgba(214, 255, 75, 0.28);
  color: var(--forest);
}

.commerce-copy .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

.commerce-copy .btn-primary {
  background: var(--forest);
  color: #fff;
}

.commerce-copy .btn-primary:hover {
  background: #163528;
  box-shadow: 0 12px 28px rgba(12, 38, 28, 0.28);
}

/* Journey: packaging + delivery */
.journey {
  background: #fff;
  position: relative;
}

.journey::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--forest) 0 18px,
      var(--gold) 18px 28px,
      var(--clay) 28px 38px,
      var(--leaf) 38px 54px
    );
}

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

@media (min-width: 860px) {
  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.journey-card {
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--fog);
  border: 1px solid var(--line);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(12, 38, 28, 0.12);
}

.journey-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.journey-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.journey-card:hover .journey-media img {
  transform: scale(1.07);
}

.journey-card figcaption {
  padding: 1.35rem 1.4rem 1.6rem;
}

.journey-card .step {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.journey-card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.journey-card p {
  color: var(--mute);
}

/* Clients / testimonials */
.clients {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.clients-bg {
  position: absolute;
  inset: 0;
}

.clients-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.45);
  transform: scale(1.05);
  animation: heroBreath 18s ease-in-out infinite alternate;
}

.clients .section-inner {
  position: relative;
  z-index: 1;
}

.clients .eyebrow {
  color: var(--lime);
}

.clients .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

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

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

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.4s ease, background 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-6px) scale(1.01);
  background: rgba(255, 255, 255, 0.14);
}

.testimonial-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.testimonial:hover .testimonial-media img {
  transform: scale(1.06);
}

.testimonial blockquote {
  padding: 1.35rem 1.4rem 1.55rem;
}

.testimonial blockquote p {
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.testimonial footer {
  display: grid;
  gap: 0.15rem;
}

.testimonial strong {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.testimonial span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

/* Collections */
.collections {
  background: var(--forest);
  color: #fff;
}

.collections .eyebrow {
  color: var(--lime);
}

.collections .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.collection-rail {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .collection-rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.collection {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.1rem;
  min-height: 22rem;
  isolation: isolate;
  border: 1px solid rgba(214, 255, 75, 0.12);
}

.collection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.collection::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 24, 18, 0.9) 100%);
  z-index: 1;
}

.collection:hover img {
  transform: scale(1.08);
}

.collection-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.4rem 1.35rem 1.5rem;
}

.collection-copy h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.collection-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

/* Canapés capitonnés */
.canapes {
  background:
    radial-gradient(circle at 0% 100%, rgba(194, 112, 69, 0.12), transparent 40%),
    #fff;
}

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

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

.lits {
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 107, 82, 0.12), transparent 42%),
    var(--fog);
}

.salle-manger {
  background:
    radial-gradient(circle at 0% 0%, rgba(194, 112, 69, 0.14), transparent 40%),
    #fff;
}

.canape-card {
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--fog);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.canape-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(12, 38, 28, 0.12);
}

.canape-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.canape-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.canape-card:hover .canape-media img {
  transform: scale(1.05);
}

.canape-copy {
  padding: 1.35rem 1.4rem 1.55rem;
  display: grid;
  gap: 0.55rem;
}

.canape-copy h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.canape-copy p:not(.city-kicker) {
  color: var(--mute);
}

.canape-copy .btn {
  justify-self: start;
  margin-top: 0.35rem;
}

/* Promise */
.promise {
  background:
    radial-gradient(circle at 100% 0%, rgba(226, 176, 74, 0.14), transparent 40%),
    var(--fog);
}

.promise-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .promise-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
    gap: 3rem;
  }
}

.promise-list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.promise-list li {
  display: grid;
  gap: 0.3rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.promise-list strong {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.promise-list span {
  color: var(--mute);
}

/* Closing */
.closing {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(214, 255, 75, 0.25), transparent 50%),
    linear-gradient(160deg, #163528 0%, #0c261c 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(45deg, rgba(226, 176, 74, 0.4) 10%, transparent 10%),
    linear-gradient(-45deg, rgba(194, 112, 69, 0.35) 10%, transparent 10%);
  background-size: 36px 36px;
  animation: patternDrift 30s linear infinite;
}

.closing-inner {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.closing-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.closing p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.5rem;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.footer-wa {
  margin-top: 0.55rem;
  font-size: 0.95rem;
}

.footer-wa a {
  color: var(--lime);
  font-weight: 700;
}

.footer-wa a:hover {
  text-decoration: underline;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  padding: 0.7rem 1rem 0.7rem 0.85rem;
  border-radius: 999px;
  background: #25d366;
  color: #083b1f;
  font-weight: 700;
  box-shadow: 0 14px 36px rgba(8, 59, 31, 0.35);
  animation: waBounce 2.8s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(8, 59, 31, 0.4);
  animation: none;
}

.wa-float-label {
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  .wa-float-label {
    display: none;
  }

  .wa-float {
    padding: 0.85rem;
    border-radius: 50%;
  }
}

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Bottom payment dock popup */
.pay-dock {
  position: fixed;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 65;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.pay-dock-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  cursor: pointer;
  min-height: 3.2rem;
  padding: 0.55rem 0.95rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  color: var(--forest);
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 14px 36px rgba(12, 38, 28, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pay-dock-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(12, 38, 28, 0.28);
}

.pay-dock-toggle-icons {
  display: inline-flex;
  gap: 0.2rem;
}

.pay-dock-toggle-icons img {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.4rem;
}

.pay-dock-panel {
  width: min(92vw, 22rem);
  padding: 0.95rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(12, 38, 28, 0.2);
  backdrop-filter: blur(10px);
  animation: payPop 0.28s ease;
}

.pay-dock-panel[hidden] {
  display: none !important;
}

.pay-dock-title {
  font-family: var(--display);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--forest);
}

.pay-dock-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}

.pay-dock-icon {
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  border: 1px solid transparent;
  background: var(--fog);
  border-radius: 0.85rem;
  padding: 0.55rem 0.2rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pay-dock-icon img {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.7rem;
}

.pay-dock-icon:hover,
.pay-dock-icon.is-active {
  transform: translateY(-2px);
  border-color: rgba(12, 38, 28, 0.18);
  background: #fff;
}

@media (max-width: 640px) {
  .pay-dock {
    left: 0.85rem;
    bottom: 4.6rem;
  }

  .pay-dock-toggle span:last-child {
    display: none;
  }

  .pay-dock-toggle {
    padding: 0.7rem;
  }
}

/* Footer */
.site-footer {
  background: #081812;
  color: rgba(255, 255, 255, 0.7);
  padding: 1.75rem 1.5rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-brand {
  font-family: var(--display);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-note {
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .animate-in,
  .collection img,
  .marquee-track,
  .clients-bg img,
  .hero-pattern,
  .pulse,
  .closing::before,
  .wa-float {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }

  .hero-slide:not(.is-active) {
    opacity: 0;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* —— Page Paiement —— */
.site-header.is-solid {
  background: rgba(244, 248, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header.is-solid .logo {
  color: var(--forest);
}

.site-header.is-solid .nav-toggle {
  border-color: var(--forest);
  background: var(--lime);
  color: var(--forest);
}

.site-header.is-solid .nav-toggle-bars i {
  background: var(--forest);
}

.site-header.is-solid .nav {
  color: var(--mute);
}

@media (min-width: 820px) {
  .site-header.is-solid .nav a {
    color: var(--moss);
  }

  .site-header.is-solid .nav a:hover,
  .site-header.is-solid .nav a[aria-current="page"] {
    color: var(--forest);
  }
}

.btn-dark {
  background: var(--forest);
  color: #fff;
}

.btn-dark:hover {
  background: var(--moss);
  box-shadow: 0 12px 28px rgba(12, 38, 28, 0.28);
}

.btn-ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.pay-hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.pay-hero-bg {
  position: absolute;
  inset: 0;
}

.pay-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pay-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 18, 0.35) 0%, rgba(8, 24, 18, 0.82) 72%),
    radial-gradient(ellipse at 20% 80%, rgba(214, 255, 75, 0.18), transparent 45%);
}

.pay-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 3.5rem;
}

.pay-hero .eyebrow {
  color: var(--lime);
}

.pay-hero-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin: 0.4rem 0 1rem;
}

.pay-hero-lead {
  max-width: 38rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}

.pay-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pay-trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 2.25rem 0;
}

.pay-trust-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 720px) {
  .pay-trust-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.pay-trust-item {
  text-align: center;
}

.pay-trust-item img {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 0.7rem;
  border-radius: 1.1rem;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(12, 38, 28, 0.1);
}

.pay-trust-item h2 {
  font-family: var(--display);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.pay-trust-item p {
  font-size: 0.85rem;
  color: var(--mute);
  line-height: 1.4;
}

.pay-modes {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 204, 0, 0.1), transparent 35%),
    radial-gradient(circle at 100% 20%, rgba(255, 121, 0, 0.1), transparent 40%),
    var(--fog);
}

.pay-mode-cards {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

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

.pay-mode-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.4rem 1.35rem 1.5rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pay-mode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(12, 38, 28, 0.1);
}

.pay-mode-card.is-mtn {
  border-top: 4px solid #ffcc00;
}

.pay-mode-card.is-orange {
  border-top: 4px solid #ff7900;
}

.pay-mode-logo {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 0.85rem;
}

.pay-mode-card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.pay-mode-card p {
  color: var(--mute);
  font-size: 0.96rem;
  line-height: 1.5;
}

.pay-mode-card .btn,
.pay-mode-cta {
  margin-top: 0.5rem;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}

a.pay-mode-card {
  color: inherit;
  text-decoration: none;
}

.pay-notice {
  margin-top: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed var(--line);
  border-radius: 1.1rem;
}

.pay-notice img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.8rem;
  flex-shrink: 0;
  object-fit: cover;
}

.pay-notice p {
  color: var(--mute);
  line-height: 1.5;
}

.pay-notice a {
  color: var(--forest);
  font-weight: 700;
}

.pay-streets {
  padding: 4rem 0;
  background: #fff;
}

.pay-street-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .pay-street-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pay-street-card {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--fog);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.pay-street-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(12, 38, 28, 0.12);
}

.pay-street-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.pay-street-card figcaption,
.pay-street-caption {
  padding: 1.1rem 1.2rem 1.3rem;
}

.pay-street-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.pay-street-card p {
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.45;
}

.page-paiement .nav a[aria-current="page"] {
  color: var(--forest);
  font-weight: 700;
}

/* —— Homepage trust / pay / streets —— */
.hero-pay-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.hero-pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem 0.4rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-pay-chip img {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.4rem;
}

.hero-pay-chip:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.hero-pay-chip.is-link {
  padding-left: 0.85rem;
  color: var(--lime);
  border-color: rgba(214, 255, 75, 0.45);
}

.home-trust {
  padding: 1.75rem 0 1.5rem;
}

.pay-trust-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.pay-trust-link:hover h2 {
  color: var(--leaf);
}

.home-paybar {
  padding: 2.5rem 0;
  background:
    linear-gradient(135deg, #0c261c 0%, #1a3f30 55%, #14352a 100%);
  color: #fff;
}

.home-paybar .eyebrow {
  color: var(--lime);
}

.home-paybar .section-title {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.home-paybar .section-lead {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.home-paybar-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .home-paybar-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
  }
}

.home-paybar-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

.home-pay-btn {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  padding: 0.9rem 0.6rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  transition: transform 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}

.home-pay-btn img {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.home-pay-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.home-pay-btn.is-mtn:hover {
  border-color: #ffcc00;
}

.home-pay-btn.is-orange:hover {
  border-color: #ff7900;
}

.home-pay-btn.is-more img {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-streets {
  padding: 3.25rem 0;
  background: var(--fog);
}

.home-streets-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.5rem;
}

.home-streets-head .section-lead {
  max-width: 36rem;
  margin-bottom: 0;
}

.home-street-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 900px) {
  .home-street-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.home-street-tile {
  position: relative;
  display: block;
  border-radius: 1.1rem;
  overflow: hidden;
  isolation: isolate;
  min-height: 9.5rem;
  box-shadow: 0 12px 28px rgba(12, 38, 28, 0.1);
}

.home-street-tile img {
  width: 100%;
  height: 100%;
  min-height: 9.5rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-street-tile span {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(8, 24, 18, 0.78);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.home-street-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 24, 18, 0.45) 100%);
}

.home-street-tile:hover img {
  transform: scale(1.06);
}

@media (max-width: 640px) {
  .hero-pay-chip span {
    font-size: 0.75rem;
  }

  .home-paybar {
    padding: 2rem 0 2.25rem;
  }
}

/* —— Page Livraison —— */
.page-livraison .nav a[aria-current="page"] {
  color: var(--forest);
  font-weight: 700;
}

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

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

.liv-cities {
  padding: 3.5rem 0 2.5rem;
  background: var(--fog);
}

.liv-city-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.75rem;
}

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

.liv-city-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
  text-decoration: none;
  display: block;
}

.liv-city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(12, 38, 28, 0.1);
}

.liv-city-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.liv-city-copy {
  padding: 1.1rem 1.2rem 1.35rem;
}

.liv-city-copy h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0.15rem 0 0.4rem;
}

.liv-city-copy p:last-child {
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.45;
}

.liv-notice {
  margin-top: 1.5rem;
}

.liv-modes {
  padding: 3.5rem 0;
  background: #fff;
}

.liv-mode-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
  grid-template-columns: repeat(2, 1fr);
}

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

.liv-mode-card {
  text-align: center;
  padding: 1.25rem 1rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--fog);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: inherit;
  text-decoration: none;
  display: block;
}

.liv-mode-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(12, 38, 28, 0.08);
  background: #fff;
}

.liv-mode-card img {
  width: 4.4rem;
  height: 4.4rem;
  margin: 0 auto 0.75rem;
  border-radius: 1rem;
  object-fit: cover;
}

.liv-mode-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.liv-mode-card p {
  color: var(--mute);
  font-size: 0.88rem;
  line-height: 1.45;
}

.liv-mode-banner {
  margin: 1.75rem 0 0;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
}

.liv-mode-banner img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.liv-mode-banner figcaption {
  padding: 0.85rem 1.1rem;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.liv-security {
  padding: 3.5rem 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 255, 75, 0.12), transparent 40%),
    var(--fog);
}

.liv-security-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .liv-security-inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

.liv-security-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 1.75rem;
}

.liv-security-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.liv-security-list img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.liv-security-list strong {
  display: block;
  font-family: var(--display);
  margin-bottom: 0.2rem;
}

.liv-security-list span {
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.4;
}

.liv-security-media {
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px rgba(12, 38, 28, 0.12);
}

.liv-security-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 879px) {
  .liv-security-media {
    max-width: 26rem;
    margin: 0 auto;
  }

  .liv-security-media img {
    aspect-ratio: 16 / 11;
  }
}

/* CTA bands */
.cta-band {
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #0c261c 0%, #1a3f30 100%);
  color: #fff;
}

.cta-band-alt {
  background:
    radial-gradient(circle at 0% 0%, rgba(214, 255, 75, 0.14), transparent 40%),
    var(--fog);
  color: var(--ink);
}

.cta-band-inner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 820px) {
  .cta-band-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
  }
}

.cta-band-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.35rem;
}

.cta-band-alt .cta-band-kicker {
  color: var(--leaf);
}

.cta-band-title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.cta-band-text {
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band-alt .cta-band-text {
  color: var(--mute);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cta-band-alt .btn-outline {
  border-color: var(--line);
  color: var(--forest);
  background: #fff;
}

.cta-band-alt .btn-outline:hover {
  background: var(--mist);
}

.btn-outline-dark {
  border: 1px solid rgba(12, 38, 28, 0.2);
  color: var(--forest);
  background: rgba(255, 255, 255, 0.65);
}

.btn-outline-dark:hover {
  background: #fff;
}

.promise-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
  grid-column: 1 / -1;
}

.page-catalogue .cta-band {
  border-radius: 1.25rem;
  margin: 0 0 1rem;
}

.page-catalogue .hero .eyebrow {
  color: var(--sage);
}

.page-catalogue .hero h1 {
  font-family: "Fraunces", Georgia, serif;
}
