/* ================================================================
   PÂTISSERIE MULTICULTURELLE — Styles partagés
   Palette : Lavande & Miel — violet doux / or / crème lilas
   Fonts   : Cormorant Garamond (display) + DM Sans (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── VARIABLES ── */
:root {
  --cream:           #FAF7FF;
  --cream-2:         #F0E8FF;
  --rose-pale:       #F5EFFF;
  --chocolate:       #1E1228;
  --chocolate-mid:   #3D2260;
  --bordeaux:        #8B5AB8;
  --bordeaux-light:  #A97DD4;
  --caramel:         #D4A84B;
  --caramel-light:   #F0DFA8;
  --caramel-dark:    #A87E2A;
  --text:            #1E1228;
  --text-mid:        #5A3A7A;
  --text-muted:      #9A80BA;
  --border:          #E0D0F0;
  --white:           #FFFFFF;

  --shadow-xs:  0 1px 4px rgba(30,18,40,.05);
  --shadow-sm:  0 2px 12px rgba(30,18,40,.08);
  --shadow:     0 4px 24px rgba(30,18,40,.10);
  --shadow-lg:  0 12px 48px rgba(30,18,40,.14);
  --shadow-xl:  0 24px 80px rgba(30,18,40,.18);

  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h:    72px;
  --section-py: 96px;
  --container:  1280px;
}

/* ── RESET ── */
*, *::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);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHIE ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
  color: var(--chocolate);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-mid); max-width: 65ch; line-height: 1.7; }

/* ── UTILITAIRES ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 36px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }
.section    { padding: var(--section-py) 0; }
.section-sm { padding: 64px 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 12px;
  display: block;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .10s; }
.reveal-d2 { transition-delay: .20s; }
.reveal-d3 { transition-delay: .30s; }
.reveal-d4 { transition-delay: .40s; }
.reveal-d5 { transition-delay: .50s; }

/* ── BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--bordeaux);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(139,26,26,.30);
}
.btn-primary:hover {
  background: #721414;
  box-shadow: 0 6px 28px rgba(139,26,26,.40);
  transform: translateY(-1px);
}

.btn-caramel {
  background: var(--caramel);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(181,131,90,.30);
}
.btn-caramel:hover {
  background: var(--caramel-dark);
  box-shadow: 0 6px 24px rgba(181,131,90,.40);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--chocolate);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--caramel);
  color: var(--caramel-dark);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

/* ── NAVIGATION ── */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250,247,242,.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1.25;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-logo-top {
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--text-muted);
}
.nav-logo-bottom {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .01em;
  line-height: 1;
}
/* Lettres multicolores — identité multiculturelle */
.nav-logo-bottom .l1 { color: #8B5AB8; } /* lavande      */
.nav-logo-bottom .l2 { color: #D4A84B; } /* or/miel      */
.nav-logo-bottom .l3 { color: #D4648A; } /* rose bonbon  */
.nav-logo-bottom .l4 { color: #5AB8A0; } /* vert menthe  */
.nav-logo em { color: var(--bordeaux); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--bordeaux);
  transition: width .3s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover, .nav-links a.active { color: var(--chocolate); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { font-weight: 600; }

.nav-cta {
  background: var(--bordeaux) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .82rem !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(139,26,26,.25);
  transition: background .2s, transform .2s, box-shadow .2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: #721414 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(139,26,26,.38) !important;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.nav-burger:hover { background: var(--cream-2); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--chocolate);
  transform-origin: center;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu mobile */
.nav-mobile {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--cream);
  z-index: 99;
  padding: 32px 24px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  display: block;
  padding: 15px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}
.nav-mobile a:hover { color: var(--bordeaux); padding-left: 8px; }
.nav-mobile a.active { color: var(--bordeaux); font-weight: 600; }
.nav-mobile-cta {
  display: block;
  margin-top: 24px;
  background: var(--bordeaux) !important;
  color: var(--white) !important;
  text-align: center;
  padding: 16px !important;
  border-radius: 100px;
  font-weight: 600 !important;
  border-bottom: none !important;
}
.nav-mobile-cta:hover { background: #721414 !important; padding-left: 0 !important; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ── HERO (accueil) ── */
.hero {
  min-height: calc(100dvh - var(--nav-h));
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  overflow: hidden;
}
.hero-content {
  padding: 72px 0 72px 48px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--caramel-light);
  color: var(--caramel-dark);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--caramel);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.75); }
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em { color: var(--bordeaux); font-style: italic; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1;
}
.hero-stat-label { font-size: .75rem; color: var(--text-muted); margin-top: 4px; }

.hero-img-wrap {
  position: relative;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 22%);
  z-index: 1;
  pointer-events: none;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-float {
  position: absolute;
  bottom: 52px;
  left: 48px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 190px;
  animation: float 4.5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
.hero-float-icon {
  width: 36px;
  height: 36px;
  background: var(--caramel-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.hero-float-icon svg { width: 18px; height: 18px; color: var(--caramel-dark); }
.hero-float-label  { font-size: .72rem; font-weight: 600; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; }
.hero-float-value  { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--chocolate); }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 60px 20px 48px; order: 2; }
  .hero-img-wrap { min-height: 340px; order: 1; }
  .hero-img-wrap::before {
    background: linear-gradient(to bottom, transparent 55%, var(--cream) 100%);
  }
  .hero-float { bottom: 20px; left: 20px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── PAGE HERO (pages intérieures) ── */
.page-hero {
  background: var(--chocolate);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(181,131,90,.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 12px;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 50ch; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb a:hover { color: var(--caramel); }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 48px; }
.section-header.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
@media (max-width: 600px) {
  .section-header.split { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ── CATÉGORIES (grid asymétrique) ── */
.categories-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}
.cat-card:nth-child(1) { grid-column: 1; grid-row: 1; aspect-ratio: 16/9; }
.cat-card:nth-child(2) { grid-column: 2; grid-row: 1 / 3; min-height: 460px; }
.cat-card:nth-child(3) { grid-column: 1; grid-row: 2; aspect-ratio: 21/9; }

.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.cat-card:hover img { transform: scale(1.05); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,18,40,.80) 0%, rgba(30,18,40,.10) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
  transition: background .3s;
}
.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(30,18,40,.88) 0%, rgba(30,18,40,.20) 55%, transparent 100%);
}
.cat-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.cat-count { font-size: .78rem; color: rgba(255,255,255,.65); margin-bottom: 10px; }
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--caramel-light);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: gap .2s;
}
.cat-card:hover .cat-link { gap: 10px; }
.cat-link svg { width: 14px; height: 14px; }

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .cat-card:nth-child(n) {
    grid-column: 1; grid-row: auto;
    aspect-ratio: 16/9;
    min-height: unset !important;
  }
}

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px)  { .products-grid { grid-template-columns: 1fr; gap:16px; } }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s cubic-bezier(.16,1,.3,1);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Spotlight border hover */
.product-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(280px circle at var(--mx,50%) var(--my,50%), rgba(181,131,90,.22), transparent 65%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: 2;
}
.product-card:hover::after { opacity: 1; }

.product-card[data-hidden="true"] { display: none; }

.product-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-2);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 1;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(6px);
  color: var(--caramel-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(181,131,90,.18);
}

.product-body { padding: 20px; }
.product-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 6px;
  line-height: 1.2;
}
.product-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--chocolate);
}
.product-price sub {
  font-size: .82rem;
  font-weight: 400;
  color: var(--text-muted);
  vertical-align: baseline;
}
.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  background: var(--caramel-light);
  color: var(--caramel-dark);
  transition: all .2s cubic-bezier(.16,1,.3,1);
  border: 1px solid transparent;
}
.product-btn:hover { background: var(--caramel); color: var(--white); }
.product-btn svg { width: 13px; height: 13px; }

/* Image placeholder (avant les vraies photos) */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--caramel-light) 0%, var(--cream-2) 100%);
}
.img-placeholder svg { width: 52px; height: 52px; opacity: .25; color: var(--caramel-dark); }
.img-placeholder span { font-size: .72rem; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; }

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all .2s cubic-bezier(.16,1,.3,1);
}
.filter-btn:hover { border-color: var(--caramel); color: var(--caramel-dark); }
.filter-btn.active {
  background: var(--bordeaux);
  color: var(--white);
  border-color: var(--bordeaux);
  box-shadow: 0 4px 14px rgba(139,26,26,.25);
}

/* ── SECTION LIVRAISON ── */
.delivery-section {
  background: var(--chocolate);
  padding: 80px 0;
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 48px;
}
@media (max-width: 768px) { .delivery-grid { grid-template-columns: 1fr; gap: 32px; } }

.delivery-item { display: flex; flex-direction: column; gap: 14px; }
.delivery-icon {
  width: 52px; height: 52px;
  background: rgba(181,131,90,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(181,131,90,.18);
}
.delivery-icon svg { width: 24px; height: 24px; color: var(--caramel-light); }
.delivery-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--white); }
.delivery-desc { font-size: .87rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── SECTION HORAIRES ── */
.hours-section { background: var(--rose-pale); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 768px) { .hours-grid { grid-template-columns: 1fr; gap: 40px; } }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 500; color: var(--text); }
.hours-time { color: var(--text-mid); }

.contact-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  margin-bottom: 14px;
  transition: box-shadow .2s, transform .2s;
}
.contact-tile:last-child { margin-bottom: 0; }
.contact-tile:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.contact-tile-icon {
  width: 42px; height: 42px;
  background: var(--caramel-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-tile-icon svg { width: 18px; height: 18px; color: var(--caramel-dark); }
.contact-tile-label { font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-tile-value { font-size: .9rem; font-weight: 500; color: var(--text); }
.contact-tile a { color: var(--text); transition: color .2s; }
.contact-tile a:hover { color: var(--bordeaux); }

/* ── PRIX ── */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-card-header {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--cream-2);
  display: flex;
  align-items: center;
  gap: 14px;
}
.price-card-icon {
  width: 44px; height: 44px;
  background: var(--caramel-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.price-card-icon svg { width: 20px; height: 20px; color: var(--caramel-dark); }
.price-card-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--chocolate); }
.price-card-sub  { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }

.price-list { padding: 6px 0; }
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 28px;
  border-bottom: 1px solid var(--cream-2);
  transition: background .15s;
}
.price-item:last-child { border-bottom: none; }
.price-item:hover { background: var(--cream); }
.price-item-name { font-size: .9rem; font-weight: 500; color: var(--text); }
.price-item-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--bordeaux); white-space: nowrap; }

/* ── TABLE SUCRÉE ── */
.sucree-hero {
  background: linear-gradient(135deg, var(--chocolate) 0%, #4A1E0E 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.sucree-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(181,131,90,.15) 0%, transparent 60%);
  pointer-events: none;
}
.sucree-hero-content { position: relative; z-index: 1; }
.sucree-hero h1 { color: var(--white); margin-bottom: 18px; }
.sucree-hero p { color: rgba(255,255,255,.7); max-width: 50ch; margin-bottom: 36px; }

.sucree-features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 900px) { .sucree-features { grid-template-columns: 1fr; } }
@media (min-width: 581px) and (max-width: 900px) { .sucree-features { grid-template-columns: 1fr 1fr; } }

.sucree-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.sucree-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sucree-feature-icon {
  width: 64px; height: 64px;
  background: var(--caramel-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.sucree-feature-icon svg { width: 28px; height: 28px; color: var(--caramel-dark); }
.sucree-feature-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--chocolate); margin-bottom: 10px; }
.sucree-feature-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

.sucree-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}
.sucree-gallery-item { border-radius: var(--radius-lg); overflow: hidden; }
.sucree-gallery-item:first-child { grid-row: 1 / 3; }
.sucree-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.sucree-gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .sucree-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .sucree-gallery-item:first-child { grid-row: auto; grid-column: 1 / -1; }
  .sucree-gallery-item { aspect-ratio: 16/10; }
}

/* ── FORMULAIRE CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 48px; } }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow);
}
@media (max-width: 480px) { .contact-form { padding: 28px 20px; } }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.form-label { font-size: .8rem; font-weight: 600; color: var(--text); letter-spacing: .02em; }
.form-label .req { color: var(--bordeaux); margin-left: 2px; }
.form-helper { font-size: .73rem; color: var(--text-muted); margin-top: -2px; }

.form-input, .form-select, .form-textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(139,26,26,.10);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239A7A65' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ── BANNER / NOTICE ── */
.notice {
  background: var(--caramel-light);
  border-left: 3px solid var(--caramel);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .85rem;
  color: var(--chocolate-mid);
  line-height: 1.55;
  margin-bottom: 28px;
}

/* ── INFO CARDS (génériques) ── */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
@media (max-width: 900px) { .info-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .info-cards-grid { grid-template-columns: 1fr; } }

.info-card {
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform .3s, box-shadow .3s;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.info-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--caramel-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.info-card-icon svg { width: 22px; height: 22px; color: var(--caramel-dark); }
.info-card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--chocolate); margin-bottom: 8px; }
.info-card-text { font-size: .84rem; color: var(--text-muted); line-height: 1.6; }

/* ── FOOTER ── */
footer.site-footer {
  background: #EDE0FF;
  color: var(--chocolate);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(139,90,184,.15);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 580px)  { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--chocolate); margin-bottom: 10px; line-height: 1.2; }
.footer-brand em { color: var(--bordeaux); font-style: italic; }
.footer-tagline { font-size: .83rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 22px; max-width: 28ch; }

.footer-col-title { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bordeaux); margin-bottom: 18px; opacity: .7; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: .86rem; color: var(--text-mid); transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--bordeaux); padding-left: 4px; }

.footer-contact-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-line:last-child { margin-bottom: 0; }
.footer-contact-line svg { width: 15px; height: 15px; color: var(--caramel); flex-shrink: 0; margin-top: 3px; }
.footer-contact-line span { font-size: .83rem; color: var(--text-mid); line-height: 1.55; }

.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: .75rem; color: var(--text-muted); }
.footer-copy a { color: var(--bordeaux); }
.footer-copy a:hover { color: var(--caramel); }
@media (max-width: 580px) { .footer-bottom { flex-direction: column; text-align: center; } }

/* ── ANIMATIONS DIVERSES ── */
@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position:  200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--cream-2) 25%, var(--border) 50%, var(--cream-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ── TITRES MULTICOLORES ── */
.mc-title {
  /* Couleurs foncées pour lisibilité sur fond pastel */
  background: linear-gradient(90deg, #5C1E90 0%, #9B6A00 26%, #A02050 52%, #0A7060 78%, #5C1E90 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Variante sur fond sombre */
.mc-title-light {
  background: linear-gradient(90deg, #8B5AB8 0%, #D4A84B 28%, #D4648A 56%, #5AB8A0 84%, #8B5AB8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
