/* ============================================
   L'EDELWEISS — Restaurant Savoyard
   Thème : bois chaleureux, ambiance chalet
   ============================================ */

/* -------- VARIABLES -------- */
:root {
    --wood-dark:    #3d2817;
    --wood-medium:  #6b4423;
    --wood-light:   #a87850;
    --wood-pale:    #d4b896;
    --cream:        #f5ecd9;
    --cream-soft:   #faf4e6;
    --gold:         #c9923f;
    --gold-light:   #e3b863;
    --red-savoyard: #8b2c1e;
    --green-pine:   #2d4a2b;
    --white:        #ffffff;
    --shadow-sm:    0 2px 8px rgba(61, 40, 23, 0.15);
    --shadow-md:    0 8px 24px rgba(61, 40, 23, 0.2);
    --shadow-lg:    0 20px 50px rgba(61, 40, 23, 0.3);
    --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Lora', Georgia, serif;
    color: var(--wood-dark);
    background: var(--cream-soft);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', 'Times New Roman', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }

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

/* -------- WOOD TEXTURE — applied via background SVG -------- */
.wood-bg {
    background-color: var(--wood-medium);
    background-image:
        repeating-linear-gradient(90deg,
            rgba(0,0,0,0.06) 0px,
            rgba(0,0,0,0.06) 1px,
            transparent 1px,
            transparent 3px),
        repeating-linear-gradient(90deg,
            rgba(255,255,255,0.04) 0px,
            rgba(255,255,255,0.04) 2px,
            transparent 2px,
            transparent 8px),
        radial-gradient(ellipse 200% 80% at 50% 0%,
            rgba(107, 68, 35, 0.6) 0%,
            transparent 50%),
        linear-gradient(180deg, #6b4423 0%, #3d2817 100%);
}

/* -------- CONTAINER -------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(61, 40, 23, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 184, 150, 0.2);
}

.navbar.scrolled {
    background: rgba(61, 40, 23, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cream);
}

.logo-flower {
    color: var(--gold-light);
    font-size: 1.8rem;
    transform: rotate(15deg);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--cream);
}

.nav-menu {
    display: flex;
    gap: 36px;
}

.nav-menu a {
    color: var(--cream);
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover { color: var(--gold-light); }
.nav-menu a:hover::after { width: 100%; }

.nav-burger {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 28px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 4px 0;
}

.nav-burger span {
    width: 100%;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--cream);
    text-align: center;
    padding: 100px 20px 60px;
    background-color: #1c0f06;
}

/* Image de fond traitée — filtres CSS pour compenser la basse résolution :
   contraste/saturation/netteté + très léger flou directionnel masqué
   par les calques suivants. L'image ne devient pas "HD" mais paraît
   nettement plus qualitative à l'œil. */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("images/LEdelweiss-ETABLISSEMENT.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: saturate(1.05) brightness(0.92);
    transform: scale(1.02);
    z-index: 0;
}

/* Calque dégradé chaleureux par-dessus l'image, façon "couché de soleil
   sur le chalet" — masque la perte de détail et unifie la chromie. */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(42, 26, 14, 0.55) 0%,
            rgba(42, 26, 14, 0.45) 40%,
            rgba(28, 15, 6, 0.85) 100%),
        radial-gradient(ellipse 90% 70% at 50% 35%,
            rgba(201, 146, 63, 0.18) 0%,
            transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* Vignette douce */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center,
            transparent 30%,
            rgba(28, 15, 6, 0.55) 85%,
            rgba(28, 15, 6, 0.9) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Le contenu doit passer au-dessus de tous les calques */
.hero-content,
.hero-scroll { z-index: 3; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeUp 1.2s ease-out;
}

.hero-pretitle {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--cream);
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 40px;
    color: var(--cream-soft);
    font-style: italic;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--gold-light);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.hero-info span:first-child {
    font-size: 1.2rem;
    letter-spacing: 0.4em;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid var(--cream);
    border-radius: 12px;
    z-index: 2;
}

.hero-scroll span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 8px;
    background: var(--cream);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0%   { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--wood-dark);
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(201, 146, 63, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(201, 146, 63, 0.6);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--wood-dark);
    transform: translateY(-3px);
}

/* ============================================
   SECTION COMMUNS
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.light h2,
.section-header.light .eyebrow { color: var(--cream); }
.section-header.light .section-intro { color: var(--cream-soft); }
.section-header.light .divider span { color: var(--gold-light); }
.section-header.light .divider::before,
.section-header.light .divider::after { background: rgba(245, 236, 217, 0.35); }

.eyebrow {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--wood-dark);
    margin-bottom: 24px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.divider::before,
.divider::after {
    content: '';
    width: 80px;
    height: 1px;
    background: var(--wood-light);
}

.divider span {
    color: var(--gold);
    font-size: 1.4rem;
    transform: rotate(15deg);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--wood-medium);
    line-height: 1.7;
    font-style: italic;
}

/* ============================================
   PRESENTATION
   ============================================ */
.presentation {
    background: var(--cream-soft);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 184, 150, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(201, 146, 63, 0.1) 0%, transparent 40%);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.text-block .lead {
    font-size: 1.25rem;
    color: var(--wood-medium);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.text-block p { margin-bottom: 18px; }

.text-block strong { color: var(--wood-dark); font-weight: 600; }

.quote {
    margin-top: 32px;
    padding: 24px 30px;
    border-left: 4px solid var(--gold);
    background: rgba(212, 184, 150, 0.2);
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--wood-medium);
    border-radius: 0 6px 6px 0;
}

.quote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

/* IMAGE STACK — 4 photos en mosaïque chaleureuse */
.image-stack {
    position: relative;
    height: 640px;
}

.img-card {
    position: absolute;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 8px solid var(--cream);
    transition: var(--transition);
}

.img-card:hover { transform: scale(1.05) rotate(0deg) !important; z-index: 10; }

.img-card-1 { top: 0;      left: 0;     width: 58%; height: 48%; transform: rotate(-3deg); z-index: 3; }
.img-card-2 { top: 5%;     right: 0;    width: 50%; height: 42%; transform: rotate(2deg);  z-index: 2; }
.img-card-3 { bottom: 0;   left: 5%;    width: 52%; height: 45%; transform: rotate(-2deg); z-index: 4; }
.img-card-4 { bottom: 8%;  right: 4%;   width: 48%; height: 42%; transform: rotate(3deg);  z-index: 1; }

.img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Vraies photos du restaurant */
.img-interior {
    background-image: url("https://cdn.website.dish.co/media/30/5d/2320081/LEdelweiss-INTERIEUR.jpg");
}
.img-dish-1 {
    background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR1XHh3sJ35PVH4x1zRzLxZzKxmbuCNOTpRzg&s");
}
.img-dish-2 {
    background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQy5VXJUbDdOimsd0SVWqHIvAPPv35p7sRISw&s");
}
.img-table {
    background-image: url("https://www.pagesjaunes.fr/media/newdam/2a/46/88/00/00/db/21/ba/f6/32/5d3f2a46880000db21baf632/5d3f2a46880000db21baf633.jpg");
}

/* ============================================
   SPECIALITES (fond bois)
   ============================================ */
.specialites {
    background-color: var(--wood-medium);
    background-image:
        repeating-linear-gradient(180deg,
            rgba(0,0,0,0.04) 0px,
            rgba(0,0,0,0.04) 1px,
            transparent 1px,
            transparent 4px),
        repeating-linear-gradient(180deg,
            rgba(255,255,255,0.03) 0px,
            rgba(255,255,255,0.03) 2px,
            transparent 2px,
            transparent 12px),
        radial-gradient(ellipse 100% 60% at 20% 30%, rgba(168, 120, 80, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 100% 60% at 80% 70%, rgba(107, 68, 35, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #6b4423 0%, #3d2817 50%, #5a3a1d 100%);
    color: var(--cream);
}

.specialites::before,
.specialites::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 24px;
    background-image: linear-gradient(90deg,
        var(--wood-dark) 0%, var(--wood-medium) 50%, var(--wood-dark) 100%);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.4);
}
.specialites::before { top: 0; }
.specialites::after  { bottom: 0; }

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.specialty {
    background: linear-gradient(135deg, rgba(245, 236, 217, 0.95) 0%, rgba(250, 244, 230, 0.95) 100%);
    padding: 36px 28px;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 146, 63, 0.3);
    position: relative;
    color: var(--wood-dark);
}

.specialty:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.specialty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.specialty h3 {
    font-size: 1.3rem;
    color: var(--wood-dark);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.specialty p {
    color: var(--wood-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   CARTE / MENU
   ============================================ */
.carte {
    background-color: var(--cream-soft);
    background-image:
        repeating-linear-gradient(0deg,
            transparent 0px,
            transparent 38px,
            rgba(168, 120, 80, 0.06) 38px,
            rgba(168, 120, 80, 0.06) 40px);
    position: relative;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.menu-section {
    background: var(--cream);
    padding: 38px 36px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(168, 120, 80, 0.25);
    position: relative;
}

.menu-section.highlight {
    grid-row: span 2;
    background: linear-gradient(180deg, var(--cream) 0%, #f8eed5 100%);
    border: 2px solid var(--gold);
    box-shadow: 0 12px 30px rgba(201, 146, 63, 0.2);
}

.menu-section.highlight::before {
    content: '★ NOS INCONTOURNABLES ★';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--cream);
    padding: 4px 18px;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

/* Sur mobile, on resserre le badge pour qu'il reste sur une ligne
   sans déborder du card highlight */
@media (max-width: 480px) {
    .menu-section.highlight::before {
        content: '★ INCONTOURNABLES ★';
        font-size: 0.62rem;
        letter-spacing: 0.12em;
        padding: 4px 12px;
    }
    .menu-section.highlight {
        margin-top: 14px;
    }
}

.menu-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--wood-dark);
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
    letter-spacing: 0.08em;
    position: relative;
}

.menu-title::after {
    content: '❀';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cream);
    color: var(--gold);
    padding: 0 8px;
    font-size: 1.1rem;
}

.menu-section.highlight .menu-title::after {
    background: #f8eed5;
}

.menu-list {
    list-style: none;
}

.menu-list li {
    margin-bottom: 22px;
}

.menu-list li:last-child { margin-bottom: 0; }

.menu-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Lora', serif;
}

.menu-name {
    font-weight: 600;
    color: var(--wood-dark);
    font-size: 1.05rem;
}

.dots {
    flex: 1;
    border-bottom: 2px dotted rgba(107, 68, 35, 0.3);
    min-width: 20px;
    transform: translateY(-4px);
}

.menu-price {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--gold);
    font-size: 1rem;
    white-space: nowrap;
}

.menu-desc {
    font-size: 0.88rem;
    color: var(--wood-medium);
    font-style: italic;
    margin-top: 4px;
    line-height: 1.5;
}

.menu-footer {
    text-align: center;
    padding: 24px;
    background: rgba(212, 184, 150, 0.2);
    border-radius: 4px;
    border: 1px dashed var(--wood-light);
}

.menu-footer p { color: var(--wood-medium); }
.menu-footer strong { color: var(--gold); font-family: 'Cinzel', serif; }

/* ============================================
   INFOS PRATIQUES (fond bois)
   ============================================ */
.infos {
    background-color: var(--wood-dark);
    background-image:
        repeating-linear-gradient(90deg,
            rgba(0,0,0,0.06) 0px,
            rgba(0,0,0,0.06) 1px,
            transparent 1px,
            transparent 3px),
        repeating-linear-gradient(90deg,
            rgba(255,255,255,0.03) 0px,
            rgba(255,255,255,0.03) 2px,
            transparent 2px,
            transparent 10px),
        radial-gradient(ellipse 200% 80% at 50% 0%, rgba(107, 68, 35, 0.4) 0%, transparent 50%),
        linear-gradient(180deg, #4a2f1a 0%, #2a1a0e 100%);
    color: var(--cream);
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.info-card {
    background: rgba(245, 236, 217, 0.06);
    padding: 32px 24px;
    border-radius: 6px;
    text-align: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(245, 236, 217, 0.15);
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(245, 236, 217, 0.1);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.info-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.info-card h3 {
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 14px;
    letter-spacing: 0.08em;
}

.info-card p { color: var(--cream-soft); line-height: 1.7; }

.info-card a { color: var(--gold-light); }
.info-card a:hover { color: var(--cream); }

.info-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--gold-light);
    font-size: 0.9rem;
    font-style: italic;
}

.services-list {
    list-style: none;
    text-align: left;
    padding-left: 12px;
}

.services-list li {
    padding: 6px 0;
    color: var(--cream-soft);
    position: relative;
    padding-left: 22px;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-weight: bold;
}

/* PAYMENT */
.payment-block {
    background: rgba(245, 236, 217, 0.08);
    padding: 40px 30px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 50px;
    border: 1px solid rgba(245, 236, 217, 0.15);
}

.payment-block h3 {
    color: var(--gold-light);
    margin-bottom: 24px;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--cream-soft);
}

.payment-icon {
    width: 70px;
    height: 46px;
    background: var(--cream);
    color: var(--wood-dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 2px solid rgba(201, 146, 63, 0.4);
    transition: var(--transition);
}

.payment-item:hover .payment-icon {
    transform: translateY(-3px);
    border-color: var(--gold-light);
}

.payment-icon:first-child { font-size: 1.5rem; }
.tr { color: #fff; background: linear-gradient(135deg, #d52b1e 0%, #c41e3a 100%); }

/* Carte Bancaire — regroupement VISA/MC/Maestro */
.payment-icon-cb {
    width: auto;
    min-width: 150px;
    padding: 6px 10px;
    gap: 6px;
    background: var(--cream);
}

.cb-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 8px;
    border-radius: 3px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.75rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.cb-visa    { color: #1a1f71; letter-spacing: 0.05em; }
.cb-mc      { color: #eb001b; }
.cb-maestro { color: #0099df; }

.cb-small {
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    color: rgba(245, 236, 217, 0.6);
    font-style: italic;
    letter-spacing: 0.04em;
}

.payment-item span {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.map-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
    line-height: 0;
    font-size: 0;
}

.map-wrap iframe {
    display: block;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--cream-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form {
    background: var(--cream);
    padding: 40px;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(168, 120, 80, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 18px;
}

.contact-form span {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--wood-medium);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(168, 120, 80, 0.3);
    background: var(--cream-soft);
    border-radius: 3px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--wood-dark);
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.contact-form select {
    background-image:
        linear-gradient(45deg, transparent 50%, var(--wood-medium) 50%),
        linear-gradient(135deg, var(--wood-medium) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) center,
        calc(100% - 12px) center;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 36px;
    cursor: pointer;
}

.contact-form input[type="date"] {
    cursor: pointer;
    font-family: 'Lora', serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(107, 68, 35, 0.4);
    font-style: italic;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--gold);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 146, 63, 0.15);
}

.contact-form textarea { resize: vertical; }

.contact-form .btn {
    margin-top: 14px;
    width: 100%;
}

.form-note {
    margin-top: 14px;
    font-style: italic;
    color: var(--green-pine);
    min-height: 1.4em;
    transition: var(--transition);
}

.form-note.success {
    padding: 12px 16px;
    background: rgba(45, 74, 43, 0.08);
    border-left: 3px solid var(--green-pine);
    border-radius: 3px;
}

.form-legal {
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--wood-medium);
    font-style: italic;
    line-height: 1.5;
    opacity: 0.85;
}

/* Encart conseils dans l'aside */
.reservation-tips {
    margin-top: 8px;
    padding: 18px 20px;
    background: rgba(245, 236, 217, 0.08);
    border: 1px dashed rgba(227, 184, 99, 0.4);
    border-radius: 4px;
}

.reservation-tips p {
    color: var(--gold-light);
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.reservation-tips ul {
    list-style: none;
    padding: 0;
}

.reservation-tips li {
    color: var(--cream-soft);
    font-size: 0.88rem;
    line-height: 1.6;
    padding: 4px 0 4px 18px;
    position: relative;
}

.reservation-tips li::before {
    content: '❀';
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-size: 0.7rem;
}

.contact-side {
    background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood-medium) 100%);
    color: var(--cream);
    padding: 40px;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-side h3 {
    color: var(--gold-light);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.contact-side p { color: var(--cream-soft); line-height: 1.7; }
.contact-side a { color: var(--gold-light); }
.contact-side a:hover { color: var(--cream); }

.social {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(245, 236, 217, 0.1);
    border-radius: 50%;
    color: var(--cream);
    transition: var(--transition);
}

.social a:hover {
    background: var(--gold);
    color: var(--wood-dark);
    transform: translateY(-3px);
}

.opening-small {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 236, 217, 0.2);
    font-size: 0.9rem;
}

.opening-small strong { color: var(--gold-light); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #1f1208;
    background-image:
        repeating-linear-gradient(90deg,
            rgba(0,0,0,0.2) 0px,
            rgba(0,0,0,0.2) 1px,
            transparent 1px,
            transparent 3px),
        linear-gradient(180deg, #2a1a0e 0%, #1a0f08 100%);
    color: var(--cream-soft);
    padding: 70px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    color: var(--cream);
}

.footer h4 {
    color: var(--gold-light);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.footer ul { list-style: none; }
.footer ul li { padding: 5px 0; }
.footer a { color: var(--cream-soft); }
.footer a:hover { color: var(--gold-light); }
.footer p { line-height: 1.8; font-size: 0.95rem; }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(245, 236, 217, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(245, 236, 217, 0.55);
}

.footer-small {
    margin-top: 6px;
    font-style: italic;
    font-size: 0.78rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
    .grid-2 { grid-template-columns: 1fr; gap: 50px; }
    .image-stack { height: 480px; }
    .menu-grid { grid-template-columns: 1fr; gap: 30px; }
    .menu-section.highlight { grid-row: auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .nav-menu {
        position: fixed;
        top: 78px;
        right: -100%;
        flex-direction: column;
        background: rgba(61, 40, 23, 0.98);
        width: 100%;
        padding: 30px 24px;
        gap: 18px;
        transition: var(--transition);
        height: calc(100vh - 78px);
    }
    .nav-menu.open { right: 0; }
    .nav-menu a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(245, 236, 217, 0.15);
    }
    .nav-burger { display: flex; }
    .nav-burger.open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

    .section { padding: 70px 0; }
    .hero { background-attachment: scroll; }
    .image-stack { height: 380px; }
    .form-row,
    .form-row-3 { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
    .menu-section { padding: 28px 22px; }
    .payment-methods { gap: 18px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
    .img-card-1, .img-card-2, .img-card-3 {
        position: relative;
        width: 100%;
        height: 200px;
        transform: none;
        margin-bottom: 16px;
    }
    .image-stack { height: auto; }
}
