:root {
  --cream: #FBF3E7;
  --cream-soft: #FBEBD3;
  --brown-dark: #3E2723;
  --brown: #6B4530;
  --terracotta: #C1613C;
  --terracotta-dark: #8C4426;
  --mustard: #D9A441;
  --text: #3E2723;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(62, 39, 35, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brown-dark);
  line-height: 1.2;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.section { padding: 80px 0; }
.section-sub { max-width: 560px; color: var(--brown); margin: 12px auto 40px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(193, 97, 60, 0.35); }
.btn-secondary {
  background: transparent;
  border: 2px solid var(--terracotta);
  color: var(--terracotta-dark);
}
.btn-secondary:hover { background: var(--terracotta); color: #fff; }
.btn-call { background: var(--brown-dark); color: #fff; padding: 10px 18px; font-size: 0.9rem; }
.btn-large { font-size: 1.1rem; padding: 16px 36px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 243, 231, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(62, 39, 35, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brown-dark);
  margin-right: auto;
}
.logo-icon { width: 34px; height: 34px; color: var(--terracotta); }
.nav {
  display: flex;
  gap: 26px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a { color: var(--brown); }
.nav a:hover { color: var(--terracotta-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  display: block;
}

/* Hero */
.hero { padding: 70px 0 40px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 { font-size: 2.6rem; margin-bottom: 20px; }
.hero-sub { color: var(--brown); font-size: 1.05rem; margin-bottom: 28px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-art { display: flex; justify-content: center; }
.hero-photo {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Histoire */
.histoire { background: var(--cream-soft); }
.histoire-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: center;
}
.histoire-photo {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 auto;
}
.histoire-text h2 { font-size: 2rem; margin-bottom: 18px; }
.histoire-text p { color: var(--brown); margin-bottom: 14px; max-width: 620px; }

/* Menu grid */
.carte h2 { font-size: 2rem; margin-top: 6px; }

.carte-photo {
  margin: 36px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.carte-photo img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}
.carte-photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 24px;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent);
  color: #fff;
  font-weight: 600;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.prices-card {
  max-width: 640px;
  margin: 56px auto 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 40px;
}
.prices-card h3 { font-size: 1.3rem; }
.price-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 1rem;
}
.price-list li span:first-child { color: var(--brown-dark); font-weight: 600; white-space: nowrap; }
.price-list li span:last-child { color: var(--terracotta-dark); font-weight: 700; white-space: nowrap; }
.price-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(62, 39, 35, 0.25);
  height: 0.6em;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.15s ease;
}
.menu-card:hover { transform: translateY(-4px); }
.menu-icon { width: 56px; height: 56px; margin: 0 auto 16px; }
.menu-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.menu-card p { color: var(--brown); font-size: 0.95rem; }

/* Formules */
.formules { background: var(--brown-dark); color: var(--cream); }
.formules h2 { color: #fff; font-size: 2rem; margin-top: 6px; }
.formules-sub { color: #E8D9C8; }

.formules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.formule-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 26px;
}
.formule-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.formule-head h3 { color: #fff; font-size: 1.1rem; }
.formule-price {
  color: var(--mustard);
  font-weight: 700;
  font-size: 1.2rem;
  white-space: nowrap;
}
.formule-card p { color: #E8D9C8; font-size: 0.92rem; }
.formule-note { margin-top: 10px; font-size: 0.82rem; color: #B49B87; }

.formules-cta { text-align: center; margin-top: 44px; }
.formules-tarifs-note { margin-top: 14px; font-size: 0.82rem; color: #B49B87; }

.formules-board {
  max-width: 340px;
  margin: 40px auto 0;
  text-align: center;
}
.formules-board img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.formules-board figcaption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: #B49B87;
}

/* Infos */
.infos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.infos h2 { font-size: 2rem; margin-bottom: 20px; }
.infos-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 16px; }
.infos-list li { display: flex; flex-direction: column; gap: 4px; }
.infos-label { font-weight: 700; color: var(--terracotta-dark); }
.infos-list a { text-decoration: underline; }
.infos-note { font-size: 0.85rem; color: var(--brown); margin-bottom: 20px; }
.infos-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.infos-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Contact */
.contact { background: var(--cream-soft); text-align: center; }
.contact h2 { font-size: 2rem; margin-bottom: 12px; }
.contact p { color: var(--brown); margin-bottom: 28px; }

/* Footer */
.site-footer { background: var(--brown-dark); color: #E8D9C8; padding: 32px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-inner strong { color: #fff; }
.footer-inner p { font-size: 0.9rem; }
.footer-copy { font-size: 0.8rem; color: #B49B87; }

/* Responsive */
@media (max-width: 980px) {
  .menu-grid, .formules-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(62, 39, 35, 0.08);
    box-shadow: var(--shadow);
  }
  .nav.nav-open { display: flex; }
  .nav a { padding: 14px 24px; }
  .nav-toggle { display: flex; }
  .header-call { display: none; }
  .hero-inner, .histoire-inner, .infos-inner {
    grid-template-columns: 1fr;
  }
  .histoire-art { order: -1; }
  .hero h1 { font-size: 2rem; }
}

@media (max-width: 520px) {
  .menu-grid, .formules-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .prices-card { padding: 28px 24px; }
}
