/* ============================================================
   PATTES & PRESTIGE — style.css (compiled from style.scss)
   Aesthetic: Liquid Glass + Floral Warmth
   ============================================================ */

:root {
  --beige: #f5efe6;
  --beige-warm: #ede3d5;
  --beige-mid: #f0e9df;
  --text: #3a2f27;
  --text-mid: #5a4a3a;
  --text-light: #8a7a6a;
  --rose: #e8a4b8;
  --rose-light: #f5d0dc;
  --vert: #9abb9a;
  --vert-light: #c8dfc8;
  --lavande: #c4b5d4;
  --peche: #f0c4a0;
  --jaune: #e8d48a;
  --corail: #e88a7a;
  --glass-bg: rgba(255, 252, 248, 0.45);
  --glass-bg-2: rgba(255, 252, 248, 0.62);
  --glass-border: rgba(255, 255, 255, 0.72);
  --glass-border2: rgba(255, 255, 255, 0.45);
  --glass-shadow: rgba(160, 130, 100, 0.12);
  --glass-shadow2: rgba(160, 130, 100, 0.22);
  --blur: blur(22px);
  --blur-sm: blur(12px);
  --nav-h: 80px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background-color: var(--beige);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(232, 164, 184, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(196, 181, 212, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 40%, rgba(154, 187, 154, 0.10) 0%, transparent 50%);
  background-attachment: fixed;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
em { font-style: italic; }

/* ── GLASS SYSTEM ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 32px var(--glass-shadow),
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(255,255,255,0.3);
}

.glass-btn {
  background: var(--glass-bg-2);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 16px var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.glass-btn:hover {
  background: rgba(255, 252, 248, 0.75);
  box-shadow: 0 8px 28px var(--glass-shadow2), inset 0 1px 0 rgba(255,255,255,1);
  transform: translateY(-2px);
}

.glass-nav {
  background: rgba(245, 239, 230, 0.75);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 2px 20px var(--glass-shadow);
}

.glass-input {
  background: var(--glass-bg);
  backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 2px 8px rgba(160,130,100,0.06);
  transition: all 0.2s var(--ease);
}

.glass-input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232,164,184,0.2), inset 0 2px 8px rgba(160,130,100,0.06);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  border: 1px solid rgba(58,47,39,0.2);
  cursor: pointer;
  background: transparent;
  transition: all 0.25s var(--ease);
}

.btn-secondary:hover { border-color: var(--rose); color: var(--text); transform: translateY(-1px); }
.btn-secondary.sm { padding: 10px 20px; font-size: 0.82rem; }

.btn-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--glass-border2);
  background: var(--glass-bg);
  backdrop-filter: var(--blur-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-mid);
  transition: all 0.2s var(--ease);
}

.btn-icon:hover { background: rgba(255,255,255,0.7); color: var(--text); transform: scale(1.05); }

/* ── SECTION HELPERS ── */
.section-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 6px 16px;
  border: 1px solid rgba(58,47,39,0.15);
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-title { margin-bottom: 1rem; }
.section-title em { color: var(--text-light); }
.section-sub { color: var(--text-light); font-size: 1rem; line-height: 1.7; }

/* ── FLOATING FLOWERS ── */
.flowers-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.flower {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0.18;
  animation: floatFlower linear infinite;
  filter: blur(0.5px);
}

@keyframes floatFlower {
  0%   { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  5%   { opacity: 0.18; }
  95%  { opacity: 0.18; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.f1  { left: 5%;  font-size: 1.4rem; animation-duration: 18s; animation-delay: 0s;   }
.f2  { left: 15%; font-size: 1.2rem; animation-duration: 22s; animation-delay: 3s;   }
.f3  { left: 28%; font-size: 1.6rem; animation-duration: 17s; animation-delay: 7s;   }
.f4  { left: 40%; font-size: 1.3rem; animation-duration: 24s; animation-delay: 1s;   }
.f5  { left: 55%; font-size: 1.0rem; animation-duration: 20s; animation-delay: 5s;   }
.f6  { left: 63%; font-size: 1.5rem; animation-duration: 19s; animation-delay: 9s;   }
.f7  { left: 72%; font-size: 1.2rem; animation-duration: 23s; animation-delay: 2s;   }
.f8  { left: 82%; font-size: 1.4rem; animation-duration: 16s; animation-delay: 11s;  }
.f9  { left: 91%; font-size: 1.1rem; animation-duration: 21s; animation-delay: 4s;   }
.f10 { left: 48%; font-size: 1.7rem; animation-duration: 25s; animation-delay: 14s;  }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  transition: all 0.3s var(--ease);
}

.nav.scrolled { height: 66px; box-shadow: 0 4px 30px rgba(160,130,100,0.18); }
.nav__logo { display: flex; align-items: center; gap: 12px; }

.nav__paw { font-size: 1.6rem; animation: pawBounce 3s ease-in-out infinite; }

@keyframes pawBounce {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50%       { transform: rotate(5deg) scale(1.08); }
}

.nav__brand { display: flex; flex-direction: column; gap: 1px; }

.nav__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}

.nav__name em { font-style: italic; color: var(--rose); }

.nav__tagline {
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  transition: color 0.2s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.btn-cart {
  position: relative;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text);
  cursor: pointer;
}

.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--rose);
  color: white;
  font-size: 0.65rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-left: 8vw;
  padding-right: 6vw;
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 100vw;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 80px 6vw 3rem !important;
    gap: 2rem !important;
  }
  .hero__visual { display: none !important; }
}

.hero__content { animation: fadeInUp 0.9s var(--ease) both; }

.hero__season-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  padding: 6px 16px;
  background: rgba(232,164,184,0.12);
  border: 1px solid rgba(232,164,184,0.3);
  border-radius: 50px;
  margin-bottom: 1.8rem;
}

.hero__title { margin-bottom: 1.5rem; color: var(--text); }

.hero__title em {
  font-style: italic;
  color: var(--text-light);
  position: relative;
  display: inline-block;
}

.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--rose), var(--lavande));
  border-radius: 2px;
}

.hero__sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero__visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.9s 0.2s var(--ease) both;
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,164,184,0.25);
  pointer-events: none;
}

.hero__ring--outer {
  width: 460px; height: 460px;
  animation: rotateSlow 30s linear infinite;
  background: radial-gradient(circle, rgba(232,164,184,0.04) 0%, transparent 70%);
}

.hero__ring--mid {
  width: 340px; height: 340px;
  border-color: rgba(196,181,212,0.3);
  animation: rotateSlow 20s linear infinite reverse;
}

@keyframes rotateSlow { to { transform: rotate(360deg); } }

.hero__card {
  position: relative;
  z-index: 3;
  padding: 2rem;
  width: 260px;
  text-align: center;
  animation: floatCard 4s ease-in-out infinite;
}

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

.hero__animal { font-size: 4.5rem; margin-bottom: 0.5rem; }
.hero__flowers-deco { font-size: 1.3rem; letter-spacing: 4px; margin-bottom: 0.8rem; }

.hero__card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text);
}

.hero__card-text em { color: var(--text-light); font-style: italic; }

.hero__card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--rose);
  color: white;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.hero__floating-card {
  position: absolute;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  z-index: 4;
}

.hero__floating-card span:first-child { font-size: 2rem; }

.hero__floating-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--text);
}

.hero__floating-card .price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.fc--1 { top: 40px; left: -20px; animation: floatCard 5s 1s ease-in-out infinite; }
.fc--2 { bottom: 40px; right: -20px; animation: floatCard 5s 2.5s ease-in-out infinite; }

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 8vw;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero__scroll-line {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--text-light), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, var(--rose), transparent);
  animation: slideRight 2s ease-in-out infinite;
}

@keyframes slideRight {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ── COLLECTION PARADE ── */
.collection-parade {
  padding: 8rem 6vw;
  position: relative;
  z-index: 1;
}

.season-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  width: fit-content;
  margin: 0 auto 4rem;
  border-radius: 50px;
}

.season-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border: none;
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.season-tab .season-icon { font-size: 1.1rem; }
.season-tab:hover { color: var(--text); }

.season-tab.active {
  background: rgba(255,255,255,0.7);
  color: var(--text);
  box-shadow: 0 4px 16px var(--glass-shadow2), inset 0 1px 0 rgba(255,255,255,0.9);
}

.parade-container { overflow: hidden; position: relative; }
.parade-stage { position: relative; }

.parade-season { display: none; animation: fadeInUp 0.5s var(--ease) both; }
.parade-season.active { display: block; }

.parade-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.parade-season-info { max-width: 500px; }

.parade-season-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.parade-season-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin-bottom: 0.8rem;
}

.parade-season-title em { color: var(--text-light); }

.parade-season-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.parade-colors { display: flex; gap: 10px; }

.color-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
  cursor: default;
}

.color-dot:hover { transform: scale(1.3); }

.parade-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1.5rem;
  scrollbar-width: none;
}

.parade-track::-webkit-scrollbar { display: none; }

.parade-item {
  flex: 0 0 260px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.parade-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(160,130,100,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
}

.parade-item__img { height: 180px; overflow: hidden; }

.item-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 3.5rem;
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.item-flowers { font-size: 1.3rem; letter-spacing: 4px; }

.parade-item__info { padding: 1.2rem 1.4rem; }

.item-tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
  display: block;
}

.parade-item__info h4 { font-size: 1.1rem; margin-bottom: 0.3rem; color: var(--text); }
.parade-item__info p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; margin-bottom: 1rem; }

.item-footer { display: flex; align-items: center; justify-content: space-between; }

.item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
}

.btn-add {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  cursor: pointer;
  border: none;
  font-family: 'Jost', sans-serif;
}

.parade-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.parade-prev, .parade-next {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.25s var(--ease);
}

.parade-prev:hover, .parade-next:hover { transform: scale(1.1); }

.collection-cta { text-align: center; margin-top: 4rem; }

/* ── CATEGORIES ── */
.categories {
  padding: 8rem 6vw;
  position: relative;
  z-index: 1;
}

.categories::before {
  content: var(--season-separator, '🌸 ✦ 🌿 ✦ 🌷 ✦ 🌼 ✦ 🌸');
  display: block;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 8px;
  opacity: 0.35;
  margin-bottom: 5rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cat-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px var(--glass-shadow2), inset 0 1px 0 rgba(255,255,255,0.95);
}

.cat-card:hover .cat-card__deco { opacity: 0.5; transform: scale(1.2) rotate(10deg); }

.cat-card__icon { font-size: 2.2rem; margin-bottom: 0.3rem; }

.cat-card__content h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.cat-card__content p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 0.8rem; }

.cat-link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
  transition: color 0.2s;
}

.cat-card__deco {
  position: absolute;
  bottom: 12px; right: 16px;
  font-size: 1.4rem;
  letter-spacing: 4px;
  opacity: 0.25;
  transition: all 0.4s var(--ease);
}

.cat--artisanat { border-top: 2px solid rgba(232,164,184,0.5); }
.cat--friandises { border-top: 2px solid rgba(154,187,154,0.5); }
.cat--jouets     { border-top: 2px solid rgba(240,196,160,0.5); }
.cat--soin       { border-top: 2px solid rgba(196,181,212,0.5); }
.cat--formations { border-top: 2px solid rgba(232,212,138,0.5); }
.cat--habitat    { border-top: 2px solid rgba(232,164,184,0.4); }

/* ── ARTISANAT ── */
.artisanat { padding: 8rem 6vw; position: relative; z-index: 1; }

.artisanat__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.artisanat__visual { position: relative; height: 500px; }
.artisanat__img { width: 100%; height: 100%; overflow: hidden; }

.artisanat__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(232,164,184,0.25), rgba(196,181,212,0.2), rgba(154,187,154,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: var(--radius-lg);
  flex-direction: column;
  gap: 1.5rem;
}

.artisanat__big-emoji { font-size: 6rem; }

.artisanat__flowers-scatter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 2rem;
}

.artisanat__flowers-scatter span { animation: floatCard 3s ease-in-out infinite; }
.artisanat__flowers-scatter span:nth-child(1) { animation-delay: 0s; }
.artisanat__flowers-scatter span:nth-child(2) { animation-delay: 0.6s; }
.artisanat__flowers-scatter span:nth-child(3) { animation-delay: 1.2s; }
.artisanat__flowers-scatter span:nth-child(4) { animation-delay: 1.8s; }
.artisanat__flowers-scatter span:nth-child(5) { animation-delay: 2.4s; }

.artisanat__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  padding: 1.2rem 1.5rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
}

.artisanat__badge span { font-size: 1.5rem; display: block; margin-bottom: 0.3rem; }
.artisanat__badge p { font-size: 0.95rem; line-height: 1.4; }

.artisanat__content .section-title { margin-bottom: 1.5rem; }
.artisanat__content > p { color: var(--text-light); line-height: 1.8; margin-bottom: 2rem; }

.artisanat__values {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.artisanat__values li { display: flex; gap: 1rem; align-items: flex-start; }
.value-icon { font-size: 1.5rem; flex-shrink: 0; }

.artisanat__values strong {
  display: block;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.artisanat__values p { font-size: 0.85rem; color: var(--text-light); }

/* ── FORMATIONS ── */
.formations { padding: 8rem 6vw; position: relative; z-index: 1; }

.formations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.formation-card {
  padding: 2rem;
  transition: all 0.3s var(--ease);
}

.formation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--glass-shadow2), inset 0 1px 0 rgba(255,255,255,0.95);
}

.formation-card h3 { font-size: 1.25rem; margin: 0.8rem 0 0.6rem; }
.formation-card > p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.5rem; }

.featured-formation {
  background: rgba(232,164,184,0.12);
  border-color: rgba(232,164,184,0.4);
  transform: scale(1.02);
}

.featured-formation:hover { transform: scale(1.02) translateY(-6px); }

.formation-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.formation-icon { font-size: 2rem; }

.formation-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 4px 10px;
  border: 1px solid rgba(58,47,39,0.15);
  border-radius: 50px;
}

.formation-footer { display: flex; align-items: center; justify-content: space-between; }

.formation-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
}

/* ── TESTIMONIALS ── */
.testimonials { padding: 8rem 6vw; position: relative; z-index: 1; }

.testimonials::before {
  content: '✦ ✦ ✦';
  display: block;
  text-align: center;
  color: var(--rose);
  font-size: 1.2rem;
  letter-spacing: 12px;
  margin-bottom: 4rem;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card { padding: 2rem; transition: all 0.3s var(--ease); }
.testimonial-card:hover { transform: translateY(-4px); }

.testi-stars { color: var(--jaune); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 1rem; }

.testimonial-card > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { font-size: 2rem; }
.testi-author strong { display: block; font-weight: 500; font-family: 'Cormorant Garamond', serif; font-size: 1rem; }
.testi-author span { font-size: 0.78rem; color: var(--text-light); }

/* ── NEWSLETTER ── */
.newsletter { padding: 6rem 6vw; position: relative; z-index: 1; }

.newsletter__glass {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem;
  text-align: center;
}

.newsletter__flowers { font-size: 1.6rem; letter-spacing: 12px; margin-bottom: 1.5rem; opacity: 0.7; }

.newsletter__glass h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 1rem 0; }
.newsletter__glass h2 em { color: var(--text-light); }
.newsletter__glass > p { color: var(--text-light); margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.7; }

.newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 1rem;
}

.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
}

.newsletter__input::placeholder { color: var(--text-light); }
.newsletter__small { font-size: 0.75rem; color: var(--text-light); }

/* ── FOOTER ── */
.footer {
  background: rgba(237, 227, 213, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 6vw 2rem;
  position: relative;
  z-index: 1;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__brand { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__brand p { font-size: 0.85rem; color: var(--text-light); }
.footer__paw { font-size: 2rem; }

.footer__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.footer__name em { font-style: italic; color: var(--rose); }

.footer__socials { display: flex; gap: 12px; margin-top: 0.5rem; }
.footer__socials a { font-size: 1.3rem; transition: transform 0.2s; }
.footer__socials a:hover { transform: scale(1.2); }

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer__col li + li { margin-top: 0.5rem; }
.footer__col a { font-size: 0.85rem; color: var(--text-light); transition: color 0.2s; }
.footer__col a:hover { color: var(--text); }

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .footer__links {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }
  .footer__bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.8rem !important;
  }
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(58,47,39,0.1);
}

.footer__bottom p { font-size: 0.8rem; color: var(--text-light); }

.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.78rem; color: var(--text-light); }
.footer__legal a:hover { color: var(--text); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stagger > *.visible { opacity: 1; transform: translateY(0); }

/* ── CARTES HERO CLIQUABLES ── */
.hero__card,
.hero__floating-card {
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.hero__card:hover,
.hero__floating-card:hover {
  box-shadow: 0 16px 40px rgba(160,130,100,0.22), inset 0 1px 0 rgba(255,255,255,0.95);
  transform: translateY(-4px) !important;
}
