/* ═══════════════════════════════════════════════════════════════
   A Canti Sushi — Design Premium v2
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --bg:           #F7F3EE;
  --sage:         #AFC2B5;
  --sage-light:   #D4E0DA;
  --sage-pale:    #EEF4F1;
  --deep-green:   #3D5650;
  --deep-dark:    #2d4038;
  --bordeaux:     #8F2F3A;
  --ink:          #1D1D1D;
  --ink-60:       rgba(29,29,29,.6);
  --ink-30:       rgba(29,29,29,.3);
  --off-white:    #FCFAF7;
  --warm-gray:    #E8E0D6;

  --serif:  'Noto Serif JP', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;

  --ease-out-expo:  cubic-bezier(0.16,1,0.3,1);
  --ease-in-out:    cubic-bezier(0.76,0,0.24,1);
  --ease-premium:   cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { 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; }

/* ─── Texture papier ─────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: .5;
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container    { max-width: 1260px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 2rem; }

/* ─── Pétales cerisier ───────────────────────────────────────── */
.sakura-container { position: fixed; inset: 0; pointer-events: none; z-index: 1000; overflow: hidden; }
.sakura-petal {
  position: absolute; top: -30px;
  background: radial-gradient(ellipse at 40% 40%, #F9E0E8, #E8A0B8 60%, #D4799A);
  border-radius: 60% 0 60% 0;
  opacity: 0;
  animation: petalFall linear infinite;
}
@keyframes petalFall {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  5%   { opacity: .75; }
  95%  { opacity: .4; }
  100% { transform: translateY(110vh) translateX(var(--drift)) rotate(var(--spin)); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 130px;
  display: flex; align-items: center;
  padding: 0 2.5rem;
  transition: background .5s var(--ease-premium), box-shadow .5s var(--ease-premium);
}
.navbar.scrolled {
  background: rgba(252,250,247,.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(175,194,181,.3);
}
.navbar__inner {
  max-width: 1260px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar__logo {
  display: flex; align-items: center; gap: .75rem;
  transition: opacity .2s;
}
.navbar__logo:hover { opacity: .75; }
/* Logo image navbar */
.navbar__logo-img {
  height: 120px !important;
  max-height: 120px !important;
  max-width: 340px !important;
  width: auto !important;
  object-fit: contain !important;
  transition: filter .4s, opacity .4s;
}
@media (max-width: 1024px) {
  .navbar__logo-img { height: 100px !important; max-height: 100px !important; }
}
@media (max-width: 768px) {
  .navbar__logo-img { height: 80px !important; max-height: 80px !important; max-width: 240px !important; }
}

/* Sur fond sombre (hero) : le logo passe en blanc si fond sombre */
.navbar__logo-img--hero {
  filter: brightness(0) invert(1);
  opacity: .9;
}
/* Sur fond clair (scrolled) : logo en couleurs naturelles */
.navbar.scrolled .navbar__logo-img--hero {
  filter: none;
  opacity: 1;
}

.navbar__logo-name {
  font-family: var(--serif);
  font-size: .9375rem; font-weight: 600; letter-spacing: .06em;
  transition: color .4s;
}
.navbar__logo-sub {
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--bordeaux);
}
.navbar:not(.scrolled) .navbar__logo-name { color: var(--off-white); }
.navbar:not(.scrolled) .navbar__logo-sub  { color: rgba(175,194,181,.8); }
.navbar.scrolled .navbar__logo-name        { color: var(--deep-green); }

.navbar__links { display: flex; align-items: center; gap: 2.5rem; }
.navbar__link {
  font-size: .8125rem; font-weight: 500; letter-spacing: .06em;
  position: relative; padding-bottom: 2px;
  transition: color .3s;
}
.navbar__link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--bordeaux);
  transition: width .4s var(--ease-premium);
}
.navbar__link:hover::after, .navbar__link.active::after { width: 100%; }
.navbar:not(.scrolled) .navbar__link { color: rgba(252,250,247,.75); }
.navbar:not(.scrolled) .navbar__link:hover { color: #fff; }
.navbar.scrolled .navbar__link { color: var(--ink-60); }
.navbar.scrolled .navbar__link:hover { color: var(--ink); }
.navbar.scrolled .navbar__link.active { color: var(--bordeaux); }

.navbar__cta {
  margin-left: .75rem;
  padding: .5rem 1.4rem; border-radius: 100px;
  font-size: .8125rem; font-weight: 500; letter-spacing: .06em;
  transition: all .35s var(--ease-premium);
}
.navbar:not(.scrolled) .navbar__cta {
  border: 1px solid rgba(252,250,247,.3); color: #fff;
}
.navbar:not(.scrolled) .navbar__cta:hover { background: rgba(255,255,255,.1); }
.navbar.scrolled .navbar__cta { background: var(--deep-green); color: #fff; }
.navbar.scrolled .navbar__cta:hover { background: var(--bordeaux); transform: translateY(-1px); }

.navbar__burger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; }
.navbar__burger span { display: block; height: 1.5px; border-radius: 2px; background: #fff; transition: all .4s var(--ease-premium); }
.navbar.scrolled .navbar__burger span { background: var(--ink); }
.navbar__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 490;
  background: var(--ink);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.75rem;
  transform: translateX(100%); transition: transform .55s var(--ease-in-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__link {
  font-family: var(--serif); font-size: 2rem; font-weight: 200;
  color: rgba(252,250,247,.6); letter-spacing: .04em;
  transition: color .25s;
}
.mobile-menu__link:hover, .mobile-menu__link.active { color: var(--off-white); }
.mobile-menu__tag {
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--bordeaux);
  margin-top: 1.5rem;
}

/* ════════════════════════════════════════════════════════════════
   HERO CARROUSEL
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden;
}

/* Slides */
.hero-carousel { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.3s var(--ease-in-out);
  will-change: clip-path;
}
.hero-slide.active    { clip-path: inset(0 0% 0 0); z-index: 2; }
.hero-slide.leaving   { clip-path: inset(0 0 0 100%); z-index: 1; }

/* Fonds des slides */
.hero-slide__bg {
  position: absolute; inset: 0; z-index: 0;
  transition: transform 8s linear;
}
.hero-slide.active .hero-slide__bg { transform: scale(1.04); }

/* Images de fond — URL injectée en inline style depuis index.php */
.slide-bg-1,
.slide-bg-2,
.slide-bg-3 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay coloré sur chaque image pour lisibilité du texte */
.slide-bg-1::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(10,22,17,.88) 0%,
    rgba(29,58,46,.72) 45%,
    rgba(15,15,15,.78) 100%);
}
.slide-bg-2::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(18,8,10,.9) 0%,
    rgba(70,18,28,.75) 45%,
    rgba(15,8,10,.82) 100%);
}
.slide-bg-3::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(10,22,17,.86) 0%,
    rgba(45,64,56,.68) 50%,
    rgba(10,15,10,.8) 100%);
}

/* Grain overlay sur chaque slide */
.hero-slide::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Layout intérieur des slides */
.hero-slide__inner {
  position: relative; z-index: 10;
  width: 100%; max-width: 1260px; margin: 0 auto; padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center; gap: 3rem;
}
.hero-slide__inner--centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.hero-slide__inner--right {
  grid-template-columns: auto 1fr;
}

/* Tag label */
.hero-slide__tag {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .65rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.75rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s var(--ease-premium), transform .5s var(--ease-premium);
  transition-delay: .3s;
}
.hero-slide__tag::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--sage);
}
.hero-slide.active .hero-slide__tag { opacity: 1; transform: translateY(0); }

/* Titre géant */
.hero-slide__title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8.5vw, 8rem);
  font-weight: 200; line-height: 1.05;
  color: var(--off-white);
  letter-spacing: -.01em;
  overflow: hidden;
}
.hero-slide__title .word {
  display: block; overflow: hidden;
}
.hero-slide__title .word span {
  display: block;
  transform: translateY(105%);
  transition: transform .85s var(--ease-out-expo);
}
.hero-slide.active .hero-slide__title .word:nth-child(1) span { transform: translateY(0); transition-delay: .45s; }
.hero-slide.active .hero-slide__title .word:nth-child(2) span { transform: translateY(0); transition-delay: .58s; }
.hero-slide.active .hero-slide__title .word:nth-child(3) span { transform: translateY(0); transition-delay: .71s; }

.hero-slide__title .accent { color: var(--bordeaux); }
.hero-slide__title .sage   { color: var(--sage); }

/* Sous-titre */
.hero-slide__sub {
  margin-top: 1.5rem;
  font-size: clamp(.875rem, 1.6vw, 1.125rem);
  color: rgba(252,250,247,.5);
  max-width: 420px; line-height: 1.75;
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--ease-premium), transform .6s var(--ease-premium);
  transition-delay: .85s;
}
.hero-slide.active .hero-slide__sub { opacity: 1; transform: translateY(0); }

/* CTAs */
.hero-slide__ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.5rem;
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s var(--ease-premium), transform .5s var(--ease-premium);
  transition-delay: 1s;
}
.hero-slide.active .hero-slide__ctas { opacity: 1; transform: translateY(0); }

/* Visual (côté droit) */
.hero-slide__visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .8s var(--ease-premium);
  transition-delay: .6s;
}
.hero-slide.active .hero-slide__visual { opacity: 1; }

/* Grand numéro décoratif */
.slide-number {
  font-family: var(--serif); font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 200; line-height: 1;
  color: rgba(252,250,247,.04);
  position: absolute; right: 2.5rem; bottom: 8%;
  user-select: none; pointer-events: none;
  letter-spacing: -.04em;
}

/* Enso décoratif dans le visuel */
.hero-enso-wrap {
  position: relative;
  opacity: 0; transform: scale(.85) rotate(-10deg);
  transition: opacity 1s var(--ease-premium), transform 1.2s var(--ease-out-expo);
  transition-delay: .7s;
}
.hero-slide.active .hero-enso-wrap { opacity: 1; transform: scale(1) rotate(0deg); }

/* Bloc spécialité (slide 2 & 3) */
.hero-feature {
  display: flex; flex-direction: column; gap: .5rem;
  border-left: 1px solid rgba(252,250,247,.15);
  padding-left: 2rem;
  opacity: 0; transform: translateX(20px);
  transition: opacity .6s var(--ease-premium), transform .6s var(--ease-premium);
  transition-delay: .8s;
}
.hero-slide.active .hero-feature { opacity: 1; transform: translateX(0); }
.hero-feature__label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(252,250,247,.35); }
.hero-feature__name  { font-family: var(--serif); font-size: 1.6rem; color: var(--off-white); font-weight: 300; }
.hero-feature__desc  { font-size: .8rem; color: rgba(252,250,247,.45); line-height: 1.6; max-width: 220px; }
.hero-feature__prix  { font-size: 1.1rem; font-weight: 600; color: var(--bordeaux); margin-top: .5rem; }

/* ─── Contrôles du carrousel ─────────────────────────────────── */
.hero-controls {
  position: absolute; bottom: 2.5rem; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  max-width: 1260px; margin: 0 auto;
}

/* Progress bar */
.hero-progress {
  flex: 1; max-width: 200px;
  height: 1px; background: rgba(252,250,247,.15);
  overflow: hidden;
}
.hero-progress__fill {
  height: 100%; background: var(--sage);
  width: 0%;
  transition: none;
}
.hero-progress__fill.animating {
  transition: width 5s linear;
  width: 100%;
}

/* Compteur + navigation */
.hero-nav {
  display: flex; align-items: center; gap: 1.25rem;
}
.hero-nav__btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(252,250,247,.2);
  border-radius: 50%;
  color: rgba(252,250,247,.7);
  font-size: .875rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease-premium);
}
.hero-nav__btn:hover { background: rgba(252,250,247,.1); border-color: rgba(252,250,247,.5); color: #fff; }

.hero-counter {
  font-family: var(--serif);
  font-size: .875rem; color: rgba(252,250,247,.5);
  display: flex; align-items: center; gap: .3rem; letter-spacing: .1em;
  min-width: 60px; text-align: center; justify-content: center;
}
.hero-counter__current { color: var(--off-white); font-size: 1rem; }
.hero-counter__sep     { margin: 0 .1rem; }

/* Dots */
.hero-dots { display: flex; gap: .5rem; align-items: center; }
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(252,250,247,.3);
  transition: all .3s var(--ease-premium);
}
.hero-dot.active { background: var(--sage); transform: scale(1.4); }

/* ─── Ticker horizontal (entre hero et contenu) ──────────────── */
.ticker {
  background: var(--deep-green); overflow: hidden; padding: .9rem 0;
  border-top: 1px solid rgba(252,250,247,.06);
  border-bottom: 1px solid rgba(252,250,247,.06);
}
.ticker__track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker__item {
  display: inline-flex; align-items: center; gap: 2.5rem;
  padding: 0 2.5rem;
  font-size: .65rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(175,194,181,.7);
}
.ticker__dot { color: var(--bordeaux); font-size: .5rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════════════════════════
   BOUTONS
   ════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; border-radius: 100px;
  font-size: .875rem; font-weight: 500; letter-spacing: .06em;
  transition: all .4s var(--ease-premium);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,.1);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-premium);
}
.btn:hover::before { transform: scaleX(1); }

.btn--primary { background: var(--deep-green); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(61,86,80,.35); }

.btn--outline { border: 1px solid rgba(252,250,247,.35); color: #fff; }
.btn--outline:hover { border-color: rgba(252,250,247,.7); transform: translateY(-2px); }

.btn--dark    { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #2a2a2a; transform: translateY(-2px); }

.btn--ghost { color: var(--deep-green); border: 1px solid rgba(61,86,80,.25); }
.btn--ghost:hover { border-color: var(--bordeaux); color: var(--bordeaux); transform: translateY(-1px); }

.btn--sm { padding: .55rem 1.3rem; font-size: .8rem; }
.btn--lg { padding: 1.1rem 2.75rem; font-size: .9375rem; }

/* ════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}
.reveal.visible          { opacity: 1; transform: translateY(0); }
.reveal--left            { transform: translateX(-40px) translateY(0); }
.reveal--left.visible    { transform: translateX(0); }
.reveal--right           { transform: translateX(40px) translateY(0); }
.reveal--right.visible   { transform: translateX(0); }
.reveal--scale           { transform: scale(.92); }
.reveal--scale.visible   { transform: scale(1); }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal--delay-4 { transition-delay: .4s; }
.reveal--delay-5 { transition-delay: .5s; }

/* ════════════════════════════════════════════════════════════════
   SECTION STRUCTURE
   ════════════════════════════════════════════════════════════════ */
.section { padding: 7rem 0; }
.section-alt {
  background: linear-gradient(180deg, #EDE6DC 0%, #E6DDD2 100%);
  position: relative; overflow: hidden;
}
.section-dark {
  background: linear-gradient(135deg, #1a2e28 0%, #3D5650 100%);
  position: relative; overflow: hidden;
}

/* Numéro de section (décoration) */
.section-index {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700; letter-spacing: -.05em; line-height: 1;
  color: rgba(29,29,29,.03); user-select: none; pointer-events: none;
  white-space: nowrap;
}
.section-dark .section-index { color: rgba(252,250,247,.03); }

/* Tag label section */
.section-tag {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .65rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--bordeaux); margin-bottom: 1.2rem;
}
.section-tag::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--bordeaux);
}

/* Titre de section */
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 200; line-height: 1.15; color: var(--ink);
}
.section-title--light { color: var(--off-white); }
.section-title em     { color: var(--deep-green); font-style: normal; }
.section-title strong { color: var(--bordeaux); font-weight: inherit; }

/* Divider brush */
.brush-line {
  display: block; width: 48px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--bordeaux), var(--sage));
  margin: 1.5rem 0 2.5rem;
}
.brush-line--center { margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════════════════════════════
   SECTION PRÉSENTATION (asymétrique)
   ════════════════════════════════════════════════════════════════ */
.presentation-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.presentation-text p {
  color: var(--ink-60); line-height: 1.9; font-size: .9375rem; margin-top: 1rem;
}
.presentation-text .link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 600; letter-spacing: .05em;
  color: var(--deep-green);
  margin-top: 2rem;
  transition: color .25s, gap .25s;
}
.presentation-text .link-arrow:hover { color: var(--bordeaux); gap: .85rem; }

/* Grille valeurs */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }
.value-card {
  background: var(--off-white);
  border: 1px solid rgba(175,194,181,.2);
  border-radius: 16px; padding: 1.5rem;
  transition: transform .4s var(--ease-premium), box-shadow .4s var(--ease-premium);
  position: relative; overflow: hidden;
}
.value-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--bordeaux), var(--sage));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-premium);
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(61,86,80,.12); }
.value-card:hover::after { transform: scaleX(1); }
.value-card__icon  { font-size: 1.5rem; margin-bottom: 1rem; }
.value-card__title { font-family: var(--serif); font-size: .9375rem; font-weight: 500; margin-bottom: .5rem; }
.value-card__text  { font-size: .8rem; color: var(--ink-60); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════════
   SPÉCIALITÉS — CARROUSEL INFINI
   ════════════════════════════════════════════════════════════════ */
.spec-carousel {
  overflow: hidden;
  padding: .5rem 0 2.5rem;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.spec-carousel__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.5rem;
  animation: spec-scroll 28s linear infinite;
  padding: .75rem 0;
  will-change: transform;
}
.spec-carousel:hover .spec-carousel__track,
.spec-carousel:focus-within .spec-carousel__track {
  animation-play-state: paused;
}
@keyframes spec-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.spec-carousel__card {
  flex-shrink: 0;
  width: 300px;
  background: var(--off-white);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform .45s var(--ease-premium), box-shadow .45s var(--ease-premium);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.spec-carousel__card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 64px rgba(29,29,29,.15);
}

.spec-carousel__img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.spec-carousel__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s var(--ease-premium);
}
.spec-carousel__card:hover .spec-carousel__img img { transform: scale(1.1); }

.spec-carousel__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}

/* Fallback fond coloré si image absente */
.spec-carousel__card--1 .spec-carousel__img { background: linear-gradient(135deg, #1a2e28, #3D5650); }
.spec-carousel__card--2 .spec-carousel__img { background: linear-gradient(135deg, #3d1820, #8F2F3A); }
.spec-carousel__card--3 .spec-carousel__img { background: linear-gradient(135deg, #1a2e28, #2d4038); }
.spec-carousel__card--4 .spec-carousel__img { background: linear-gradient(135deg, #2d1a10, #5c3020); }

.spec-carousel__emoji {
  position: absolute; bottom: .75rem; left: 1rem;
  font-size: 1.75rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
  transition: transform .4s var(--ease-out-expo);
  pointer-events: none;
}
.spec-carousel__card:hover .spec-carousel__emoji { transform: scale(1.2) rotate(8deg); }

.spec-card__badge {
  position: absolute; top: .875rem; right: .875rem;
  font-size: .6rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  background: var(--bordeaux); color: #fff;
  padding: .25rem .65rem; border-radius: 100px;
}
.spec-card__body  { padding: 1.5rem; }
.spec-card__index { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-30); margin-bottom: .5rem; }
.spec-card__name  { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; margin-bottom: .75rem; }
.spec-card__desc  { font-size: .8rem; color: var(--ink-60); line-height: 1.65; }
.spec-card__link  {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--deep-green); margin-top: 1.25rem;
  transition: color .25s, gap .25s;
}
.spec-carousel__card:hover .spec-card__link { color: var(--bordeaux); gap: .75rem; }

/* ════════════════════════════════════════════════════════════════
   MENU — ACCORDÉON ÉDITORIAL
   ════════════════════════════════════════════════════════════════ */
.menu-accordion {
  border-top: 1px solid rgba(175,194,181,.25);
  margin-top: 1.5rem;
}

.acc-panel {
  position: relative;
  border-bottom: 1px solid rgba(175,194,181,.25);
}
/* Barre d'accentuation gauche */
.acc-panel::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--bordeaux), var(--sage));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .55s var(--ease-out-expo);
  z-index: 1;
}
.acc-panel.open::before { transform: scaleY(1); }

/* ─── Header bouton ─── */
.acc-panel__header {
  width: 100%;
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.25rem 1.5rem 1.25rem 1.75rem;
  background: transparent;
  border: none; cursor: pointer;
  font-family: inherit; text-align: left;
  transition: background .3s var(--ease-premium);
}
.acc-panel__header:hover    { background: rgba(175,194,181,.07); }
.acc-panel.open .acc-panel__header { background: rgba(175,194,181,.07); }

/* Numéro décoratif */
.acc-panel__num {
  font-family: var(--serif);
  font-size: 2.25rem; font-weight: 200; line-height: 1;
  color: rgba(29,29,29,.1);
  min-width: 3rem;
  transition: color .4s;
  flex-shrink: 0;
}
.acc-panel.open .acc-panel__num { color: var(--bordeaux); opacity: .35; }

/* Emoji icône */
.acc-panel__icon {
  font-size: 1.35rem; flex-shrink: 0;
  transition: transform .4s var(--ease-out-expo);
}
.acc-panel.open .acc-panel__icon { transform: scale(1.15); }

/* Nom catégorie */
.acc-panel__name {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 300; letter-spacing: -.01em;
  color: var(--ink); flex: 1;
}

/* Pill compteur */
.acc-panel__count {
  font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(29,29,29,.3);
  border: 1px solid rgba(29,29,29,.12);
  border-radius: 100px; padding: .22rem .7rem;
  flex-shrink: 0;
  transition: border-color .35s, color .35s, background .35s;
  white-space: nowrap;
}
.acc-panel.open .acc-panel__count {
  border-color: rgba(143,47,58,.35);
  color: var(--bordeaux);
  background: rgba(143,47,58,.05);
}

/* Indicateur +/– */
.acc-panel__toggle {
  width: 30px; height: 30px; flex-shrink: 0;
  border: 1px solid rgba(29,29,29,.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: border-color .35s, background .35s, transform .5s var(--ease-out-expo);
}
.acc-panel__toggle span {
  position: absolute;
  width: 10px; height: 1.5px;
  background: var(--ink-60); border-radius: 2px;
  transition: transform .45s var(--ease-out-expo), opacity .3s;
}
.acc-panel__toggle span:last-child { transform: rotate(90deg); }
.acc-panel.open .acc-panel__toggle span:last-child {
  transform: rotate(0deg); opacity: 0;
}
.acc-panel.open .acc-panel__toggle {
  border-color: rgba(143,47,58,.4);
  background: rgba(143,47,58,.07);
}
.acc-panel.open .acc-panel__toggle span { background: var(--bordeaux); }

/* ─── Corps accordéon — animation grid CSS ─── */
.acc-panel__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease-out-expo);
}
.acc-panel.open .acc-panel__body { grid-template-rows: 1fr; }

.acc-panel__inner {
  overflow: hidden;
  /* padding top/bottom via transition sur le contenu */
}

.acc-panel__inner > .menu-grid {
  border-top: 1px solid rgba(175,194,181,.2);
  padding: 1.25rem 1.75rem 2rem;
}

/* ─── Responsive accordéon ─── */
@media (max-width: 768px) {
  .acc-panel__header { padding: 1rem 1rem 1rem 1.25rem; gap: .875rem; }
  .acc-panel__num    { font-size: 1.6rem; min-width: 2.25rem; }
  .acc-panel__count  { display: none; }
  .acc-panel__inner > .menu-grid {
    margin: 0 1rem 0 1.25rem;
    padding: 1rem 0 1.5rem;
  }
}
@media (max-width: 480px) {
  .acc-panel__icon { display: none; }
  .acc-panel__num  { font-size: 1.3rem; min-width: 1.75rem; }
}

/* ════════════════════════════════════════════════════════════════
   GALERIE INSTAGRAM — Grille irrégulière
   ════════════════════════════════════════════════════════════════ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1rem;
}
.insta-item {
  border-radius: 16px; overflow: hidden;
  position: relative; background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .4s var(--ease-premium);
}
.insta-item:hover { transform: scale(1.02); }
.insta-item:nth-child(1) { grid-row: span 2; }
.insta-item__overlay {
  position: absolute; inset: 0;
  background: rgba(29,29,29,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s;
}
.insta-item:hover .insta-item__overlay { background: rgba(29,29,29,.4); }
.insta-item__icon {
  font-size: 1.75rem; opacity: 0;
  transform: scale(.7); transition: all .35s var(--ease-out-expo);
}
.insta-item:hover .insta-item__icon { opacity: 1; transform: scale(1); }
.insta-item__placeholder { font-size: 3.5rem; opacity: .12; }
.insta-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ════════════════════════════════════════════════════════════════
   CONTACT RAPIDE (section sombre)
   ════════════════════════════════════════════════════════════════ */
.quick-contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.qc-card {
  border: 1px solid rgba(252,250,247,.08);
  border-radius: 20px; padding: 2rem 1.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  transition: all .4s var(--ease-premium);
  position: relative; overflow: hidden;
}
.qc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
  transform: scaleX(0); transition: transform .4s var(--ease-premium);
}
.qc-card:hover { background: rgba(252,250,247,.04); border-color: rgba(175,194,181,.25); transform: translateY(-5px); }
.qc-card:hover::before { transform: scaleX(1); }
.qc-card__icon {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(252,250,247,.12);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  transition: border-color .3s;
}
.qc-card:hover .qc-card__icon { border-color: rgba(175,194,181,.4); }
.qc-card__label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(252,250,247,.3); margin-bottom: .2rem; }
.qc-card__value { font-size: .9375rem; font-weight: 500; color: var(--off-white); }

/* ════════════════════════════════════════════════════════════════
   PAGE CONTACT — HERO
   ════════════════════════════════════════════════════════════════ */
.contact-hero {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.contact-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.contact-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.05);
  animation: aboutHeroZoom 14s ease-out forwards;
}
.contact-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,18,14,.97) 0%,
    rgba(15,28,22,.82) 35%,
    rgba(10,15,12,.45) 70%,
    rgba(10,15,12,.15) 100%
  );
}
/* Inner layout */
.contact-hero__inner {
  position: relative; z-index: 2;
  padding-top: 9rem; padding-bottom: 4rem;
  display: flex; flex-direction: column; gap: 2.5rem;
}
/* Tag */
.contact-hero__tag {
  font-size: .6rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--sage);
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: 1.25rem;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp .65s var(--ease-out-expo) .25s forwards;
}
.contact-hero__tag::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--sage);
}
/* Titre */
.contact-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 200; line-height: 1.08; letter-spacing: -.02em;
  color: var(--off-white);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s var(--ease-out-expo) .4s forwards;
}
.contact-hero__title em {
  font-style: normal; color: var(--bordeaux);
}
/* Sous-titre */
.contact-hero__sub {
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(.9rem, 1.6vw, 1.1rem);
  color: rgba(252,250,247,.45); line-height: 1.7;
  margin-top: .75rem;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp .65s var(--ease-out-expo) .6s forwards;
}
/* Pills infos bas */
.contact-hero__pills {
  display: flex; gap: .75rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp .6s var(--ease-out-expo) .8s forwards;
}
.contact-hero__pill {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .04em;
  color: rgba(252,250,247,.6);
  border: 1px solid rgba(252,250,247,.12);
  border-radius: 100px; padding: .4rem 1rem;
  backdrop-filter: blur(8px);
  background: rgba(252,250,247,.04);
}
/* Responsive */
@media (max-width: 768px) {
  .contact-hero { min-height: 52vh; }
  .contact-hero__inner { padding-top: 7rem; padding-bottom: 2.5rem; }
  .contact-hero__title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}

/* ════════════════════════════════════════════════════════════════
   PAGE CARTE
   ════════════════════════════════════════════════════════════════ */
.page-header {
  padding: 9rem 0 5rem;
  background: linear-gradient(160deg, #1a2e28 0%, #3D5650 60%, #1D1D1D 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-header h1 {
  font-family: var(--serif); font-size: clamp(2.5rem,7vw,5rem);
  font-weight: 200; color: var(--off-white); margin-bottom: .5rem;
}
.page-header p { color: rgba(252,250,247,.45); font-size: .875rem; margin-top: .75rem; }

.filters-bar {
  position: sticky; top: 68px; z-index: 100;
  background: rgba(247,243,238,.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(175,194,181,.2);
  padding: .875rem 0;
}
.filters-inner { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.filters-inner::-webkit-scrollbar { display: none; }

.filter-btn {
  flex-shrink: 0; padding: .45rem 1.25rem; border-radius: 100px;
  font-size: .8rem; font-weight: 500; letter-spacing: .04em;
  border: 1px solid transparent;
  transition: all .3s var(--ease-premium); white-space: nowrap;
}
.filter-btn:not(.active) { color: var(--ink-60); border-color: rgba(61,86,80,.18); }
.filter-btn:not(.active):hover { border-color: var(--bordeaux); color: var(--bordeaux); }
.filter-btn.active { background: var(--deep-green); color: #fff; }

.freshness-note {
  display: flex; align-items: flex-start; gap: .75rem;
  background: rgba(175,194,181,.1); border: 1px solid rgba(175,194,181,.25);
  border-radius: 12px; padding: .875rem 1.125rem;
  font-size: .8rem; color: var(--deep-green); max-width: 500px;
}

/* ── Liste menu — style carte de restaurant ── */
.menu-grid {
  display: flex;
  flex-direction: column;
}

.menu-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem .5rem;
  border-bottom: 1px solid rgba(175,194,181,.2);
  background: transparent;
  border-radius: 0;
  transition: background .25s, padding .25s;
  cursor: default;
  min-height: unset;
}
.menu-card:first-child { border-top: 1px solid rgba(175,194,181,.2); }
.menu-card:hover {
  background: rgba(175,194,181,.08);
  padding-left: .875rem;
  padding-right: .875rem;
  margin: 0 -.5rem;
  border-color: transparent;
  border-radius: 10px;
  transform: none; box-shadow: none;
}

/* Visuel miniature */
.menu-card__visual {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, rgba(175,194,181,.25), rgba(247,243,238,.8));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; position: relative;
}
.menu-card__visual img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* Corps : 2 lignes */
.menu-card__body {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
  gap: .25rem; padding: 0;
}

/* Ligne 1 : nom + badges + prix */
.menu-card__row1 {
  display: flex; align-items: center;
  justify-content: space-between; gap: .75rem;
}

.menu-card__name {
  font-family: var(--serif);
  font-size: .9375rem; font-weight: 500;
  color: var(--ink); line-height: 1.2;
  flex: 1; min-width: 0;
}

/* Ligne 2 : ingrédients complets */
.menu-card__desc {
  font-size: .78rem; color: var(--ink-60);
  line-height: 1.4;
  /* Tout afficher, pas de troncature */
}

/* Sous-titre (nb pièces) — intégré dans le nom */
.menu-card__sub { display: none; }
.menu-card__footer { display: none; }
.menu-card__dots { display: none; }

/* Badges */
.menu-card__badges { display: flex; gap: .25rem; flex-shrink: 0; }
.badge {
  font-size: .52rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .12rem .42rem; border-radius: 100px; color: #fff;
}
.badge--signature { background: var(--bordeaux); }
.badge--nouveau   { background: var(--deep-green); }

/* Prix — toujours ancré à droite sur la ligne 1 */
.menu-card__prix {
  font-size: .9375rem; font-weight: 700;
  color: var(--bordeaux); white-space: nowrap; flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* ════════════════════════════════════════════════════════════════
   PAGE QUI SOMMES-NOUS — HERO
   ════════════════════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Photo + overlay */
.about-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.about-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.04);
  animation: aboutHeroZoom 12s ease-out forwards;
}
@keyframes aboutHeroZoom {
  to { transform: scale(1); }
}
.about-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      rgba(8,18,14,.92) 0%,
      rgba(29,46,40,.82) 35%,
      rgba(10,12,10,.55) 65%,
      rgba(10,12,10,.2) 100%);
}

/* Layout intérieur */
.about-hero__inner {
  position: relative; z-index: 2;
  padding-top: 9rem; padding-bottom: 7rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 3rem;
}

/* Texte gauche */
.about-hero__content { max-width: 560px; }

.about-hero__tag {
  font-size: .6rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sage);
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .7s var(--ease-out-expo) .3s forwards;
}
.about-hero__tag::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--sage);
}

.about-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 200; line-height: 1.1;
  color: var(--off-white); letter-spacing: -.02em;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp .85s var(--ease-out-expo) .5s forwards;
}
.about-hero__title em {
  font-style: normal; color: var(--sage);
  font-size: .72em; display: block; margin-top: .2em;
}

.about-hero__sub {
  font-family: var(--serif);
  font-size: clamp(.9rem, 1.6vw, 1.1rem);
  color: rgba(252,250,247,.45);
  line-height: 1.75; font-weight: 200;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .7s var(--ease-out-expo) .85s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Bloc vertical déco droite */
.about-hero__side {
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out-expo) 1s forwards;
}
.about-hero__side-line {
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(175,194,181,.4), transparent);
}
.about-hero__side-word {
  font-family: var(--serif); font-size: .65rem;
  letter-spacing: .35em; text-transform: uppercase;
  color: rgba(175,194,181,.5);
  writing-mode: vertical-rl;
}

/* Scroll indicator bas de page */
.about-hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  z-index: 3;
}
.about-hero__scroll-line {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(175,194,181,.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.about-hero__scroll-label {
  font-size: .55rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(175,194,181,.4);
}
@keyframes scrollPulse {
  0%, 100% { opacity: .6; transform: scaleY(1);   }
  50%       { opacity: .2; transform: scaleY(.55); }
}

/* Responsive hero */
@media (max-width: 768px) {
  .about-hero { min-height: 75vh; }
  .about-hero__inner { padding-top: 7rem; padding-bottom: 4rem; flex-direction: column; align-items: flex-start; }
  .about-hero__side  { display: none; }
  .about-hero__scroll { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   PAGE QUI SOMMES-NOUS — STORY GRID
   ════════════════════════════════════════════════════════════════ */

.story-row {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 480px;
}
.story-row--alt {
  grid-template-columns: 45% 55%;
}
.story-row--alt .story-row__img  { order: 2; }
.story-row--alt .story-row__text { order: 1; }

/* Image */
.story-row__img {
  position: relative; overflow: hidden;
  background: var(--deep-dark);
}
.story-row__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.1s var(--ease-premium);
}
.story-row:hover .story-row__img img { transform: scale(1.06); }

/* Texte */
.story-row__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 4.5rem;
  background: var(--bg);
  position: relative; overflow: hidden;
}
/* Fond alterné sur les rows paires */
.story-row:nth-child(even) .story-row__text {
  background: #EDE6DC;
}

/* Grand numéro déco */
.story-row__num {
  font-family: var(--serif);
  font-size: 6rem; font-weight: 200; line-height: 1;
  color: rgba(29,29,29,.05);
  position: absolute; bottom: 1.5rem; right: 2rem;
  user-select: none; pointer-events: none;
  letter-spacing: -.04em;
}

/* Tag */
.story-row__tag {
  font-size: .6rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--bordeaux);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.25rem;
}
.story-row__tag::before {
  content: ''; display: block; width: 22px; height: 1px; background: var(--bordeaux);
}

/* Titre */
.story-row__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 200; line-height: 1.2;
  color: var(--ink); margin-bottom: 1.25rem;
  letter-spacing: -.01em;
}

/* Corps */
.story-row__body {
  font-size: .9375rem; color: var(--ink-60);
  line-height: 1.85; max-width: 420px;
}

/* ─── Responsive story ─── */
@media (max-width: 900px) {
  .story-row,
  .story-row--alt          { grid-template-columns: 1fr; min-height: auto; }
  .story-row--alt .story-row__img  { order: 0; }
  .story-row--alt .story-row__text { order: 0; }
  .story-row__img  { height: 280px; }
  .story-row__text { padding: 2.5rem 2rem; }
  .story-row__body { max-width: 100%; }
}
@media (max-width: 480px) {
  .story-row__img  { height: 220px; }
  .story-row__text { padding: 2rem 1.25rem; }
  .story-row__title { font-size: 1.4rem; }
}

/* ════════════════════════════════════════════════════════════════
   PAGE QUI SOMMES-NOUS — TIMELINE (legacy, inutilisée)
   ════════════════════════════════════════════════════════════════ */
.timeline { position: relative; padding-left: 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, rgba(175,194,181,.4), rgba(143,47,58,.2), rgba(175,194,181,.05));
  transform: translateX(-50%);
}
.timeline-item { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 4rem; position: relative; }
.timeline-item__dot {
  position: absolute; top: .25rem; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; background: var(--bordeaux); border: 3px solid var(--bg); border-radius: 50%; z-index: 1;
}
.timeline-item__content { padding: 0 3.5rem; }
.timeline-item:nth-child(odd)  .timeline-item__content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(even) .timeline-item__content { grid-column: 2; }
.timeline-item__tag {
  display: inline-block; font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bordeaux); border: 1px solid rgba(143,47,58,.25); border-radius: 100px;
  padding: .2rem .7rem; margin-bottom: .75rem;
}
.timeline-item__title { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; margin-bottom: .6rem; }
.timeline-item__text  { font-size: .875rem; color: var(--ink-60); line-height: 1.8; }

.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.philosophy-card {
  background: var(--off-white); border: 1px solid rgba(175,194,181,.2);
  border-radius: 20px; padding: 2.5rem;
  transition: transform .4s var(--ease-premium), box-shadow .4s var(--ease-premium);
}
.philosophy-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(61,86,80,.1); }
.philosophy-card__icon  { font-size: 2rem; margin-bottom: 1.25rem; }
.philosophy-card__title { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; margin-bottom: .875rem; }
.philosophy-card__text  { font-size: .875rem; color: var(--ink-60); line-height: 1.85; }

.quote-section {
  background: linear-gradient(135deg, #1D1D1D 0%, #3D5650 100%);
  padding: 6rem 0; text-align: center; position: relative; overflow: hidden;
}
.quote-section blockquote {
  font-family: var(--serif); font-size: clamp(1.3rem,3.5vw,2.2rem);
  font-weight: 200; color: var(--off-white); line-height: 1.65;
  max-width: 720px; margin: 0 auto;
}
.quote-section cite {
  display: block; margin-top: 2rem; font-style: normal;
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--sage);
}

/* ════════════════════════════════════════════════════════════════
   PAGE CONTACT
   ════════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
.contact-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; margin-bottom: 1.5rem; }
.contact-card {
  background: var(--off-white); border: 1px solid rgba(175,194,181,.2);
  border-radius: 16px; padding: 1.25rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: all .4s var(--ease-premium);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(61,86,80,.1); }
.contact-card__icon { width: 38px; height: 38px; background: rgba(175,194,181,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-card__label { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-30); margin-bottom: .1rem; }
.contact-card__value { font-size: .875rem; font-weight: 600; }
.contact-card__sub   { font-size: .75rem; color: var(--ink-60); }

.map-placeholder {
  width: 100%; height: 280px; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(175,194,181,.2);
  background: linear-gradient(135deg, rgba(175,194,181,.15), var(--sage-pale));
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem; position: relative;
}
.map-placeholder__grid {
  position: absolute; inset: 0; opacity: .07;
  background-image: linear-gradient(rgba(61,86,80,.4) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(61,86,80,.4) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Formulaire */
.form-card {
  background: var(--off-white); border: 1px solid rgba(175,194,181,.2);
  border-radius: 24px; padding: 2.5rem; box-shadow: 0 4px 30px rgba(29,29,29,.06);
}
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .78rem; font-weight: 500; letter-spacing: .03em; color: var(--ink-60); margin-bottom: .5rem; }
.form-label span { color: var(--bordeaux); }
.form-input, .form-textarea {
  width: 100%; background: var(--bg); border: 1px solid rgba(175,194,181,.35);
  border-radius: 10px; padding: .875rem 1rem;
  font-family: var(--sans); font-size: .9375rem; color: var(--ink);
  transition: border-color .3s, box-shadow .3s; outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--deep-green); box-shadow: 0 0 0 3px rgba(61,86,80,.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-30); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-input.error, .form-textarea.error { border-color: var(--bordeaux); }
.form-error { font-size: .75rem; color: var(--bordeaux); margin-top: .4rem; }
.form-success { text-align: center; padding: 3rem 1rem; }
.form-success__icon  { font-size: 3rem; margin-bottom: 1rem; }
.form-success__title { font-family: var(--serif); font-size: 1.3rem; margin-bottom: .5rem; }
.form-success__text  { color: var(--ink-60); font-size: .875rem; }

/* ════════════════════════════════════════════════════════════════
   CONNEXION ADMIN
   ════════════════════════════════════════════════════════════════ */
.login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #1a2e28 0%, #3D5650 50%, #1D1D1D 100%);
  position: relative; overflow: hidden;
}
.login-card {
  background: rgba(252,250,247,.96); border-radius: 24px;
  padding: 3rem 2.5rem; width: 100%; max-width: 420px;
  box-shadow: 0 40px 100px rgba(0,0,0,.3); position: relative; z-index: 10;
}
.login-card__logo { text-align: center; margin-bottom: 2rem; }
.login-card__title { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--ink); margin-top: .5rem; }
.login-card__sub   { font-size: .75rem; color: var(--ink-30); margin-top: .25rem; }

/* ════════════════════════════════════════════════════════════════
   DASHBOARD ADMIN
   ════════════════════════════════════════════════════════════════ */
.admin-layout { display: flex; min-height: 100vh; background: #F0EDE8; }
.admin-sidebar {
  width: 255px; flex-shrink: 0; background: var(--ink);
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.admin-sidebar__brand {
  padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: .75rem;
}
.admin-sidebar__brand-name { font-family: var(--serif); font-size: .875rem; color: var(--off-white); }
.admin-sidebar__brand-sub  { font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: var(--sage); }
.admin-nav { padding: 1rem 0; flex: 1; }
.admin-nav__item {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1.5rem; font-size: .8375rem; color: rgba(252,250,247,.45);
  transition: all .25s; border-left: 2px solid transparent; cursor: pointer;
}
.admin-nav__item:hover  { color: var(--off-white); background: rgba(255,255,255,.03); }
.admin-nav__item.active { color: var(--off-white); background: rgba(175,194,181,.07); border-left-color: var(--sage); }
.admin-nav__icon { font-size: .9375rem; width: 18px; text-align: center; }
.admin-sidebar__footer { padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,.07); }
.admin-main { flex: 1; display: flex; flex-direction: column; overflow-y: auto; }
.admin-topbar {
  background: rgba(252,250,247,.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(175,194,181,.2);
  padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
}
.admin-topbar__title { font-family: var(--serif); font-size: 1.1rem; }
.admin-content { padding: 2rem; flex: 1; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--off-white); border-radius: 18px; padding: 1.5rem;
  border: 1px solid rgba(175,194,181,.2); box-shadow: 0 2px 12px rgba(29,29,29,.04);
}
.stat-card__icon  { font-size: 1.5rem; margin-bottom: .5rem; }
.stat-card__value { font-family: var(--serif); font-size: 2.2rem; font-weight: 200; }
.stat-card__label { font-size: .72rem; color: var(--ink-60); margin-top: .25rem; letter-spacing: .04em; }
.admin-table-wrap { background: var(--off-white); border-radius: 18px; border: 1px solid rgba(175,194,181,.2); overflow: hidden; box-shadow: 0 2px 12px rgba(29,29,29,.04); }
.admin-table-header { padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(175,194,181,.12); }
.admin-table-header h3 { font-family: var(--serif); font-size: 1rem; font-weight: 500; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { background: rgba(247,243,238,.8); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-60); padding: .75rem 1rem; text-align: left; border-bottom: 1px solid rgba(175,194,181,.12); }
.data-table td { padding: .875rem 1rem; font-size: .875rem; border-bottom: 1px solid rgba(175,194,181,.08); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(247,243,238,.5); }
.badge-status { font-size: .62rem; font-weight: 600; letter-spacing: .08em; padding: .2rem .65rem; border-radius: 100px; }
.badge-actif   { background: rgba(61,86,80,.1); color: var(--deep-green); }
.badge-inactif { background: rgba(143,47,58,.1); color: var(--bordeaux); }
.table-actions { display: flex; gap: .5rem; }
.action-btn { padding: .32rem .75rem; border-radius: 8px; font-size: .75rem; font-weight: 500; border: 1px solid; transition: all .2s; }
.action-btn--edit   { color: var(--deep-green); border-color: rgba(61,86,80,.22); }
.action-btn--edit:hover   { background: var(--deep-green); color: #fff; }
.action-btn--delete { color: var(--bordeaux); border-color: rgba(143,47,58,.22); }
.action-btn--delete:hover { background: var(--bordeaux); color: #fff; }

/* Modal */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(29,29,29,.55); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--off-white); border-radius: 24px; padding: 2rem; width: 100%; max-width: 540px; max-height: 90vh; overflow-y: auto; box-shadow: 0 40px 100px rgba(0,0,0,.2); animation: modalIn .35s var(--ease-out-expo); }
@keyframes modalIn { from { opacity: 0; transform: scale(.93) translateY(16px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.modal__title  { font-family: var(--serif); font-size: 1.15rem; }
.modal__close  { width: 30px; height: 30px; border-radius: 50%; background: var(--warm-gray); display: flex; align-items: center; justify-content: center; font-size: .875rem; transition: all .2s; }
.modal__close:hover { background: rgba(143,47,58,.15); color: var(--bordeaux); }

/* Flash */
.flash { padding: .875rem 1.25rem; border-radius: 12px; margin-bottom: 1.5rem; font-size: .875rem; font-weight: 500; }
.flash--success { background: rgba(61,86,80,.1); color: var(--deep-green); border: 1px solid rgba(61,86,80,.18); }
.flash--error   { background: rgba(143,47,58,.08); color: var(--bordeaux); border: 1px solid rgba(143,47,58,.18); }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer { background: var(--ink); color: rgba(252,250,247,.45); padding: 5rem 0 2.5rem; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer__brand-name   { font-family: var(--serif); font-size: .9375rem; color: var(--off-white); font-weight: 500; }
.footer__brand-sub    { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--bordeaux); }
.footer__brand-text   { font-size: .8rem; color: rgba(252,250,247,.4); line-height: 1.85; margin-top: 1.1rem; max-width: 220px; }
.footer__brand-slogan { font-family: var(--serif); font-size: .875rem; color: var(--sage); font-style: italic; margin-top: .875rem; }
.footer__title { font-size: .65rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--off-white); margin-bottom: 1.25rem; }
.footer__link { display: block; font-size: .8125rem; color: rgba(252,250,247,.4); margin-bottom: .75rem; transition: color .25s; }
.footer__link:hover { color: var(--sage); }
.footer__info { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .75rem; font-size: .8rem; }
.footer__info-icon { font-size: .875rem; color: var(--sage); flex-shrink: 0; margin-top: .05rem; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.1rem; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(252,250,247,.1); display: flex; align-items: center; justify-content: center; font-size: .875rem; color: rgba(252,250,247,.4); transition: all .3s; }
.social-btn:hover { border-color: var(--sage); color: var(--sage); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(252,250,247,.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .72rem; color: rgba(252,250,247,.2); }

/* 404 */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.error-page__code  { font-family: var(--serif); font-size: 9rem; font-weight: 200; color: var(--sage-light); line-height: 1; }
.error-page__title { font-family: var(--serif); font-size: 2rem; font-weight: 300; margin: 1rem 0 .75rem; }
.error-page__text  { color: var(--ink-60); margin-bottom: 2rem; font-size: .9375rem; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */

/* ── Tablette paysage / petits desktops (≤1100px) ── */
@media (max-width: 1100px) {
  .presentation-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .hero-slide__inner  { grid-template-columns: 1fr; }
  .hero-slide__visual { display: none; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-grid         { grid-template-columns: repeat(2,1fr); }
  .contact-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Tablette portrait (≤768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .navbar           { padding: 0 1.25rem; }
  .navbar__links,
  .navbar__cta      { display: none; }
  .navbar__burger   { display: flex; }
  .mobile-menu      { display: flex; }

  /* Sections */
  .section          { padding: 4rem 0; }
  .container,
  .container-sm     { padding: 0 1.25rem; }

  /* Hero */
  .hero             { min-height: 100svh; }
  .hero-controls    { padding: 0 1.25rem; bottom: 1.75rem; }
  .hero-slide__inner { padding: 0 1.25rem; }

  /* Grilles */
  .spec-carousel__card  { width: 240px; }
  .spec-carousel__img   { height: 170px; }
  .values-grid          { grid-template-columns: repeat(2,1fr); }
  .quick-contact-grid   { grid-template-columns: 1fr; gap: 1rem; }
  .philosophy-grid      { grid-template-columns: 1fr; }
  .contact-info-cards   { grid-template-columns: repeat(2,1fr); }
  /* menu-grid : déjà flex column, rien à changer */

  /* Instagram — grille uniforme, supprime double-hauteur */
  .insta-grid {
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto;
  }
  .insta-item:nth-child(1) { grid-row: span 1; }
  .insta-item { min-height: 160px; }

  /* Page header */
  .page-header { padding: 7rem 0 3rem; }

  /* Timeline */
  .timeline::before { left: 1rem; transform: none; }
  .timeline-item    { grid-template-columns: 1fr; }
  .timeline-item__dot { left: 1rem; transform: none; }
  .timeline-item__content { grid-column: 1 !important; text-align: left !important; padding-left: 3rem; padding-right: 0; }

  /* Admin */
  .admin-layout   { flex-direction: column; }
  .admin-sidebar  { width: 100%; height: auto; position: static; }
  .admin-nav      { display: flex; overflow-x: auto; padding: 0; scrollbar-width: none; }
  .admin-nav::-webkit-scrollbar { display: none; }
  .admin-nav__item { white-space: nowrap; border-left: none; border-bottom: 2px solid transparent; padding: .875rem 1.25rem; }
  .admin-nav__item.active { border-bottom-color: var(--sage); background: none; }
  .admin-content  { padding: 1.25rem; }
  .data-table th,
  .data-table td  { padding: .65rem .75rem; font-size: .8rem; }

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

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2,1fr); }

  /* Ticker masqué */
  .ticker { display: none; }

  /* Boutons hero */
  .hero-slide__ctas { gap: .75rem; }
  .btn--lg { padding: .875rem 1.75rem; font-size: .875rem; }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
  /* Hero */
  .hero-slide__title       { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .hero-slide__sub         { font-size: .8125rem; }
  .hero-controls           { flex-wrap: wrap; gap: .75rem; bottom: 1.25rem; }
  .hero-progress           { order: 3; max-width: 100%; flex: 0 0 100%; }
  .hero-nav__btn           { width: 38px; height: 38px; font-size: .75rem; }
  .slide-number            { font-size: clamp(6rem, 25vw, 10rem); }

  /* Grilles */
  .values-grid           { grid-template-columns: 1fr; }
  .specialties-grid      { grid-template-columns: repeat(2,1fr); gap: .6rem; }
  .menu-card__name   { max-width: 130px; font-size: .8125rem; }
  .menu-card__desc   { max-width: 140px; }
  .menu-card__visual { width: 40px; height: 40px; font-size: 1.1rem; }
  /* Spec carousel compact */
  .spec-carousel__card  { width: 200px; }
  .spec-carousel__img   { height: 140px; }
  .spec-carousel__emoji { font-size: 1.4rem; }
  .spec-card__body   { padding: 1rem; }
  .spec-card__name   { font-size: .9rem; }
  .spec-card__desc   { font-size: .75rem; display: none; }
  .spec-card__link   { margin-top: .75rem; font-size: .7rem; }
  .spec-carousel {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
  }
  .contact-info-cards    { grid-template-columns: 1fr; }
  .stats-grid            { grid-template-columns: repeat(2,1fr); }
  .insta-grid            { grid-template-columns: repeat(2,1fr); }

  /* Sections */
  .section          { padding: 3rem 0; }
  .section-index    { font-size: clamp(6rem, 22vw, 10rem); }
  .section-title    { font-size: clamp(1.75rem, 7vw, 2.5rem); }

  /* Page header */
  .page-header    { padding: 6rem 0 2.5rem; }

  /* Filtres */
  .filters-bar    { top: 68px; }

  /* Admin */
  .admin-content  { padding: 1rem; }
  .stats-grid     { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .stat-card      { padding: 1rem; }
  .stat-card__value { font-size: 1.75rem; }
  .admin-table-header { flex-direction: column; align-items: flex-start; gap: .75rem; }

  /* Footer */
  .footer { padding: 3rem 0 2rem; }

  /* Formulaire */
  .form-card { padding: 1.5rem; }

  /* Login */
  .login-card { padding: 2rem 1.5rem; }

  /* Boutons */
  .hero-slide__ctas { flex-direction: column; align-items: flex-start; }
  .hero-slide__inner--centered .hero-slide__ctas { align-items: center; }
}

/* ── Très petits écrans (≤360px) ── */
@media (max-width: 360px) {
  .container, .container-sm { padding: 0 1rem; }
  .hero-slide__title        { font-size: clamp(1.9rem, 10vw, 2.8rem); }
  .navbar                   { padding: 0 1rem; }
  .hero-controls            { padding: 0 1rem; }
}

/* ── Mode paysage mobile ── */
@media (max-width: 768px) and (orientation: landscape) {
  .hero               { min-height: 100svh; }
  .hero-slide__title  { font-size: clamp(1.8rem, 6vw, 3rem); }
  .hero-slide__sub    { display: none; }
  .hero-controls      { bottom: 1rem; }
  .section            { padding: 3rem 0; }
}

/* ── Widget Behold (Instagram) ── */
.behold-wrapper {
  border-radius: 20px;
  overflow: hidden;
}
/* Surcharge des styles par défaut du widget Behold */
behold-widget {
  --behold-border-radius: 14px;
  --behold-gap: 12px;
  display: block;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .ticker__track { animation: none; }
  .sakura-petal  { display: none; }
}
