/* =========================================================
   Fleurs Ernst — feuille de styles principale
   Structure : 1. Variables · 2. Reset · 3. Base · 4. Utilitaires
               5. En-tête · 6. Hero · 7. Sections · 8. Pied de page
               9. Animations · 10. Responsive
   ========================================================= */

/* ============ 1. VARIABLES ============ */
:root {
  --green: #255229;
  --green-mid: #234c27;
  --green-dark: #14271a;
  --green-soft: #3a6340;
  --red: #d93929;
  --red-dark: #b13a2c;
  --cream: #fbf5ea;
  --cream-2: #f3e3d3;
  --sage: #cfd9c2;
  --ink: #5b5045;
  --ink-soft: #6a5d50;

  --maxw: 1180px;
  --gutter: 40px;
  --radius: 24px;
  --radius-lg: 34px;

  --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Karla', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-sub-title: 'Great Vibes', 'DM Serif Display', 'Times New Roman', serif;

  --shadow-sm: 0 6px 24px rgba(20, 40, 24, .06);
  --shadow-md: 0 8px 30px rgba(20, 40, 24, .10);
  --shadow-lg: 0 22px 50px rgba(20, 40, 24, .22);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ============ 2. RESET =====s======= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

address {
  font-style: normal;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ 3. BASE ============ */
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--green-mid);
  line-height: 1.12;
}

h2 {
  font-size: clamp(30px, 4vw, 42px);
}

h3 {
  font-size: 25px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--green);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  transition: top .2s var(--ease);
}

.skip-link:focus {
  top: 0;
}

/* ============ 4. UTILITAIRES ============ */
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--font-sub-title);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 25px;
  letter-spacing: .16em;
  font-weight: 500;
  color: var(--red);
  /*margin-bottom: 5px;*/
}

.eyebrow-sub-hero-title {
  font-family: var(--font-serif) !important;
  font-size: 13px !important;
}

.eyebrow--accent {
  color: #e8a08f;
}

.eyebrow--light {
  background: rgba(251, 245, 234, .16);
  color: var(--cream);
  padding: 9px 18px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.eyebrow__dot,
.eyebrow--light .eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}

.section-head {
  max-width: 600px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-head--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  gap: 24px;
  flex-wrap: wrap;
}

.section-head--center {
  text-align: center;
}

.section-head .eyebrow {
  /* margin-bottom: 14px; */
}

.h2--light {
  color: var(--cream);
}

/* Boutons */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 999px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--sm {
  padding: 11px 22px;
  font-size: 13px;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--light {
  background: #fff;
  color: var(--red-dark);
}

.btn--soft {
  background: rgba(251, 245, 234, .12);
  color: var(--cream);
}

.btn--ghost-light {
  color: var(--cream);
  border: 1.5px solid rgba(251, 245, 234, .7);
}

.btn--ghost-light:hover {
  background: rgba(251, 245, 234, .16);
  transform: none;
}

/* Décorations */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.deco--ring {
  border-radius: 50%;
  border: 2px dashed rgba(251, 245, 234, .4);
}

.deco--dot {
  border-radius: 50%;
  background: rgba(217, 57, 41, .5);
}

.deco--blob {
  border-radius: 50%;
  background: var(--red);
  opacity: .9;
}

.badge {
  background: var(--cream);
  color: var(--green-mid);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

/* ============ 5. EN-TÊTE ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
  max-width: 1500px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  flex: none;
}

.brand__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--red);
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 27px;
  color: var(--cream);
  white-space: nowrap;
  transition: color .35s var(--ease);
}

.nav__list {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav__link {
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(251, 245, 234, .82);
  transition: color .25s var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--cream);
  font-weight: 700;
}

/* État défilé : fond crème */
.site-header.is-scrolled {
  background: var(--cream);
  box-shadow: 0 2px 20px rgba(20, 40, 24, .08);
}

.site-header.is-scrolled .header__inner {
  padding-block: 14px;
}

.site-header.is-scrolled .brand__mark {
  background: var(--green);
}

.site-header.is-scrolled .brand__name {
  color: var(--green-mid);
}

.site-header.is-scrolled .nav__link {
  color: var(--ink-soft);
}

.site-header.is-scrolled .nav__link:hover,
.site-header.is-scrolled .nav__link.is-active {
  color: var(--green-mid);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s;
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--green-mid);
}

/* ============ 6. HERO ============ */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  border-radius: 0 0 44px 44px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  animation: ken 22s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 33, 19, .70) 0%, rgba(16, 33, 19, .38) 32%, rgba(16, 33, 19, .48) 62%, rgba(16, 33, 19, .86) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  max-width: 680px;
}

.hero__title {
  font-size: clamp(40px, 6vw, 55px);
  color: var(--cream);
  margin: 0 0 24px;
}

.hero__lead {
  font-size: clamp(17px, 2vw, 19px);
  color: rgba(251, 245, 234, .92);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__deco-1 {
  top: 120px;
  right: 120px;
  width: 140px;
  height: 140px;
  animation: drift 9s ease-in-out infinite;
}

.hero__deco-2 {
  bottom: 160px;
  right: 280px;
  width: 70px;
  height: 70px;
  animation: drift2 7s ease-in-out infinite;
}

/* Apparition en cascade du contenu du hero au chargement */
.hero__content>* {
  animation: heroUp .9s var(--ease) both;
}

.hero__content>*:nth-child(1) {
  animation-delay: .15s;
}

.hero__content>*:nth-child(2) {
  animation-delay: .30s;
}

.hero__content>*:nth-child(3) {
  animation-delay: .45s;
}

.hero__content>*:nth-child(4) {
  animation-delay: .60s;
}

/* ============ 7. SECTIONS ============ */
/* Statistiques */
.stats {
  position: relative;
  z-index: 3;
  margin-top: -46px;
}

.stats__band {
  background: var(--green-mid);
  border-radius: 26px;
  color: var(--cream);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 38px 44px;
  box-shadow: var(--shadow-lg);
}

.stat {
  text-align: center;
}

.stat--bordered {
  border-inline: 1px solid rgba(251, 245, 234, .18);
}

.stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
}

.stat__label {
  display: block;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(251, 245, 234, .72);
  margin-top: 8px;
}

/* La maison */
.story {
  padding: 96px 0;
}

.story__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.story__media {
  position: relative;
  margin: 0;
}

.story__media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 30px;
}

.story__blob {
  top: -18px;
  left: -18px;
  width: 90px;
  height: 90px;
}

.story__badge {
  position: absolute;
  bottom: 28px;
  right: -24px;
}

.story__text p+p {
  margin-top: 18px;
}

.story__text p:not(.eyebrow) {
  color: var(--ink);
}

.story__text h2 {
  margin-bottom: 24px;
}

/* Nos métiers */
.services {
  padding: 20px 0 96px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px) !important;
}

.service-card__media {
  flex: none;
  width: 172px;
  align-self: stretch;
  height: auto;
  object-fit: cover;
}

.service-card__body {
  padding: 32px 34px;
  align-self: center;
}

.service-card__body h3 {
  margin-bottom: 10px;
}

.service-card__body p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Productions */
.productions {
  background: var(--green-mid);
  padding: 90px 0;
  border-radius: 40px 40px 0 0;
}

.productions .section-head {
  margin-bottom: 40px;
}

.productions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prod img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 22px;
}

.prod__name {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--cream);
  margin-top: 14px;
}

/* Nos magasins */
.shops {
  padding: 96px 0;
}

.shops__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.shop {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.shop__media {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.shop__body {
  padding: 32px 36px;
}

.shop--green .shop__body {
  background: var(--green-mid);
  color: var(--cream);
}

.shop--red .shop__body {
  background: var(--red);
  color: #fff;
}

.shop__body h3 {
  color: inherit;
  margin-bottom: 4px;
}

.shop__tag {
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.shop--green .shop__tag {
  color: #e8a08f;
}

.shop--red .shop__tag {
  color: #ffd9d3;
}

.shop__address {
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.shop--green .shop__address {
  color: rgba(251, 245, 234, .85);
}

.shop--red .shop__address {
  color: rgba(255, 255, 255, .9);
}

.shop__address a:hover {
  text-decoration: underline;
}

/* Appel à l'action */
.cta {
  padding: 0 0 96px;
}

.cta__panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--green-mid);
  border-radius: var(--radius-lg);
  padding: 30px 56px;
  color: var(--cream);
}

.cta__panel h2,
.cta__panel p,
.cta__panel .btn {
  position: relative;
  z-index: 2;
}

.cta__panel h2 {
  color: var(--cream);
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 14px;
}

.cta__panel p {
  color: rgba(251, 245, 234, .85);
  margin-bottom: 30px;
}

.cta__deco-1 {
  top: -40px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: rgba(217, 57, 41, .25);
}

.cta__deco-2 {
  bottom: -50px;
  left: -20px;
  width: 160px;
  height: 160px;
  border-color: rgba(251, 245, 234, .3);
}

/* ============ 8. PIED DE PAGE ============ */
.site-footer {
  background: var(--green-mid);
  color: rgba(205, 211, 198, .8);
  padding: 64px 0 38px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 90px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(251, 245, 234, .12);
}

.brand__name--footer {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 26px;
}

.site-footer__about {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
}

.site-footer__title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}

.site-footer address {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(205, 211, 198, .78);
}

.site-footer__nav li {
  line-height: 1.9;
}

.site-footer__nav a {
  font-size: 14px;
  color: rgba(205, 211, 198, .78);
}

.site-footer__nav a:hover,
.site-footer address a:hover {
  color: var(--cream);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__bottom p {
  font-size: 12px;
  color: rgba(205, 211, 198, .6);
}

/* ============ 9. ANIMATIONS ============ */
@keyframes ken {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.22);
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-16px) rotate(7deg);
  }
}

@keyframes drift2 {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(14px) rotate(-6deg);
  }
}

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ============ 10. RESPONSIVE ============ */
@media (max-width: 1024px) {
  .story__grid {
    gap: 40px;
  }

  .productions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Menu mobile : bascule avant que la nav desktop ne soit à l'étroit */
@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    background: var(--cream);
    box-shadow: -8px 0 40px rgba(20, 40, 24, .18);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    padding: 100px 32px 32px;
    z-index: 90;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .nav__link {
    color: var(--ink-soft);
    font-size: 19px;
  }

  .nav__link:hover,
  .nav__link.is-active {
    color: var(--green-mid);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(20, 40, 24, .4);
    z-index: 80;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 22px;
  }

  .story__rose {
    top: 75% !important;
  }

  .hero {
    min-height: 560px;
    border-radius: 0 0 30px 30px;
  }

  .hero__deco-1,
  .hero__deco-2 {
    display: none;
  }

  .stats__band {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px;
  }

  .stat--bordered {
    border: 0;
    border-block: 1px solid rgba(251, 245, 234, .18);
    padding-block: 24px;
  }

  .story {
    padding: 64px 0;
  }

  .story__grid {
    grid-template-columns: 1fr;
  }

  .story__media {
    order: -1;
  }

  .story__badge {
    right: 16px;
  }

  .services {
    padding: 0 0 64px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .productions {
    padding: 64px 0;
  }

  .shops {
    padding: 64px 0;
  }

  .shops__grid {
    grid-template-columns: 1fr;
  }

  .cta__panel {
    padding: 56px 28px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex-direction: column;
  }

  .service-card__media {
    width: 100%;
    height: 200px;
  }

  .productions__grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibilité : mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__media,
  .deco {
    animation: none !important;
  }

  .hero__content>* {
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .service-card:hover {
    transform: none;
  }
}

/* Logo : version blanche sur header transparent (sur hero),
   version couleur une fois le header fixé (fond crème) */
.brand__logo {
  width: 240px;
  height: auto;
  display: block;
}

.brand__logo--dark {
  display: none;
}

/* masqué par défaut */
.site-header.is-scrolled .brand__logo--light {
  display: none;
}

.site-header.is-scrolled .brand__logo--dark {
  display: block;
}

/* Rose décorative (section « À propos ») — visible en entier */
.story {
  position: relative;
  overflow: hidden;
}

.story__rose {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) rotate(6deg);
  height: 78%;
  /* tient dans la hauteur de la section */
  max-height: 420px;
  opacity: .14;
  pointer-events: none;
  z-index: 0;
}

.story .container {
  position: relative;
  z-index: 2;
}

/* Croix de fermeture du menu mobile (cachée sur desktop) */
.nav-close {
  display: none;
}

@media (max-width: 980px) {
  .nav-close {
    display: block;
    position: absolute;
    top: 22px;
    right: 24px;
    width: 44px;
    height: 44px;
    font-size: 34px;
    line-height: 1;
    color: var(--green-mid);
    background: none;
    border: 0;
    cursor: pointer;
  }
}


/* Mobile : décale le contenu du hero sous le header pour éviter le chevauchement avec le logo */
@media (max-width: 980px) {
  .hero {
    align-items: flex-start;
  }

  .hero__inner {
    padding-top: 150px;
  }
}

.pm-slider {
  position: relative;
  overflow: hidden;
}

.pm-track {
  display: flex;
  transition: transform .45s var(--ease);
}

.pm-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Barre de contrôle (sous l'image) */
.pm-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 4px;
}

.pm-btn {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 0;
  background: var(--cream);
  color: var(--green-mid);
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 1px solid rgba(37, 82, 41, .18);
  transition: background .2s, color .2s;
}

.pm-btn:hover {
  background: var(--green);
  color: var(--cream);
}

.pm-dots {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.pm-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  background: rgba(37, 82, 41, .22);
  border: 0;
  transition: background .25s, transform .25s;
}

.pm-dots button.is-active {
  background: var(--red);
  transform: scale(1.3);
}

@media (max-width: 620px) {
  .pm-track img {
    height: 220px;
  }
}


/* ===== Section distributeur libre-service ===== */
.distrib {
  padding: 24px 0;
}

.distrib__panel {
  position: relative;
  overflow: hidden;
  background: var(--green-mid);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  color: var(--cream);
}

.distrib__media {
  position: relative;
  min-height: 340px;
}

.distrib__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.distrib__body {
  padding: 54px 52px;
}

.distrib__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.distrib__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
}

.distrib__text {
  color: rgba(251, 245, 234, .88);
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 26px;
}

.distrib__deco {
  position: absolute;
  bottom: -50px;
  right: -30px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 2px dashed rgba(251, 245, 234, .28);
  pointer-events: none;
}

@media (max-width: 820px) {
  .distrib__panel {
    grid-template-columns: 1fr;
  }

  .distrib__media {
    min-height: 240px;
  }

  .distrib__body {
    padding: 40px 30px;
  }
}