/* ==========================================================
   L'arène des prés — Thème bois chaleureux & orangé
   ========================================================== */

:root {
  /* Palette bois & terre */
  --wood-dark:    #3a2418;
  --wood:         #6b4226;
  --wood-mid:     #8b5a2b;
  --wood-light:   #b08363;
  --wood-pale:    #d9b896;

  /* Oranges & ambres */
  --amber:        #c46a1a;
  --orange:       #e8833a;
  --orange-soft:  #f4a667;
  --orange-pale:  #fbd9b3;

  /* Crème / parchemin */
  --cream:        #faf3e8;
  --cream-warm:   #f1e3cf;
  --parchment:    #f7eddb;

  /* Verts d'herbe & accents */
  --leaf:         #6b7d3a;
  --moss:         #3f4f1f;

  /* Système */
  --text:         #2c1810;
  --text-soft:    #5a4434;
  --shadow-warm:  0 8px 32px rgba(58, 36, 24, .15);
  --shadow-deep:  0 20px 60px rgba(58, 36, 24, .25);

  /* Typographies */
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Cabin", -apple-system, "Segoe UI", sans-serif;

  --radius:       12px;
  --radius-lg:    20px;
}

/* ==========================================================
   Texture bois — générée en SVG (data URI inline)
   ========================================================== */
:root {
  --wood-texture:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='400' viewBox='0 0 600 400'><defs><filter id='f'><feTurbulence type='fractalNoise' baseFrequency='0.012 0.6' numOctaves='3' seed='5'/><feColorMatrix values='0 0 0 0 0.42  0 0 0 0 0.26  0 0 0 0 0.15  0 0 0 0.55 0'/></filter></defs><rect width='600' height='400' filter='url(%23f)' opacity='0.7'/></svg>");

  --wood-texture-dark:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='400' viewBox='0 0 600 400'><defs><filter id='f'><feTurbulence type='fractalNoise' baseFrequency='0.01 0.55' numOctaves='4' seed='12'/><feColorMatrix values='0 0 0 0 0.22  0 0 0 0 0.13  0 0 0 0 0.08  0 0 0 0.85 0'/></filter></defs><rect width='600' height='400' filter='url(%23f)'/></svg>");

  --paper-texture:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.4  0 0 0 0 0.22  0 0 0 0.08 0'/></filter><rect width='300' height='300' filter='url(%23n)'/></svg>");
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  background-image: var(--paper-texture);
  background-repeat: repeat;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--wood-dark);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: .8em; }
h3 { font-size: 1.4rem; margin-bottom: .5em; }
h4 { font-size: 1.15rem; margin-bottom: .4em; }

p { margin-bottom: 1em; color: var(--text-soft); }

a { color: var(--amber); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--wood); }

em { font-style: italic; color: var(--amber); }

.accent { color: var(--amber); font-style: italic; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 110px 0; position: relative; }

.section-kicker {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--orange);
  font-size: 1.05rem;
  letter-spacing: .04em;
  margin-bottom: .5em;
}

.section-header { margin-bottom: 64px; max-width: 720px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-intro { font-size: 1.1rem; }

/* ==========================================================
   Boutons
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
  color: var(--cream);
  box-shadow: 0 6px 20px rgba(196, 106, 26, .35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196, 106, 26, .5);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 243, 232, .6);
}
.btn-ghost:hover {
  background: rgba(250, 243, 232, .15);
  border-color: var(--cream);
  color: var(--cream);
}

.btn-large { padding: 18px 40px; font-size: 1.05rem; }

.ig-icon {
  width: 22px; height: 22px;
  border: 2px solid currentColor;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
}

/* ==========================================================
   Header
   ========================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .3s ease;
  background: rgba(58, 36, 24, 0);
  backdrop-filter: blur(0);
}
.site-header.scrolled {
  background: rgba(58, 36, 24, .92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-warm);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: .01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}
.logo-mark { color: var(--orange); font-size: 1.2em; }
.logo-amp { font-size: .75em; opacity: .8; }

.main-nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}
.main-nav a {
  color: var(--cream);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s ease;
}
.main-nav a:hover { color: var(--orange-soft); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  transition: all .3s ease;
}

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(42, 24, 16, .78) 0%, rgba(74, 44, 26, .55) 40%, rgba(196, 106, 26, .45) 100%),
    url("images/saintgervais-paysage.webp") center/cover no-repeat,
    linear-gradient(135deg, #2a1810 0%, #4a2c1a 50%, #6b4226 100%);
  background-attachment: scroll, fixed, scroll;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--wood-texture-dark);
  background-size: 800px;
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(232, 131, 58, .25) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(196, 106, 26, .25) 0, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}

.hero .kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--orange-soft);
  letter-spacing: .15em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 28px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .4);
}

.hero .lead {
  font-size: 1.25rem;
  color: rgba(250, 243, 232, .9);
  max-width: 640px;
  margin: 0 auto 44px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(250, 243, 232, .6);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--orange-soft), transparent);
  margin: 12px auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50%      { transform: scaleY(1.3); opacity: 1; }
}

/* ==========================================================
   Section histoire
   ========================================================== */
.section-story { background: var(--parchment); }
.section-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--paper-texture);
  opacity: .3;
  pointer-events: none;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.story-text p { font-size: 1.05rem; margin-bottom: 1.2em; }

.story-list {
  list-style: none;
  margin-top: 32px;
}
.story-list li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--wood-pale);
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 14px;
}
.story-list li:last-child { border-bottom: none; }
.bullet {
  color: var(--orange);
  font-size: 1.1rem;
}

/* Visuels histoire — cartes décoratives */
.wood-frame {
  position: relative;
  height: 520px;
}
.visual-card {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  transition: transform .4s ease;
  border: 4px solid var(--cream);
}
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(232, 131, 58, .15), transparent 60%);
  pointer-events: none;
}
.visual-1 {
  top: 0; left: 0;
  width: 62%; height: 62%;
  z-index: 2;
  transform: rotate(-2deg);
}
.visual-2 {
  top: 18%; right: 0;
  width: 58%; height: 58%;
  z-index: 3;
  transform: rotate(2deg);
}
.visual-3 {
  bottom: 0; left: 12%;
  width: 55%; height: 40%;
  z-index: 1;
  transform: rotate(-1.5deg);
}
.wood-frame:hover .visual-1 { transform: rotate(-3deg) translate(-6px, -6px); }
.wood-frame:hover .visual-2 { transform: rotate(3deg) translate(6px, -8px); }
.wood-frame:hover .visual-3 { transform: rotate(-2.5deg) translate(-4px, 8px); }

/* ==========================================================
   Section produits — fond bois
   ========================================================== */
.section-products {
  background:
    linear-gradient(180deg, rgba(58, 36, 24, .85), rgba(58, 36, 24, .75)),
    var(--wood-texture-dark);
  background-size: cover, 800px;
  color: var(--cream);
}
.section-products h2 { color: var(--cream); }
.section-products .section-intro { color: rgba(250, 243, 232, .85); }
.section-products .accent { color: var(--orange-soft); }

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

.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.product-img {
  height: 240px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.06);
}
.product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .2));
  pointer-events: none;
  z-index: 1;
}

/* Cartes sans photo : dégradés bois/terre */
.product-img-3 {
  background: linear-gradient(135deg, #e8833a 0%, #a64a1a 100%);
  background-blend-mode: multiply;
}
.product-img-5 {
  background: linear-gradient(135deg, #6b7d3a 0%, #3f4f1f 100%);
  background-blend-mode: multiply;
}
.product-img-3::before,
.product-img-5::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--wood-texture);
  background-size: 400px;
  opacity: .3;
  mix-blend-mode: overlay;
}
/* Icône décorative pour les cartes sans photo */
.product-img-3::after,
.product-img-5::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .2));
}

.product-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--cream);
  color: var(--amber);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-warm);
  z-index: 3;
}

.product-body {
  padding: 28px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body h3 { color: var(--wood-dark); }
.product-body p {
  flex: 1;
  font-size: .98rem;
  color: var(--text-soft);
}

.product-tag {
  display: inline-block;
  margin-top: 18px;
  padding: 5px 14px;
  background: var(--orange-pale);
  color: var(--amber);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  align-self: flex-start;
}

/* ==========================================================
   Section valeurs
   ========================================================== */
.section-values {
  background: var(--cream-warm);
  padding: 80px 0;
}

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

.value-item {
  text-align: center;
  padding: 24px;
}
.value-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
  display: inline-block;
  filter: sepia(.2) saturate(1.2);
}
.value-item h4 { color: var(--wood-dark); margin-bottom: 8px; }
.value-item p { font-size: .94rem; color: var(--text-soft); margin: 0; }

/* ==========================================================
   Section marché
   ========================================================== */
.section-market {
  background:
    linear-gradient(135deg, rgba(232, 131, 58, .15), rgba(196, 106, 26, .1)),
    var(--parchment);
}

.market-flex {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.market-info {
  margin-top: 32px;
  background: rgba(255, 255, 255, .55);
  border-radius: var(--radius);
  padding: 24px 28px;
  border-left: 4px solid var(--orange);
}
.market-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--wood-pale);
}
.market-line:last-child { border-bottom: none; }
.market-label {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--amber);
  font-size: .95rem;
}
.market-value {
  font-weight: 600;
  color: var(--wood-dark);
  text-align: right;
}

.market-visual { display: flex; justify-content: center; }
.market-card {
  position: relative;
  width: 280px; height: 320px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
  transform: rotate(-3deg);
  transition: transform .4s ease;
}
.market-card:hover { transform: rotate(0deg) scale(1.03); }
.market-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--wood-texture-dark);
  background-size: 400px;
  opacity: .35;
  mix-blend-mode: overlay;
}
.market-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--cream);
  color: var(--amber);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.market-card-inner { position: relative; z-index: 2; }
.market-icon { font-size: 4rem; margin-bottom: 16px; }
.market-card p {
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.5;
}
.market-card strong { font-weight: 700; font-style: normal; font-size: 1.3rem; }

/* ==========================================================
   Section social
   ========================================================== */
.section-social {
  background:
    linear-gradient(180deg, rgba(58, 36, 24, .9), rgba(58, 36, 24, .85)),
    var(--wood-texture-dark);
  background-size: cover, 800px;
  color: var(--cream);
  text-align: center;
  padding: 90px 0;
}
.section-social h2 { color: var(--cream); }
.section-social .accent { color: var(--orange-soft); }
.section-social .section-intro {
  color: rgba(250, 243, 232, .85);
  max-width: 580px;
  margin: 0 auto 32px;
}

.social-inner { max-width: 700px; margin: 0 auto; }

/* ==========================================================
   Section contact
   ========================================================== */
.section-contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.contact-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--parchment);
  border-radius: var(--radius);
  border: 1px solid rgba(176, 131, 99, .25);
  transition: all .3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
  border-color: var(--orange-soft);
}
.contact-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-card h4 { color: var(--amber); margin-bottom: 10px; }
.contact-card p { font-size: .95rem; margin: 0; }
.contact-card a { color: var(--wood); font-weight: 600; }
.contact-card a:hover { color: var(--orange); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 6px solid var(--cream);
  outline: 1px solid var(--wood-pale);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  filter: sepia(.15) saturate(1.1);
}

/* ==========================================================
   Footer
   ========================================================== */
.site-footer {
  background:
    linear-gradient(180deg, rgba(42, 24, 16, .96), rgba(42, 24, 16, .98)),
    var(--wood-texture-dark);
  background-size: cover, 800px;
  color: var(--cream);
  padding: 70px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--orange-soft);
  margin-bottom: 12px;
}
.footer-brand p {
  color: rgba(250, 243, 232, .75);
  margin: 0;
  font-size: .95rem;
}

.footer-links h5 {
  font-family: var(--font-display);
  color: var(--orange-soft);
  font-size: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul {
  list-style: none;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(250, 243, 232, .75);
  font-size: .95rem;
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--orange-soft); }

.footer-bottom {
  border-top: 1px solid rgba(250, 243, 232, .12);
  padding: 24px 0;
  text-align: center;
  font-size: .85rem;
  color: rgba(250, 243, 232, .5);
}
.footer-bottom p { margin: 0 0 6px; color: inherit; }
.footer-bottom p:last-child { margin-bottom: 0; }
.footer-credits {
  font-size: .78rem;
  font-style: italic;
  opacity: .8;
}

/* ==========================================================
   Animations d'apparition
   ========================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 960px) {
  .section { padding: 80px 0; }

  .two-cols,
  .market-flex {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .wood-frame { height: 420px; max-width: 480px; margin: 0 auto; }
  .market-visual { order: -1; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .main-nav { position: relative; }
  .nav-toggle { display: flex; }
  .main-nav ul {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    background: rgba(58, 36, 24, .98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-radius: var(--radius);
    min-width: 220px;
    box-shadow: var(--shadow-deep);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
  }
  .main-nav.open ul {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav li {
    border-bottom: 1px solid rgba(250, 243, 232, .08);
  }
  .main-nav li:last-child { border-bottom: none; }
  .main-nav a {
    display: block;
    padding: 14px 24px;
  }

  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }

  .product-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }

  .section { padding: 70px 0; }
  .section-header { margin-bottom: 44px; }

  .market-card { width: 240px; height: 280px; }
}

/* Préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
