/* ===========================================
   Template decoration-A — Design d'interieur Premium
   Cormorant Garamond + Outfit — Or / Charbon
   =========================================== */

:root {
  --bg: #FAF9F7;
  --bg-off: #F3F0EA;
  --dark: #1C1C1C;
  --accent: #C9A55A;
  --accent-light: rgba(201,165,90,0.12);
  --text: #1C1C1C;
  --text-muted: #8A8278;
  --line: rgba(201,165,90,0.25);
  --line-dark: rgba(28,28,28,0.1);
  --primary: #C9A55A;
  --secondary: #FAF9F7;
  --radius: 0;
  --transition: 300ms ease;
  --nav-height: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body { background: var(--bg); color: var(--text); font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.container-narrow { max-width: 700px; }

/* Bandeau promo */
.bandeau-promo { background: var(--accent); color: #fff; text-align: center; padding: 10px 40px 10px 20px; font-size: 14px; font-weight: 400; position: fixed; top: 0; left: 0; right: 0; z-index: 200; letter-spacing: 0.05em; }
.bandeau-close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 20px; cursor: pointer; color: inherit; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
  height: var(--nav-height);
}
.nav.scrolled { background: var(--bg); border-bottom-color: var(--line-dark); box-shadow: 0 2px 16px rgba(28,28,28,0.04); }
.bandeau-promo ~ .nav { top: 40px; }
.nav-container { display: flex; align-items: center; justify-content: space-between; width: 100%; height: 100%; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; font-style: italic;
  color: var(--dark); letter-spacing: 0.06em; text-decoration: none;
}
.nav-logo-img { height: 40px; width: auto; display: block; object-fit: contain; }
.nav-logo-initiale { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 0; background: var(--accent); color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; text-decoration: none; }
.nav.scrolled .nav-logo { color: var(--dark); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.2s; text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); opacity: 1; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--dark); margin: 5px 0; transition: all var(--transition); }

/* CTA Button */
.btn-cta {
  display: inline-block; background: transparent;
  color: var(--dark); border: 1px solid var(--line);
  padding: 12px 36px;
  font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap; transition: all 0.3s;
  cursor: pointer;
}
.btn-cta:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }
.btn-cta-large { font-size: 0.8rem; padding: 16px 44px; margin-top: 24px; }
.section-terracotta .btn-cta { border-color: rgba(255,255,255,0.3); color: #fff; }
.section-terracotta .btn-cta:hover { border-color: #fff; color: #fff; }
.contact-phone { margin: 24px 0 8px; }
.phone-number { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 400; color: #fff; text-decoration: none; display: inline-block; }

/* HERO DESIGN — Split vertical */
.hero-design {
  display: grid; grid-template-columns: 3fr 2fr;
  min-height: 100vh;
}
.hero-design-photo {
  position: relative; overflow: hidden; min-width: 0;
}
.hero-design-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center; display: block;
}
.hero-design-panel {
  background: var(--bg); display: flex; flex-direction: column;
  justify-content: center; padding: 100px 64px 80px 56px; min-width: 0;
  border-left: 1px solid var(--line-dark);
}
.hero-design-eyebrow {
  font-family: 'Outfit', sans-serif; font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--text-muted); display: block; margin-bottom: 40px;
}
.hero-design-panel h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 5.5rem); font-weight: 400; font-style: italic;
  color: var(--dark); line-height: 1.05; margin-bottom: 24px; min-width: 0;
}
.hero-design-panel p {
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.85; max-width: 320px; margin-bottom: 40px; min-width: 0;
}
.hero-design-palette {
  display: flex; gap: 8px; margin-bottom: 40px;
}
.hero-design-swatch {
  width: 28px; height: 28px;
}
.hero-design-swatch:nth-child(1) { background: #C9A55A; }
.hero-design-swatch:nth-child(2) { background: #8A7B6E; }
.hero-design-swatch:nth-child(3) { background: #D6C9B8; }

/* Legacy hero (hidden, kept for JS compat) */
.hero { display: none; }
.hero-bg, .hero-overlay, .hero-content, .hero-sub { display: none; }

/* A PROPOS DESIGN — Magazine layout */
.apropos-design {
  display: grid; grid-template-columns: 2fr 3fr;
  gap: 0; align-items: stretch; min-width: 0;
}
.apropos-design-text {
  padding: 96px 72px; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; min-width: 0;
}
.apropos-design-num {
  font-family: 'Cormorant Garamond', serif; font-size: 7rem; font-weight: 400;
  color: var(--line); line-height: 1; display: block; margin-bottom: -20px;
}
.apropos-design-tag {
  font-family: 'Outfit', sans-serif; font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 20px;
}
.apropos-design-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; font-style: italic;
  color: var(--text); margin-bottom: 20px; min-width: 0;
}
.apropos-design-text p {
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.9; margin-bottom: 32px; min-width: 0;
}
.apropos-design-img { overflow: hidden; min-width: 0; }
.apropos-design-img img {
  width: 100%; height: 100%; min-height: 480px; object-fit: cover; display: block;
}

/* Sections */
.section { padding: 96px 0; }
.section-beige { background: var(--bg-off); }
.section-dark { background: var(--dark); color: #FAF9F7; }
.section-terracotta { background: var(--accent); color: #fff; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; font-style: italic;
  color: var(--text); margin-bottom: 48px; text-align: center;
}
.section-terracotta .section-title { color: #fff; }
.section-subtitle { text-align: center; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; font-size: 0.9rem; font-weight: 300; }
.section-dark .section-subtitle { color: rgba(250,249,247,0.5); }
.section-terracotta .section-subtitle { color: rgba(255,255,255,0.8); }

/* Split layout (horaires, etc.) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-text h2 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 2rem; margin-bottom: 16px; }
.split-text p { color: var(--text-muted); line-height: 1.8; font-size: 0.9rem; min-width: 0; }
.split-image img { width: 100%; object-fit: cover; }
.placeholder-img { background: var(--bg-off); display: flex; align-items: center; justify-content: center; min-height: 200px; border: 1px solid var(--line-dark); }
.placeholder-img span { color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.1em; }
.section-dark .placeholder-img { background: rgba(250,249,247,0.05); }

/* Tabs (catalogue, menu) */
.tabs { display: flex; border-bottom: 1px solid var(--line-dark); margin-bottom: 40px; }
.tab-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); padding: 12px 24px;
  border-bottom: 1px solid transparent; margin-bottom: -1px; transition: all 0.2s;
}
.tab-btn.active, .tab-btn:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Menu tabs (dark sections) */
.menu-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.menu-tab { padding: 10px 24px; background: transparent; color: rgba(250,249,247,0.5); border: 1px solid rgba(250,249,247,0.2); border-radius: 0; font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: all var(--transition); }
.menu-tab:hover { border-color: var(--accent); color: var(--accent); }
.menu-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.menu-cat { display: none; }
.menu-cat.active { display: block; }
.menu-grid { max-width: 700px; margin: 0 auto; }
.menu-item { display: flex; align-items: flex-start; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid rgba(250,249,247,0.1); }
.menu-item:last-child { border-bottom: none; }
.menu-item-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; margin-bottom: 4px; color: #FAF9F7; }
.menu-item-info p { font-size: 0.8rem; color: rgba(250,249,247,0.4); font-style: italic; }
.menu-item-prix { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--accent); font-weight: 400; white-space: nowrap; margin-left: 16px; }

/* Horaires */
.horaires-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.horaires-table tr { border-bottom: 1px solid var(--line-dark); }
.horaires-table td { padding: 10px 0; font-size: 0.9rem; font-family: 'Outfit', sans-serif; font-weight: 300; color: var(--text-muted); }
.jour { font-weight: 500; color: var(--text); width: 120px; }
.ferme .heures { color: var(--text-muted); font-style: italic; opacity: 0.5; }
.coordonnees { margin-top: 28px; }
.coord-item { font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 300; color: var(--text-muted); margin-bottom: 8px; }
.coord-item a { color: var(--accent); }
.map-container iframe { display: block; width: 100%; height: 100%; min-height: 300px; border: 0; }

/* Footer */
.footer { background: var(--dark); color: rgba(250,249,247,0.5); padding: 48px 0 24px; font-size: 0.85rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; font-style: italic; color: #FAF9F7; display: block; margin-bottom: 12px; }
.footer h4 { color: rgba(250,249,247,0.6); margin-bottom: 12px; font-family: 'Outfit', sans-serif; font-size: 0.65rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; }
.footer a { color: rgba(250,249,247,0.5); text-decoration: none; }
.footer a:hover { color: #FAF9F7; }
.footer p { margin-bottom: 6px; font-weight: 300; }
.footer-bottom { border-top: 1px solid rgba(250,249,247,0.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.75rem; }
.footer-credit { color: rgba(250,249,247,0.2); }
.footer-credit a { color: rgba(250,249,247,0.2); }

/* === Formulaires & succes (Reservation + C&C) === */
.resa-back { background: none; border: none; color: var(--accent); cursor: pointer; font-size: 0.9rem; margin-bottom: 16px; padding: 0; text-decoration: underline; }
.resa-form .form-group { margin-bottom: 16px; }
.resa-form label { display: block; font-weight: 400; margin-bottom: 6px; font-size: 0.88rem; letter-spacing: 0.02em; }
.resa-form input, .resa-form select { width: 100%; padding: 10px 14px; border: 1px solid var(--line-dark); border-radius: 0; font-size: 1rem; box-sizing: border-box; font-family: 'Outfit', sans-serif; font-weight: 300; background: var(--bg); }
.resa-form input:focus, .resa-form select:focus { outline: none; border-color: var(--accent); }
.form-error { color: #c0392b; font-size: 0.88rem; margin-bottom: 12px; padding: 8px 12px; background: #fdf0ef; border-radius: 0; }
.resa-success { text-align: center; padding: 40px 0; }
.resa-success-icon { font-size: 3.5rem; color: var(--accent); margin-bottom: 12px; }
.resa-success h3 { font-size: 1.4rem; margin-bottom: 8px; }
.resa-success p { color: var(--text-muted); margin-bottom: 24px; }

/* Switcher langue */
.lang-switcher { display: flex; align-items: center; gap: 4px; margin-left: 16px; }
.lang-btn { background: transparent; border: 1px solid var(--line-dark); color: inherit; border-radius: 0; padding: 3px 7px; font-size: 0.72rem; font-weight: 400; cursor: pointer; letter-spacing: 0.05em; transition: background 0.2s, color 0.2s; line-height: 1.4; }
.lang-btn:hover { background: var(--accent-light); }
.lang-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* WhatsApp float */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.3); z-index: 90; transition: transform var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); opacity: 1; }

/* Responsive */
@media (max-width: 900px) {
  .hero-design { grid-template-columns: 1fr; }
  .hero-design-photo { height: 55vw; min-height: 280px; }
  .hero-design-panel { padding: 56px 28px 64px; border-left: none; border-top: 1px solid var(--line-dark); }
  .apropos-design { grid-template-columns: 1fr; }
  .apropos-design-img img { min-height: 280px; }
  .apropos-design-text { padding: 56px 24px; }
  .split { grid-template-columns: 1fr; }
  .split-image { order: -1; }
  .nav { padding: 16px 24px; }
  .nav-links {
    display: none; position: fixed; inset: 0; top: var(--nav-height);
    background: var(--bg); flex-direction: column;
    align-items: center; justify-content: center; gap: 0;
    padding: 0; max-height: 0; overflow: hidden; transition: max-height 300ms ease;
  }
  .nav-links.open { display: flex; max-height: 100vh; }
  .nav-links li { border-bottom: 1px solid var(--line-dark); width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; text-align: center; }
  .nav-toggle { display: flex; }
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 360px) {
  .hero-design-panel h1 { font-size: 2rem; }
}
