:root {
  /* Charte graphique Maison Olivine */
  --color-green: #39432a;        /* HEXA #39432a */
  --color-green-dark: #2c3420;
  --color-gold: #a47e44;         /* HEXA #a47e44 */
  --color-cream: #eeebcf;        /* HEXA #eeebcf */
  --color-cream-soft: #f5f3e3;
  --color-cream-dark: #e4e0c2;
  --color-text: #39432a;
  --color-text-light: #6f6f57;
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-cream-soft);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-weight: 600; }

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

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: var(--color-cream-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(57,67,42,0.10);
}

.logo { display: flex; align-items: center; }
.logo img { height: 52px; width: auto; }

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  border-bottom-color: var(--color-green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.2s ease;
}

.btn:hover { opacity: 0.85; }

.btn-primary {
  background: var(--color-green);
  color: var(--color-cream);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}

.phone-pill {
  background: var(--color-green);
  color: var(--color-cream);
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  background-color: var(--color-text-light);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25,28,18,0.82) 0%, rgba(25,28,18,0.55) 40%, rgba(25,28,18,0.15) 70%, rgba(25,28,18,0.05) 100%);
}

.hero-content { position: relative; z-index: 1; padding: 60px 24px; max-width: 640px; }

.hero h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.hero .subtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 28px;
  opacity: 0.9;
}

.hero .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero .btn-primary { background: var(--color-gold); color: #fff; }
.hero .btn-outline { border-color: #fff; color: #fff; }

/* Page header (non-home) */
.page-hero {
  text-align: center;
  padding: 70px 24px 50px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  margin: 0 0 10px;
}

.page-hero p { color: var(--color-text-light); margin: 0; }

.leaf-divider {
  text-align: center;
  margin: 18px 0;
  color: var(--color-green);
  font-size: 20px;
}

/* Sections */
section { padding: 60px 0; }

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  text-align: center;
  margin: 0 0 8px;
}

.section-sub {
  text-align: center;
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto 36px;
}

/* Welcome / two-column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  margin-top: 0;
}

.welcome-illustration {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(57,67,42,0.18);
}

.welcome-illustration--plain {
  border-radius: 0;
  box-shadow: none;
}

.link-arrow {
  display: inline-block;
  margin-top: 16px;
  font-weight: bold;
  border-bottom: 1px solid var(--color-text);
}

/* Specialties grid */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.specialty-card { text-align: center; }

.specialty-card img {
  border-radius: 6px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 10px;
}

.specialty-card span { font-size: 14px; font-weight: 600; }

.center-link { text-align: center; margin-top: 28px; }

/* Features row */
.features-row {
  background: var(--color-green);
  color: var(--color-cream);
  padding: 36px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.features-grid .feature-icon { font-size: 26px; margin-bottom: 10px; }
.features-grid h4 { margin: 0 0 6px; font-size: 14px; letter-spacing: 0.5px; }
.features-grid p { margin: 0; font-size: 13px; opacity: 0.85; }

/* Menu */
.menu-grid {
  column-count: 2;
  column-gap: 56px;
  margin-top: 20px;
}

.menu-category {
  break-inside: avoid;
  margin-bottom: 30px;
}

.menu-category h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-green);
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.menu-item .item-info strong { display: block; font-size: 15px; }
.menu-item .item-info span { font-size: 13px; color: var(--color-text-light); }
.menu-item .price { font-weight: bold; white-space: nowrap; }

.menu-footer { text-align: center; margin-top: 40px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.gallery-grid .tall { grid-row: span 2; }

/* Reservation */
.reservation-box {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background: var(--color-cream-soft);
  color: var(--color-text);
  padding: 50px 36px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(25,28,18,0.35);
}

.reservation-box h1 {
  font-family: var(--font-heading);
  font-size: 40px;
  margin-top: 0;
  color: var(--color-green);
}

.reservation-box p { color: var(--color-text); }

.phone-display {
  display: inline-block;
  margin-top: 24px;
  background: var(--color-cream);
  border: 1px solid var(--color-gold);
  padding: 16px 28px;
  border-radius: 6px;
  font-size: 20px;
  letter-spacing: 1px;
}

/* Infos pratiques */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.info-list { list-style: none; padding: 0; margin: 0 0 24px; }
.info-list li { margin-bottom: 18px; display: flex; gap: 12px; }
.info-list .icon { color: var(--color-green); }

.map-embed {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(57,67,42,0.12);
}
.map-embed iframe { display: block; border-radius: 8px 8px 0 0; }
.map-link {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--color-green);
  color: var(--color-cream);
  font-size: 13px;
  letter-spacing: 0.5px;
}
.map-link:hover { background: var(--color-green-dark); }

.social-links { display: flex; gap: 14px; margin-top: 8px; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Coloring page */
.coloring-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.coloring-section h1 {
  font-family: var(--font-heading);
  font-size: 40px;
  margin-top: 0;
  line-height: 1.1;
}

/* CTA banner */
.cta-banner {
  text-align: center;
  background: var(--color-cream-dark);
  padding: 50px 24px;
}

.cta-banner h2 { font-family: var(--font-heading); margin-top: 0; }

/* Footer */
.site-footer {
  background: var(--color-green);
  color: var(--color-cream);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo img { height: 70px; width: auto; margin-bottom: 14px; }
.footer-tagline { max-width: 320px; opacity: 0.85; font-size: 14px; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 16px 28px; font-size: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .two-col, .info-grid, .coloring-section { grid-template-columns: 1fr; }
  .menu-grid { column-count: 1; }
  .specialties-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size 32px; font-size: 32px; }
}

@media (max-width: 900px) {
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
}
