/* ══════════════════════════════════════════
   NIMARA · main.css
   Brand: #5B2C8D violet · #a78bfa lavender
   Fonts: DM Sans (body) · Playfair Display (headings)
   ══════════════════════════════════════════ */

/* ── 1. CUSTOM PROPERTIES ─────────────────── */
:root {
  --violet:       #5B2C8D;
  --violet-dark:  #3d1d65;
  --violet-mid:   #7c3aab;
  --lavender:     #a78bfa;
  --lavender-lt:  #c4b5fd;
  --cream:        #faf8f5;
  --warm-white:   #fff9f4;
  --white:        #ffffff;
  --dark:         #1a0d30;
  --dark2:        #2d1650;
  --gray-900:     #111827;
  --gray-700:     #374151;
  --gray-500:     #6b7280;
  --gray-300:     #d1d5db;
  --gray-100:     #f3f4f6;
  --green-wa:     #25D366;
  --green-wa-d:   #1da851;

  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --radius-full:  9999px;

  --shadow-sm:    0 1px 3px rgba(91,44,141,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:       0 4px 16px rgba(91,44,141,.12), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:    0 12px 40px rgba(91,44,141,.18), 0 4px 12px rgba(0,0,0,.08);
  --shadow-fab:   0 8px 24px rgba(37,211,102,.35);

  --transition:   0.22s cubic-bezier(.22,1,.36,1);
  --container-w:  1200px;
  --header-h:     72px;
}

/* ── 2. RESET & BASE ──────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
address { font-style: normal; }
:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 3. TYPOGRAPHY ────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { max-width: 68ch; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 0.75rem;
}

/* ── 4. LAYOUT HELPERS ────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--sm { padding-block: clamp(2rem, 5vw, 3.5rem); }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--cream { background: var(--cream); }
.section--violet { background: var(--violet); color: var(--white); }
.section--violet h2, .section--violet h3 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-header p { margin-inline: auto; color: var(--gray-500); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 1.25rem; }

/* ── 5. BUTTONS ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(91,44,141,.35);
}
.btn-primary:hover { background: var(--violet-mid); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(91,44,141,.4); }

.btn-outline {
  background: transparent;
  color: var(--violet);
  border: 2px solid var(--violet);
}
.btn-outline:hover { background: var(--violet); color: var(--white); }

.btn-light {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-light:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.5); }

.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { background: var(--green-wa-d); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.4); }

/* ── 6. HEADER ────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(250,248,245,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(91,44,141,.08);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  background: rgba(250,248,245,.97);
  box-shadow: var(--shadow-sm);
}
.site-header--dark {
  background: rgba(26,13,48,.9);
  border-bottom-color: rgba(167,139,250,.12);
}
.site-header--dark .nav-link { color: rgba(255,255,255,.7); }
.site-header--dark .nav-link:hover,
.site-header--dark .nav-link.is-active { color: var(--lavender-lt); }
.site-header--dark .logo-name { color: var(--white); }
.site-header--dark .logo-tagline { color: rgba(255,255,255,.5); }

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--violet);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--dark); }
.logo-tagline { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); }

.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--violet); background: rgba(91,44,141,.06); }
.nav-link.is-active { color: var(--violet); font-weight: 600; }

.header-cta { margin-left: 0.75rem; padding: 0.55rem 1.1rem; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: auto;
  padding: 6px;
}
.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .burger-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 7. HERO (landing) ────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--violet) 55%, var(--violet-mid) 100%);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(167,139,250,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(91,44,141,.4) 0%, transparent 50%);
  pointer-events: none;
}

/* Grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-content .eyebrow { color: var(--lavender-lt); }
.hero-title { color: var(--white); margin-bottom: 1.25rem; }
.hero-title em { font-style: italic; color: var(--lavender-lt); }
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 52ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── 8. PAGE HERO ─────────────────────────── */
.page-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--violet-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(167,139,250,.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero__subtitle { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 52ch; }

/* ── 9. CARDS ─────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(91,44,141,.07);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--violet-dark), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.card-body { padding: 1.25rem; }
.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  background: rgba(91,44,141,.08);
  color: var(--violet);
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}
.card-title { margin-bottom: 0.4rem; font-size: 1.1rem; }
.card-desc { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.card-price { font-size: 1rem; font-weight: 700; color: var(--violet); }

/* ── 10. MENU / CARTE ─────────────────────── */
.menu-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-tab {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-300);
  color: var(--gray-500);
  background: var(--white);
  transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--violet); color: var(--violet); }
.filter-tab.is-active { background: var(--violet); border-color: var(--violet); color: var(--white); }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.lang-btn {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: all var(--transition);
}
.lang-btn.is-active { background: var(--violet); color: var(--white); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px,100%), 1fr)); gap: 1.25rem; }
.menu-section { margin-bottom: 3rem; }
.menu-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(91,44,141,.1);
}

.menu-card {
  background: var(--white);
  border: 1px solid rgba(91,44,141,.08);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.menu-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.menu-card.hidden { display: none; }

.menu-card__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; }
.menu-card__name { font-weight: 600; font-size: 0.95rem; color: var(--dark); }
.menu-card__price { font-weight: 700; font-size: 0.95rem; color: var(--violet); flex-shrink: 0; }
.menu-card__desc { font-size: 0.82rem; color: var(--gray-500); line-height: 1.5; }
.menu-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: 0.25rem; }
.menu-card__allergens { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.allergen-pill {
  font-size: 0.68rem;
  padding: 0.15rem 0.5rem;
  background: rgba(91,44,141,.06);
  color: var(--violet);
  border-radius: var(--radius-full);
  font-weight: 500;
}
.menu-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  background: var(--lavender);
  color: var(--violet-dark);
}
.menu-badge.signature { background: var(--violet); color: var(--white); }
.menu-badge.bestseller { background: #fef3c7; color: #92400e; }
.menu-badge.patisserie { background: #fce7f3; color: #9d174d; }
.menu-badge.nouveau { background: #d1fae5; color: #065f46; }
.menu-badge.chavannes { background: #ede9fe; color: var(--violet); }

/* ── 11. TEAM ─────────────────────────────── */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(91,44,141,.07);
}
.team-card__photo {
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, var(--violet-dark) 0%, var(--violet-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,.2);
  position: relative;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.team-card__body { padding: 1.5rem; }
.team-card__name { font-size: 1.3rem; margin-bottom: 0.25rem; }
.team-card__role {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 1rem;
}
.team-card__bio { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 1rem; }
.team-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--violet);
  padding-left: 1rem;
  border-left: 3px solid var(--lavender);
  margin-bottom: 1rem;
}
.team-card__specialties { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.specialty-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: rgba(91,44,141,.07);
  color: var(--violet);
  border-radius: var(--radius-full);
  font-weight: 500;
}

.team-profile { padding-top: calc(var(--header-h) + 2rem); }
.team-profile__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 3rem 4rem;
}
.team-profile__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--violet-dark), var(--violet-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(255,255,255,.15);
  position: relative;
}
.team-profile__photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* ── 12. CHAVANNES ────────────────────────── */
.chavannes-hero {
  background: linear-gradient(135deg, #0f0820 0%, #2e1065 50%, #4c1d95 100%);
}
.spice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 1rem; }
.spice-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(167,139,250,.12);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  color: var(--white);
  transition: background var(--transition), border-color var(--transition);
}
.spice-card:hover { background: rgba(167,139,250,.1); border-color: rgba(167,139,250,.3); }
.spice-card__icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.spice-card__name { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.25rem; }
.spice-card__desc { font-size: 0.75rem; color: rgba(255,255,255,.55); }

/* ── 13. WHATSAPP FAB ─────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.25rem;
  background: var(--green-wa);
  color: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-fab);
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}
.whatsapp-fab:hover {
  background: var(--green-wa-d);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(37,211,102,.45);
}
.whatsapp-fab:active { transform: scale(0.97); }

/* Pulse ring */
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--green-wa);
  animation: wa-pulse 2.5s ease-out infinite;
  opacity: 0;
}
@keyframes wa-pulse {
  0%  { transform: scale(1);   opacity: 0.6; }
  100%{ transform: scale(1.3); opacity: 0; }
}

/* ── 14. FOOTER ───────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-mark { width: 40px; height: 40px; font-size: 1.2rem; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.footer-logo .logo-name { color: var(--white); font-size: 1.2rem; }
.footer-tagline { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lavender); margin-bottom: 0.75rem; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--lavender); color: var(--lavender); background: rgba(167,139,250,.08); }

.footer-heading { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.footer-links li + li, .footer-hours li + li { margin-top: 0.5rem; }
.footer-links a { font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--lavender-lt); }
.footer-hours li { font-size: 0.88rem; }
.footer-address p { font-size: 0.88rem; line-height: 1.7; }
.footer-address p + p { margin-top: 0.5rem; }
.footer-address a { transition: color var(--transition); }
.footer-address a:hover { color: var(--lavender-lt); }
.footer-wa { margin-top: 1rem; font-size: 0.82rem; padding: 0.55rem 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: 1.25rem;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.8rem; }
.footer-love { color: rgba(255,255,255,.3); }

/* ── 15. FEATURES / VALUES ────────────────── */
.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(91,44,141,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.feature h3 { margin-bottom: 0.5rem; }
.feature p { font-size: 0.9rem; color: var(--gray-500); }

/* ── 16. CTA BANNER ───────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-mid) 100%);
  color: var(--white);
  text-align: center;
  padding-block: 4rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(167,139,250,.2) 0%, transparent 60%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.75); margin-inline: auto; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner .btn-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* ── 17. STATS ────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 1.5rem; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 2.5rem; color: var(--violet); font-weight: 500; line-height: 1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.82rem; color: var(--gray-500); font-weight: 500; letter-spacing: 0.04em; }

/* ── 18. TESTIMONIALS ─────────────────────── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(91,44,141,.07);
}
.testimonial__stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 0.75rem; }
.testimonial__text { font-size: 0.9rem; color: var(--gray-700); font-style: italic; margin-bottom: 1rem; line-height: 1.7; }
.testimonial__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial__name { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.testimonial__location { font-size: 0.75rem; color: var(--gray-500); }

/* ── 19. DÉLICES PAGE ─────────────────────── */
.delices-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(260px,100%),1fr)); gap: 1.5rem; }
.delice-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(175deg, var(--violet-dark), var(--violet));
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.delice-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.delice-card__emoji { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 5rem; opacity: .3; }
.delice-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 100%); }
.delice-card__name { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); margin-bottom: 0.25rem; }
.delice-card__desc { font-size: 0.8rem; color: rgba(255,255,255,.7); }

/* ── 20. UTILITY ──────────────────────────── */
.text-center { text-align: center; }
.text-violet { color: var(--violet); }
.text-lavender { color: var(--lavender); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }
.animate-fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.animate-fade-up.visible { opacity: 1; transform: none; }

/* ── 21. RESPONSIVE ───────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-profile__hero { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}

@media (max-width: 768px) {
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(250,248,245,.97);
    backdrop-filter: blur(20px);
    padding: 1.25rem;
    border-bottom: 1px solid rgba(91,44,141,.08);
    box-shadow: var(--shadow-lg);
    z-index: 890;
  }
  .site-nav.is-open .nav-list { flex-direction: column; gap: 0.25rem; }
  .site-nav.is-open .nav-link { padding: 0.75rem 1rem; font-size: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .menu-controls { flex-direction: column; align-items: flex-start; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .whatsapp-fab-label { display: none; }
  .whatsapp-fab { padding: 0.9rem; }
}

@media (max-width: 480px) {
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
}
