/* ============================================================
   Le Monde de Julie — Design System V2
   Style editorial artisanal premium (Kinfolk / Cereal)
   ============================================================ */

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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-accent:  'Sacramento', cursive;

  /* Couleurs (OKLCH) */
  --ink:             oklch(18% 0.012 50);
  --ink-mid:         oklch(42% 0.018 50);
  --ink-light:       oklch(50% 0.015 50);

  --terracotta:      oklch(52% 0.130 32);
  --terracotta-warm: oklch(65% 0.105 32);
  --terracotta-pale: oklch(93% 0.038 32);
  --terracotta-deep: oklch(40% 0.110 32);

  --sage:            oklch(56% 0.082 148);
  --sage-pale:       oklch(95% 0.020 148);

  --cream:           oklch(97% 0.010 75);
  --paper:           oklch(99% 0.005 75);
  --warm-white:      oklch(100% 0 0);

  --gold:            oklch(70% 0.135 75);
  --gold-pale:       oklch(94% 0.038 75);

  --border:          oklch(88% 0.012 50);
  --border-light:    oklch(93% 0.008 50);

  /* Spacing scale */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-full: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 4px oklch(0% 0 0 / 0.08);
  --shadow-md: 0 4px 16px oklch(0% 0 0 / 0.10);
  --shadow-lg: 0 12px 40px oklch(0% 0 0 / 0.14);

  /* Header */
  --header-height: 72px;

  /* Transitions */
  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 150ms var(--ease-out);
  --transition-base: 250ms var(--ease-out);
  --transition-slow: 400ms var(--ease-out);
}

/* ============================================================
   RESET + BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
}

/* ============================================================
   LAYOUT — CONTAINERS
   ============================================================ */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section        { padding: var(--space-32) 0; }
.section--sm    { padding: var(--space-20) 0; }
.section--lg    { padding: calc(var(--space-32) * 1.5) 0; }

.section--cream           { background: var(--cream); }
.section--terracotta-pale { background: var(--terracotta-pale); }
.section--sage-pale       { background: var(--sage-pale); }
.section--paper           { background: var(--paper); }
.section--terracotta      { background: var(--terracotta); color: var(--warm-white); }
.section--dark            { background: var(--ink); color: var(--warm-white); }

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-height);
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background: rgba(253, 248, 240, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-logo img.logo-dark  { display: block; }
.nav-logo img.logo-light { display: none; }

.site-header.hero-top .nav-logo img.logo-dark  { display: none; }
.site-header.hero-top .nav-logo img.logo-light { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: color var(--transition-fast);
  padding: var(--space-2) 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--terracotta);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.site-header.hero-top .nav-links a        { color: rgba(255, 255, 255, 0.9); }
.site-header.hero-top .nav-links a:hover  { color: white; }
.site-header.hero-top .nav-links a::after { background: white; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--terracotta);
  color: white;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--terracotta-warm);
  transform: translateY(-1px);
}

.site-header.hero-top .nav-cta       { background: white; color: var(--terracotta); }
.site-header.hero-top .nav-cta:hover { background: rgba(255, 255, 255, 0.9); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.site-header.hero-top .hamburger span { background: white; }

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0 0 0 30%;
  background: var(--paper);
  z-index: 99;
  padding: calc(var(--header-height) + 32px) 32px 32px;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  display: block;
}

.mobile-nav-link:hover { color: var(--terracotta); }

.mobile-nav-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: var(--terracotta);
  color: white;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 98;
}

.mobile-nav-overlay.open { display: block; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.65;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.50) 50%, rgba(0,0,0,0.70) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-32) var(--space-6);
  padding-top: calc(var(--header-height) + var(--space-16));
}

.hero-caption {
  display: block;
  margin-bottom: var(--space-4);
  font-family: var(--font-accent);
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 112px);
  line-height: 1.0;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--space-12);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-horaires {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  padding: 14px var(--space-6);
  flex-wrap: wrap;
}

.horaire-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.horaire-item svg    { opacity: 0.6; flex-shrink: 0; }
.horaire-item.closed { opacity: 1; color: rgba(255, 255, 255, 0.45); }

.hero--medium { min-height: 52vh; }
.hero--short  { min-height: 38vh; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
  text-decoration: none;
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary       { background: var(--terracotta); color: white; border-color: var(--terracotta); }
.btn--primary:hover { background: var(--terracotta-warm); border-color: var(--terracotta-warm); }

.btn--outline       { background: transparent; color: var(--terracotta); border-color: var(--terracotta); }
.btn--outline:hover { background: var(--terracotta-pale); }

.btn--outline-white       { background: transparent; color: white; border-color: rgba(255, 255, 255, 0.7); }
.btn--outline-white:hover { background: rgba(255, 255, 255, 0.12); border-color: white; }

.btn--ghost       { background: transparent; color: var(--terracotta); border-color: transparent; padding-left: 0; padding-right: 0; }
.btn--ghost:hover { color: var(--terracotta-warm); }

.btn--lg { min-height: 56px; padding: 16px 36px; font-size: 17px; }
.btn--sm { min-height: 40px; padding: 8px 20px; font-size: 13px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.section-header--left {
  text-align: left;
  margin-left: 0;
}

.section-eyebrow {
  display: block;
  margin-bottom: var(--space-3);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--terracotta);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}

.section-title em     { font-style: italic; font-weight: 400; }
.section-title--light { color: white; }

.section-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.section-desc--light { color: rgba(255, 255, 255, 0.75); }
.section-desc--left  { margin-left: 0; }

/* ============================================================
   SERVICES (layout editorial alterne)
   ============================================================ */

.services-list { display: flex; flex-direction: column; }

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
  padding: var(--space-24) 0;
  border-top: 1px solid var(--border-light);
}

.service-item:last-child { border-bottom: 1px solid var(--border-light); }

.service-item:nth-child(even) .service-visual { order: -1; }

.service-number {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 96px;
  font-weight: 300;
  line-height: 1;
  color: var(--border);
  display: block;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.service-eyebrow {
  display: block;
  margin-bottom: var(--space-2);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  text-transform: uppercase;
}

.service-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--space-5);
}

.service-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: var(--space-5);
}

.service-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: var(--space-6);
  display: block;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  transition: gap var(--transition-base);
}

.service-link:hover     { gap: 14px; }
.service-link svg       { transition: transform var(--transition-base); }
.service-link:hover svg { transform: translateX(4px); }

.service-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-item:hover .service-visual img { transform: scale(1.03); }

/* ============================================================
   WHY GRID (3-col compact)
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.why-col {
  padding: var(--space-8);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.why-num {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: var(--terracotta-pale);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.why-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.why-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY MASONRY
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 6px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--ink);
}

.gallery-item:nth-child(3n+1) { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), opacity 0.4s;
  opacity: 0.92;
}

.gallery-item:hover img { transform: scale(1.05); opacity: 1; }

/* ============================================================
   CTA BAND (terracotta)
   ============================================================ */

.cta-band {
  background: var(--terracotta);
  padding: var(--space-32) var(--space-6);
  text-align: center;
}

.cta-band-eyebrow {
  display: block;
  margin-bottom: var(--space-4);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}

.cta-band-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.1;
  color: white;
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.cta-band-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: white;
  margin: var(--space-6) 0;
  transition: opacity var(--transition-fast);
}

.cta-band-phone:hover { opacity: 0.85; }

.cta-band-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-8);
}

.cta-band-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   SPLIT LAYOUT (cafe, intro pages)
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.split--reverse .split-visual  { order: 1; }
.split--reverse .split-content { order: 0; }

.split-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content { padding: var(--space-8) 0; }

.split-tag {
  display: block;
  margin-bottom: var(--space-4);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--terracotta);
}

.split-tag--accent {
  font-family: var(--font-accent);
  font-size: 28px;
  font-style: normal;
  letter-spacing: 0;
  color: var(--terracotta);
}

.split-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--space-5);
}

.split-title em { font-style: italic; font-weight: 400; }

.split-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: var(--space-8);
}

.split-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  border-left: 2px solid var(--terracotta);
  padding-left: var(--space-6);
  margin: var(--space-6) 0;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.pricing-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border-color: var(--terracotta);
  background: var(--terracotta-pale);
}

.pricing-label {
  display: inline-block;
  margin-bottom: var(--space-5);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.pricing-card.featured .pricing-label {
  background: var(--terracotta);
  color: white;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.pricing-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: var(--space-2);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.pricing-price sup {
  font-size: 22px;
  font-weight: 400;
  vertical-align: super;
  color: var(--terracotta);
}

.pricing-unit {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-light);
  margin-bottom: var(--space-6);
}

.pricing-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  flex: 1;
}

.pricing-features {
  margin: var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.5;
}

.pricing-feature svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--terracotta);
}

/* ============================================================
   MENU RESTAURANT (carte style)
   ============================================================ */

.menu-block { margin-bottom: var(--space-16); }

.menu-block-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--ink);
  padding-bottom: var(--space-4);
  border-bottom: 1.5px solid var(--terracotta);
  margin-bottom: var(--space-8);
  letter-spacing: -0.01em;
}

.menu-items { display: flex; flex-direction: column; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-6);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-light);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-main { flex: 1; }

.menu-item-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
  display: block;
}

.menu-item-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-light);
  font-style: italic;
  display: block;
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--terracotta);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-badge {
  display: inline-block;
  padding: 1px 8px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--sage-pale);
  color: var(--sage);
  margin-left: 8px;
  vertical-align: middle;
}

/* ============================================================
   FORMS
   ============================================================ */

.form-grid       { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-grid--full { grid-template-columns: 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.form-label .required { color: var(--terracotta); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  transition: border-color var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px oklch(52% 0.130 32 / 0.12);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-hint {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-light);
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.form-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--terracotta);
  cursor: pointer;
}

.form-radio-group { display: flex; flex-direction: column; gap: var(--space-2); }

.form-radio-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
}

.form-radio-item input[type="radio"] {
  accent-color: var(--terracotta);
  width: 16px;
  height: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: var(--space-24) 0 var(--space-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-wrap { margin-bottom: var(--space-5); }

.footer-logo-wrap img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--space-5);
}

.footer-address {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.5);
}

.footer-phone {
  display: block;
  margin-top: var(--space-3);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: white;
  transition: color var(--transition-fast);
}

.footer-phone:hover { color: var(--terracotta-warm); }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--space-5);
  display: block;
}

.footer-links { display: flex; flex-direction: column; gap: var(--space-2); }

.footer-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: white; }

.footer-hours-list { display: flex; flex-direction: column; gap: 4px; }

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--font-body);
  font-size: 13px;
}

.footer-hours-day    { color: rgba(255, 255, 255, 0.55); }
.footer-hours-time   { color: rgba(255, 255, 255, 0.8); text-align: right; }
.footer-hours-closed { color: rgba(255, 255, 255, 0.25); }

.footer-bottom {
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-legal { display: flex; gap: var(--space-6); }

.footer-legal a {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  transition: color var(--transition-fast);
}

.footer-legal a:hover { color: rgba(255, 255, 255, 0.5); }

/* Footer social links */
.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.footer-social-link:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.icon    { width: 20px; height: 20px; flex-shrink: 0; display: inline-block; }
.icon-sm { width: 16px; height: 16px; flex-shrink: 0; display: inline-block; }

.separator { height: 1px; background: var(--border-light); margin: var(--space-8) 0; }

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag--terracotta { background: var(--terracotta-pale); color: var(--terracotta); }
.tag--sage       { background: var(--sage-pale); color: var(--sage); }
.tag--gold       { background: var(--gold-pale); color: var(--gold); }

.footer-logo-inverted {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.link-terracotta {
  color: var(--terracotta);
  transition: color var(--transition-fast);
}
.link-terracotta:hover { color: var(--terracotta-warm); }

/* Feature list */
.icon-check        { color: var(--terracotta); }
.feature-list      { display: flex; flex-direction: column; gap: var(--space-3); }
.feature-item      { display: flex; align-items: flex-start; gap: var(--space-3); }
.feature-item-text { font-family: var(--font-body); font-size: 15px; color: var(--ink-mid); line-height: 1.5; }

/* ============================================================
   ACCORDION / FAQ
   ============================================================ */

.accordion      { border-top: 1px solid var(--border-light); }
.accordion-item { border-bottom: 1px solid var(--border-light); }

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) 0;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  gap: var(--space-4);
  transition: color var(--transition-fast);
}

.accordion-trigger:hover { color: var(--terracotta); }

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--terracotta);
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease-out), padding 0.35s;
}

.accordion-item.open .accordion-body { max-height: 500px; }

.accordion-content {
  padding: 0 0 var(--space-6);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.75;
}

/* ============================================================
   EXTRAS (contact, horaires, tabs, info-box, steps)
   ============================================================ */

/* Horaires table */
.hours-table                    { width: 100%; border-collapse: collapse; }
.hours-table tr                 { border-bottom: 1px solid var(--border-light); }
.hours-table td                 { padding: var(--space-3) 0; font-family: var(--font-body); font-size: 15px; }
.hours-table td:last-child      { text-align: right; font-weight: 500; color: var(--ink); }
.hours-table tr.closed td       { color: var(--ink-light); }
.hours-table tr.today td        { font-weight: 600; color: var(--terracotta); }
.hours-table tr.special td:last-child { color: var(--terracotta); }

/* Tabs */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-12);
}

.tab-btn {
  padding: var(--space-4) var(--space-8);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  margin-bottom: -1px;
}

.tab-btn:hover  { color: var(--ink); }
.tab-btn.active { color: var(--terracotta); border-bottom-color: var(--terracotta); }

.tab-panel        { display: none; }
.tab-panel.active { display: block; }

/* Info box */
.info-box {
  background: var(--terracotta-pale);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  margin: var(--space-6) 0;
}

.info-box-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: var(--space-4);
}

.info-box ul     { display: flex; flex-direction: column; gap: var(--space-2); }
.info-box li     { display: flex; align-items: flex-start; gap: var(--space-3); font-family: var(--font-body); font-size: 15px; }
.info-box li svg { flex-shrink: 0; margin-top: 3px; color: var(--terracotta); }

/* Timeline steps */
.steps-list { display: flex; flex-direction: column; gap: 0; }

.step-item {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border-light);
}

.step-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 42px;
  color: var(--terracotta-pale);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.step-content { padding-top: var(--space-2); }

.step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-2);
}

.step-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-mid);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .service-item { grid-template-columns: 1fr; gap: var(--space-10); }
  .service-item:nth-child(even) .service-visual { order: 0; }
  .service-number { font-size: 64px; }

  .split { grid-template-columns: 1fr; gap: var(--space-10); }
  .split-visual { aspect-ratio: 16 / 9; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .section     { padding: var(--space-20) 0; }
  .section--lg { padding: var(--space-24) 0; }

  .nav-links  { display: none !important; }
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }
  .mobile-nav { display: flex; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item:nth-child(3n+1) { grid-row: span 1; }

  .form-grid { grid-template-columns: 1fr; }

  .hero-horaires { gap: var(--space-4); }
  .cta-band      { padding: var(--space-20) var(--space-6); }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-5); }

  .hero-title    { font-size: clamp(40px, 12vw, 64px); }
  .section-title { font-size: clamp(28px, 8vw, 40px); }

  .footer-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }

  .hero-actions { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}
