/* =========================================================
   LAVINO SARL — Site vitrine
   Palette : espresso brun + crème, accents vert & orange (logo),
   rouge "Rosso" pour le produit.
   ========================================================= */

:root {
  --espresso: #2a1810;
  --coffee: #4a2c1a;
  --coffee-soft: #6b4a30;
  --cream: #faf5ec;
  --cream-2: #f3ead9;
  --cream-3: #e9dcc4;
  --green: #3fa06c;
  --green-dark: #2f7d53;
  --orange: #f2a63b;
  --rosso: #a32020;
  --ink: #241a14;
  --ink-soft: #5d4b3e;
  --white: #ffffff;
  --wa: #25d366;
  --wa-dark: #1eb356;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 45px -18px rgba(42, 24, 16, 0.28);
  --shadow-soft: 0 10px 30px -14px rgba(42, 24, 16, 0.2);
  --header-h: 76px;
  --transition: 0.28s cubic-bezier(0.33, 1, 0.68, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

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

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

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

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), color var(--transition);
  will-change: transform;
}

.btn svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 28px -10px rgba(63, 160, 108, 0.55);
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(63, 160, 108, 0.6);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(250, 245, 236, 0.4);
}

.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(250, 245, 236, 0.08);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--cream);
  color: var(--espresso);
  box-shadow: var(--shadow-soft);
}

.btn--light:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 11px 20px;
  font-size: 0.92rem;
}

/* ---------- Barre supérieure ---------- */
.topbar {
  background: var(--espresso);
  color: var(--cream-3);
  font-size: 0.85rem;
  padding: 8px 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar__note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar__links {
  display: flex;
  gap: 22px;
}

.topbar__links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
}

.topbar__links a:hover {
  color: var(--orange);
}

.topbar svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

/* ---------- En-tête ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 24, 16, 0.06);
  transition: box-shadow var(--transition);
}

.header.is-scrolled {
  box-shadow: 0 6px 24px -12px rgba(42, 24, 16, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}

.header__logo {
  height: 54px;
  width: auto;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__list {
  display: flex;
  gap: 6px;
}

.nav__link {
  display: block;
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink-soft);
  transition: color var(--transition), background-color var(--transition);
}

.nav__link:hover {
  color: var(--espresso);
  background: var(--cream-2);
}

.nav__link.is-active {
  color: var(--green-dark);
  background: rgba(63, 160, 108, 0.12);
}

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
  background: var(--cream-2);
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  border-radius: 2px;
  background: var(--espresso);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Sections génériques ---------- */
.section {
  padding: 96px 0;
}

.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section__kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(63, 160, 108, 0.12);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section__kicker--light {
  color: var(--orange);
  background: rgba(242, 166, 59, 0.14);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--espresso);
  margin-bottom: 18px;
}

.section__title--light {
  color: var(--cream);
}

.section__text {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section__text--light {
  color: rgba(250, 245, 236, 0.78);
}

.section__text strong {
  color: inherit;
}

/* ---------- Héro ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(107, 62, 38, 0.55), transparent 60%),
    radial-gradient(800px 480px at -10% 110%, rgba(163, 32, 32, 0.28), transparent 55%),
    linear-gradient(160deg, #33200f 0%, var(--espresso) 55%, #1d100a 100%);
  color: var(--cream);
  padding: 84px 0 140px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero__glow--1 {
  width: 420px;
  height: 420px;
  background: rgba(242, 166, 59, 0.16);
  top: -120px;
  right: 8%;
}

.hero__glow--2 {
  width: 360px;
  height: 360px;
  background: rgba(63, 160, 108, 0.14);
  bottom: -80px;
  left: -60px;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-3);
  background: rgba(250, 245, 236, 0.08);
  border: 1px solid rgba(250, 245, 236, 0.16);
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(63, 160, 108, 0.7);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(63, 160, 108, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(63, 160, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(63, 160, 108, 0); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero__title em {
  font-style: italic;
  color: var(--orange);
}

.hero__title-accent {
  position: relative;
  white-space: nowrap;
  color: var(--green);
}

.hero__text {
  max-width: 520px;
  font-size: 1.08rem;
  color: rgba(250, 245, 236, 0.82);
  margin-bottom: 34px;
}

.hero__text strong {
  color: var(--cream);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 38px;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(250, 245, 236, 0.85);
}

.hero__points svg {
  width: 17px;
  height: 17px;
  color: var(--green);
  flex-shrink: 0;
}

/* Scène tasse */
.hero__visual {
  display: flex;
  justify-content: center;
}

.cup-scene {
  position: relative;
  width: min(440px, 100%);
}

.cup-scene__svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
}

.steam__path {
  opacity: 0;
  animation: steam 3.4s ease-in-out infinite;
}

.steam__path--2 { animation-delay: 0.7s; }
.steam__path--3 { animation-delay: 1.4s; }

@keyframes steam {
  0% { opacity: 0; transform: translateY(10px); }
  35% { opacity: 0.75; }
  100% { opacity: 0; transform: translateY(-16px); }
}

.bean {
  animation: floatBean 5.5s ease-in-out infinite;
}

.bean--2 { animation-delay: 1.2s; }
.bean--3 { animation-delay: 2.1s; }
.bean--4 { animation-delay: 0.6s; }

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

/* Le transform d'origine des grains est porté par l'attribut SVG ;
   on anime un groupe englobant pour ne pas l'écraser. */
.bean--1, .bean--2, .bean--3, .bean--4 {
  transform-box: fill-box;
  transform-origin: center;
}

.cup-scene__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(250, 245, 236, 0.97);
  color: var(--espresso);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  animation: floatCard 6s ease-in-out infinite;
}

.cup-scene__card strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.3;
}

.cup-scene__card small {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.cup-scene__flag {
  font-size: 1.5rem;
}

.cup-scene__card--origin {
  top: 8%;
  left: -6%;
}

.cup-scene__card--dest {
  bottom: 6%;
  right: -4%;
  animation-delay: 1.6s;
}

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

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: 90px;
  display: block;
}

/* ---------- Bandeau de confiance ---------- */
.strip {
  padding: 10px 0 26px;
}

.strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px 30px;
  transform: translateY(-46px);
  margin-bottom: -46px;
}

.strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.strip__item svg {
  width: 34px;
  height: 34px;
  color: var(--green);
  flex-shrink: 0;
}

.strip__item strong {
  display: block;
  font-size: 0.98rem;
  color: var(--espresso);
  line-height: 1.3;
}

.strip__item span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- À propos ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about__logo-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px 40px;
  display: flex;
  justify-content: center;
}

.about__logo-card img {
  width: min(300px, 100%);
}

.about__route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
  font-weight: 700;
  color: var(--coffee);
}

.about__route-line {
  display: flex;
  align-items: center;
  color: var(--orange);
}

.about__route-line svg {
  width: 30px;
  height: 30px;
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.about__fact {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.about__fact-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green-dark);
}

.about__fact-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Produit ---------- */
.product {
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(163, 32, 32, 0.25), transparent 55%),
    linear-gradient(165deg, #38220f 0%, var(--espresso) 60%, #20120b 100%);
}

.product__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.product__visual {
  text-align: center;
}

.bag {
  display: inline-block;
  width: min(320px, 80%);
  animation: floatCard 7s ease-in-out infinite;
}

.bag svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 40px rgba(0, 0, 0, 0.45));
}

.product__origin {
  margin-top: 18px;
  color: rgba(250, 245, 236, 0.75);
  font-size: 0.95rem;
}

.product__features {
  display: grid;
  gap: 18px;
}

.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(250, 245, 236, 0.06);
  border: 1px solid rgba(250, 245, 236, 0.12);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: background-color var(--transition), transform var(--transition),
    border-color var(--transition);
}

.feature:hover {
  background: rgba(250, 245, 236, 0.1);
  border-color: rgba(242, 166, 59, 0.4);
  transform: translateX(6px);
}

.feature__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(242, 166, 59, 0.16);
  color: var(--orange);
}

.feature__icon svg {
  width: 26px;
  height: 26px;
}

.feature__title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.feature__text {
  font-size: 0.94rem;
  color: rgba(250, 245, 236, 0.72);
}

.product__cta {
  justify-self: start;
  margin-top: 8px;
}

/* ---------- Pourquoi nous ---------- */
.why {
  background: var(--cream);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--green);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:nth-child(2) {
  border-top-color: var(--orange);
}

.why-card:nth-child(3) {
  border-top-color: var(--rosso);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.why-card__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--cream-3);
  line-height: 1;
  margin-bottom: 14px;
}

.why-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--espresso);
  margin-bottom: 10px;
}

.why-card__text {
  font-size: 0.96rem;
  color: var(--ink-soft);
}

/* ---------- Clients ---------- */
.clients {
  background: var(--cream-2);
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.client-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.client-card__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(63, 160, 108, 0.14), rgba(242, 166, 59, 0.16));
  color: var(--green-dark);
}

.client-card__icon svg {
  width: 36px;
  height: 36px;
}

.client-card__title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--espresso);
  margin-bottom: 10px;
}

.client-card__text {
  font-size: 0.96rem;
  color: var(--ink-soft);
}

/* ---------- Étapes ---------- */
.steps {
  background:
    radial-gradient(800px 400px at 85% 10%, rgba(63, 160, 108, 0.18), transparent 55%),
    linear-gradient(150deg, #33200f, var(--espresso));
}

.steps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
  margin-bottom: 48px;
}

.step {
  position: relative;
  background: rgba(250, 245, 236, 0.06);
  border: 1px solid rgba(250, 245, 236, 0.12);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}

.step__num {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--espresso);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 10px 24px -8px rgba(242, 166, 59, 0.55);
}

.step__title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
}

.step__text {
  font-size: 0.94rem;
  color: rgba(250, 245, 236, 0.72);
}

.steps__cta {
  text-align: center;
}

/* ---------- Contact ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.contact__list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact__item a,
.contact__item-static {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact__item a:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.contact__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
}

.contact__icon svg {
  width: 24px;
  height: 24px;
}

.contact__icon--wa {
  background: rgba(37, 211, 102, 0.14);
  color: var(--wa-dark);
}

.contact__icon--it {
  background: rgba(163, 32, 32, 0.1);
  color: var(--rosso);
}

.contact__icon--mail {
  background: rgba(242, 166, 59, 0.16);
  color: #b97a17;
}

.contact__icon--loc {
  background: rgba(63, 160, 108, 0.13);
  color: var(--green-dark);
}

.contact__item strong {
  display: block;
  font-size: 0.98rem;
  color: var(--espresso);
  line-height: 1.35;
}

.contact__item strong + span {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Formulaire */
.form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 36px;
}

.form__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--espresso);
  margin-bottom: 6px;
}

.form__subtitle {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  margin-bottom: 18px;
}

.form__group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--coffee);
  margin-bottom: 7px;
}

.form__group label span {
  color: var(--rosso);
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  font: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--cream-3);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__group textarea {
  resize: vertical;
  min-height: 96px;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: #a4917d;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(63, 160, 108, 0.14);
}

.form__group input.is-invalid {
  border-color: var(--rosso);
  box-shadow: 0 0 0 4px rgba(163, 32, 32, 0.1);
}

.form__error {
  color: var(--rosso);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.form__submit {
  width: 100%;
  justify-content: center;
  background: var(--wa);
  box-shadow: 0 12px 28px -10px rgba(37, 211, 102, 0.5);
}

.form__submit:hover {
  background: var(--wa-dark);
  box-shadow: 0 16px 32px -10px rgba(37, 211, 102, 0.55);
}

/* ---------- Pied de page ---------- */
.footer {
  background: var(--espresso);
  color: rgba(250, 245, 236, 0.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer__logo-card {
  display: inline-block;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 18px;
}

.footer__logo-card img {
  width: 170px;
}

.footer__text {
  font-size: 0.94rem;
  max-width: 340px;
}

.footer__heading {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__links {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.footer__links a {
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--orange);
}

.footer__bottom {
  border-top: 1px solid rgba(250, 245, 236, 0.12);
  padding: 20px 0;
  font-size: 0.85rem;
  text-align: center;
}

/* ---------- WhatsApp flottant & retour haut ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.65);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2.6s infinite;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: var(--wa-dark);
}

@keyframes waPulse {
  0% { box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.65), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.65), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.65), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.to-top {
  position: fixed;
  right: 30px;
  bottom: 96px;
  z-index: 89;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--espresso);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition),
    visibility var(--transition), background-color var(--transition);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--coffee);
}

.to-top svg {
  width: 20px;
  height: 20px;
}

/* ---------- Animations d'apparition ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .steam__path,
  .bean,
  .cup-scene__card,
  .bag,
  .hero__badge-dot,
  .whatsapp-float {
    animation: none !important;
  }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__text {
    max-width: 620px;
  }

  .hero__actions,
  .hero__points {
    justify-content: center;
  }

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

  .about__inner,
  .product__grid,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__visual {
    max-width: 460px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }

  .topbar__note {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .header__logo {
    height: 46px;
  }

  .header__cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(42, 24, 16, 0.08);
    box-shadow: 0 24px 40px -20px rgba(42, 24, 16, 0.3);
    padding: 18px 24px 26px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition),
      visibility var(--transition);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 4px;
  }

  .nav__link {
    padding: 13px 16px;
    font-size: 1.05rem;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 56px 0 120px;
  }

  .cup-scene__card {
    padding: 10px 14px;
  }

  .cup-scene__card--origin {
    left: 0;
  }

  .cup-scene__card--dest {
    right: 0;
  }

  .why__grid,
  .clients__grid,
  .steps__list {
    grid-template-columns: 1fr;
  }

  .form {
    padding: 30px 24px;
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px 0 40px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1160px, 100% - 36px);
  }

  .strip__inner {
    grid-template-columns: 1fr;
    padding: 22px 22px;
  }

  .about__facts {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 14px 22px;
    font-size: 0.95rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .to-top {
    right: 21px;
    bottom: 84px;
  }
}
