/* ===========================================
   Template restaurant-prestige — Minimaliste suisse
   Cormorant Garamond + Jost — Blanc / Noir / Or discret
   Le vide EST le design
   =========================================== */

:root {
    --primary: #1A1A1A;
    --accent: #8B6914;
    --bg: #FFFFFF;
    --bg-off: #F8F8F6;
    --text: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #888888;
    --line: #E0E0E0;
    --border: #E0E0E0;
    --border-light: #EFEFEF;
    --radius: 0px;
    --shadow: 0 12px 48px rgba(0,0,0,0.04);
    --transition: 300ms ease;
    --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body { font-family: 'Jost', sans-serif; font-size: 15px; line-height: 1.8; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; font-weight: 300; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 680px; }

/* BANDEAU */
.bandeau-promo { background: var(--primary); color: var(--bg); text-align: center; padding: 10px 40px 10px 20px; font-size: 11px; font-weight: 400; position: fixed; top: 0; left: 0; right: 0; z-index: 200; letter-spacing: 0.2em; text-transform: uppercase; font-family: 'Jost', sans-serif; }
.bandeau-close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 18px; cursor: pointer; color: inherit; }

/* NAV — blanc, fine ligne inferieure, JAMAIS de fond sombre */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); background: var(--bg); border-bottom: 1px solid var(--line); z-index: 100; transition: box-shadow var(--transition); }
.nav.scrolled { background: var(--bg); box-shadow: 0 1px 12px rgba(0,0,0,0.04); }
.bandeau-promo ~ .nav { top: 40px; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 400; color: var(--primary); text-decoration: none; letter-spacing: 0.3em; text-transform: uppercase; }
.nav-logo-img { height: 36px; width: auto; display: block; object-fit: contain; }
.nav-logo-initiale { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--line); color: var(--primary); font-family: 'Cormorant Garamond', serif; font-size: 18px; text-decoration: none; }
.nav-links { list-style: none; display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-muted); font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 20px; height: 1px; background: var(--primary); transition: all var(--transition); }

/* HERO — Minimaliste suisse : fond blanc, grille texte + photo carree */
.hero-swiss { min-height: 100vh; display: flex; align-items: center; background: var(--bg); padding: 120px 72px 80px; }
.hero-swiss-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; min-width: 0; }
.hero-swiss-text { min-width: 0; }
.hero-swiss-label { font-family: 'Jost', sans-serif; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 40px; }
.hero-swiss-text h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(4rem, 8vw, 8rem); font-weight: 300; letter-spacing: 0.05em; color: var(--primary); line-height: 1; margin: 0 0 32px; }
.hero-swiss-text p { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; max-width: 380px; margin-bottom: 48px; }
.hero-swiss-photo { aspect-ratio: 1/1; overflow: hidden; min-width: 0; }
.hero-swiss-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); }

/* Hide old hero classes (not used in swiss redesign but kept for safety) */
.hero { display: none; }

/* BTN — souligne fin, pas de fond */
.btn-cta { display: inline-block; padding: 0 0 6px 0; border: none; border-bottom: 1px solid var(--primary); color: var(--primary); font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; background: none; cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.btn-cta:hover { color: var(--accent); border-color: var(--accent); }
.btn-cta-outline { border-bottom-color: var(--text-muted); color: var(--text-muted); }
.btn-cta-outline:hover { color: var(--accent); border-color: var(--accent); }
.btn-cta-large { font-size: 0.8rem; letter-spacing: 0.25em; }

/* SECTIONS */
.section { padding: 120px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-beige { background: var(--bg-off); }
.section-dark { background: var(--primary); color: var(--text-light); }
.section-terracotta { background: var(--bg); color: var(--primary); border-top: 1px solid var(--line); }
.section-title { text-align: center; font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 56px; }
.section-dark .section-title { color: rgba(255,255,255,0.4); }
.section-terracotta .section-title { color: var(--text-muted); }
.section-subtitle { text-align: center; color: var(--text-muted); max-width: 520px; margin: -40px auto 56px; font-family: 'Jost', sans-serif; font-size: 0.95rem; line-height: 1.9; font-weight: 300; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.35); }
.section-terracotta .section-subtitle { color: var(--text-muted); }

/* A PROPOS — Minimaliste suisse : large texte gauche + petite sidebar droite */
.apropos-swiss { display: grid; grid-template-columns: 3fr 1fr; gap: 80px; align-items: start; padding: 120px 0; min-width: 0; }
.apropos-swiss-text { min-width: 0; }
.apropos-swiss-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 300; color: var(--primary); margin-bottom: 32px; }
.apropos-swiss-text p { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 300; color: var(--text-muted); line-height: 1.9; max-width: 560px; }
.apropos-swiss-aside { display: flex; flex-direction: column; gap: 40px; padding-top: 80px; min-width: 0; }
.apropos-swiss-aside .aside-line { border-top: 1px solid var(--line); padding-top: 16px; }
.aside-label { font-family: 'Jost', sans-serif; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); }
.aside-value { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--primary); }

/* Hide old apropos classes */
.apropos-grand { display: none; }

/* SPLIT generique */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-text { min-width: 0; }
.split-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; color: var(--primary); font-weight: 300; }
.split-text p { font-size: 15px; line-height: 1.9; color: var(--text-muted); font-weight: 300; }
.split-image { min-width: 0; }
.split-image img { width: 100%; }
.placeholder-img { background: var(--bg-off); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; }
.section-dark .placeholder-img { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.3); }

/* MENU CARTE */
.menu-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 48px; flex-wrap: wrap; }
.menu-tab { padding: 10px 28px; background: transparent; color: var(--text-muted); border: none; border-bottom: 1px solid var(--line); font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: all var(--transition); }
.menu-tab:hover { color: var(--primary); }
.menu-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.section-dark .menu-tab { color: rgba(255,255,255,0.35); border-bottom-color: rgba(255,255,255,0.1); }
.section-dark .menu-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.menu-cat { display: none; }
.menu-cat.active { display: block; }
.menu-grid { max-width: 680px; margin: 0 auto; }
.menu-item { display: flex; align-items: flex-start; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--border-light); }
.menu-item:last-child { border-bottom: none; }
.menu-item-info { min-width: 0; }
.menu-item-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; margin-bottom: 4px; color: var(--text); }
.section-dark .menu-item-info h3 { color: var(--text-light); }
.menu-item-info p { font-size: 13px; color: var(--text-muted); font-style: italic; font-weight: 300; }
.section-dark .menu-item-info p { color: rgba(255,255,255,0.35); }
.menu-item-prix { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--accent); white-space: nowrap; margin-left: 20px; font-weight: 400; }

/* HORAIRES */
.horaires-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.horaires-table tr { border-bottom: 1px solid var(--border-light); }
.horaires-table td { padding: 12px 0; font-size: 14px; font-weight: 300; }
.jour { font-weight: 400; width: 130px; letter-spacing: 0.5px; }
.ferme .heures { color: var(--text-muted); font-style: italic; }
.coordonnees { margin-top: 20px; }
.coord-item { margin-bottom: 10px; font-size: 14px; color: var(--text-muted); font-weight: 300; }
.coord-item a { color: var(--primary); }
.coord-item strong { color: var(--text); font-weight: 400; }
.map-container { overflow: hidden; }
.map-container iframe { width: 100%; height: 360px; border: none; display: block; }

/* Contact section — fond blanc, pas terracotta */
.section-terracotta .section-title { color: var(--text-muted); }
.section-terracotta .section-subtitle { color: var(--text-muted); }
.contact-phone { margin: 24px 0 12px; }
.phone-number { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; color: var(--primary); text-decoration: none; display: inline-block; letter-spacing: 0.02em; }
.section-terracotta .phone-number { color: var(--primary); }
.section-terracotta .btn-cta { color: var(--primary); border-bottom-color: var(--primary); }
.section-terracotta .btn-cta:hover { color: var(--accent); border-color: var(--accent); }

/* FOOTER */
.footer { background: var(--primary); color: rgba(255,255,255,0.4); padding: 80px 0 32px; font-size: 14px; font-weight: 300; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: rgba(255,255,255,0.6); display: block; margin-bottom: 16px; font-weight: 300; letter-spacing: 0.1em; }
.footer h4 { color: rgba(255,255,255,0.3); margin-bottom: 14px; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 400; font-family: 'Jost', sans-serif; }
.footer a { color: rgba(255,255,255,0.4); }
.footer a:hover { color: rgba(255,255,255,0.8); }
.footer p { margin-bottom: 6px; line-height: 1.7; }
.footer-address { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; font-size: 12px; }
.footer-credit { color: rgba(255,255,255,0.15); }
.footer-credit a { color: rgba(255,255,255,0.15); }

/* FORMS */
.resa-back { background: none; border: none; color: var(--primary); 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.9rem; letter-spacing: 0.5px; }
.resa-form input, .resa-form select { width: 100%; padding: 10px 14px; border: 1px solid var(--line); font-size: 1rem; box-sizing: border-box; font-family: inherit; background: var(--bg); color: var(--text); border-radius: 0; }
.resa-form input:focus, .resa-form select:focus { outline: none; border-color: var(--primary); }
.form-error { color: #c0392b; font-size: 0.88rem; margin-bottom: 12px; padding: 8px 12px; background: #fdf0ef; }
.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; }

/* LANG */
.lang-switcher { display: flex; align-items: center; gap: 4px; margin-left: 16px; }
.lang-btn { background: transparent; border: 1px solid var(--line); color: var(--text-muted); 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(--bg-off); }
.lang-btn.active { background: var(--primary); border-color: var(--primary); color: var(--bg); }

.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); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .apropos-swiss { grid-template-columns: 1fr; gap: 48px; padding: 80px 0; }
    .apropos-swiss-aside { padding-top: 0; }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
    .hero-swiss { padding: 100px 24px 60px; min-height: auto; }
    .hero-swiss-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-swiss-text h1 { font-size: clamp(3rem, 12vw, 5rem); }
    .hero-swiss-photo { max-width: 400px; }
    .nav-toggle { display: flex; }
    .nav-links { position: fixed; top: var(--nav-height); left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); flex-direction: column; gap: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 300ms ease; border-bottom: 1px solid var(--line); }
    .nav-links.open { max-height: 440px; }
    .nav-links li { border-bottom: 1px solid var(--border-light); }
    .nav-links a { display: block; padding: 14px 24px; color: var(--text); }
    .section { padding: 80px 0; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
