/* ============================================================
   Kenny's Great House — App CSS
   ============================================================ */

/* ─── Custom Properties ──────────────────────────────────── */
:root {
    --bg:           #080808;
    --surface:      #111111;
    --surface-2:    #1a1a1a;
    --gold:         #C9A55A;
    --gold-lt:      #E8C97E;
    --gold-dk:      #8A6F3A;
    --text:         #EDE9E0;
    --text-muted:   #8A8078;
    --border:       rgba(201, 165, 90, 0.18);
    --border-hover: rgba(201, 165, 90, 0.45);
    --shadow-gold:  0 0 40px rgba(201, 165, 90, 0.22);
    --radius:       6px;
    --radius-lg:    14px;
    --ease:         0.3s ease;
    --font-serif:   'Playfair Display', Georgia, serif;
    --font-sans:    'Inter', -apple-system, sans-serif;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── Layout Utilities ───────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 100px 0; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-center .divider { margin-left: auto; margin-right: auto; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: var(--text);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 60px;
    line-height: 1.8;
}
.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px 0 40px;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all var(--ease);
    min-height: 48px;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold);
    color: #0a0804;
}
.btn-primary:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 165, 90, 0.35);
}
.btn-outline {
    border: 1.5px solid var(--gold);
    color: var(--gold);
}
.btn-outline:hover {
    background: rgba(201, 165, 90, 0.1);
    transform: translateY(-2px);
}

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
    opacity: 0; /* animated in by GSAP */
}
.navbar.scrolled {
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--border);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.navbar-logo {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    line-height: 1;
}
.navbar-logo span { color: var(--text); }
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    flex: 1;
    justify-content: center;
}
.navbar-nav a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--ease);
    position: relative;
    padding-bottom: 2px;
}
.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--ease);
    transform-origin: left;
}
.navbar-nav a:hover,
.navbar-nav a.active { color: var(--gold); }
.navbar-nav a:hover::after,
.navbar-nav a.active::after { transform: scaleX(1); }

/* Lang toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 14px;
    cursor: pointer;
    transition: all var(--ease);
    flex-shrink: 0;
    background: transparent;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
.lang-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    flex-shrink: 0;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 6, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 90px;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--text-muted);
    transition: color var(--ease);
    letter-spacing: 0.02em;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .lang-toggle { margin-top: 16px; }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 60% 50%, rgba(201,165,90,0.07) 0%, transparent 65%),
        linear-gradient(155deg, #1a0f02 0%, #090808 45%, #000000 100%);
    z-index: 0;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
}
.hero-decor {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 0;
}
.hero-decor-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--border);
}
.hero-decor-ring:nth-child(1) {
    width: 360px; height: 360px;
    animation: ringRotate 18s linear infinite;
}
.hero-decor-ring:nth-child(2) {
    width: 520px; height: 520px;
    border-style: dashed;
    opacity: 0.35;
    animation: ringRotate 28s linear infinite reverse;
}
.hero-decor-ring:nth-child(3) {
    width: 680px; height: 680px;
    opacity: 0.15;
    animation: ringRotate 40s linear infinite;
}
@keyframes ringRotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}
.hero-label::before {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}
.hero-title {
    font-size: clamp(3rem, 7vw, 5.8rem);
    color: var(--text);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    line-height: 1.1;
}
.hero-title .accent { color: var(--gold); }
.hero-sub {
    font-size: 1.12rem;
    color: var(--text-muted);
    max-width: 460px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}
/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 1;
    opacity: 0;
}
.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── Ambiance ───────────────────────────────────────────── */
.section-ambiance { background: var(--surface); }
.ambiance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ambiance-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
    opacity: 0;
    transform: translateY(40px);
}
.ambiance-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--ease);
}
.ambiance-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}
.ambiance-card:hover::before { opacity: 1; }
.ambiance-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    background: rgba(201, 165, 90, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 24px;
    transition: background var(--ease), border-color var(--ease);
}
.ambiance-card:hover .ambiance-icon {
    background: rgba(201, 165, 90, 0.18);
    border-color: rgba(201, 165, 90, 0.4);
}
.ambiance-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.ambiance-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.8; }
.ambiance-num {
    position: absolute;
    bottom: 16px; right: 22px;
    font-family: var(--font-serif);
    font-size: 5.5rem;
    font-weight: 700;
    color: rgba(201, 165, 90, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ─── Services ───────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 24px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--ease);
    opacity: 0;
    transform: translateY(40px);
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,165,90,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--ease);
    pointer-events: none;
}
.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(201, 165, 90, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--gold);
    font-size: 1.65rem;
    transition: all var(--ease);
}
.service-card:hover .service-icon {
    background: rgba(201, 165, 90, 0.2);
    border-color: var(--gold);
    transform: scale(1.05);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }

/* ─── Gallery ────────────────────────────────────────────── */
.section-galerie { background: var(--surface); }
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    grid-template-areas:
        "a b c"
        "a d e";
    gap: 14px;
}
.gallery-grid .gallery-item:nth-child(1) { grid-area: a; }
.gallery-grid .gallery-item:nth-child(2) { grid-area: b; }
.gallery-grid .gallery-item:nth-child(3) { grid-area: c; }
.gallery-grid .gallery-item:nth-child(4) { grid-area: d; }
.gallery-grid .gallery-item:nth-child(5) { grid-area: e; }
/* 6th image hidden in grid (appears only in mobile carousel) */
.gallery-grid .gallery-item:nth-child(6) { display: none; }

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.93);
}
.gallery-item-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s ease;
}
.gallery-item:hover .gallery-item-bg { transform: scale(1.07); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Gallery gradient placeholders */
.grd-1 { background: linear-gradient(135deg, #1c1000 0%, #3d2800 60%, #5c3e08 100%); }
.grd-2 { background: linear-gradient(135deg, #0a180a 0%, #14381a 60%, #1c5226 100%); }
.grd-3 { background: linear-gradient(135deg, #04081c 0%, #0a1040 60%, #121860 100%); }
.grd-4 { background: linear-gradient(135deg, #180408 0%, #380815 60%, #521020 100%); }
.grd-5 { background: linear-gradient(135deg, #0a041c 0%, #1c0838 60%, #2c1050 100%); }
.grd-6 { background: linear-gradient(135deg, #041818 0%, #083c38 60%, #0c5850 100%); }

/* Mobile carousel */
.gallery-carousel {
    display: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    scrollbar-width: none;
    padding-bottom: 12px;
    cursor: grab;
}
.gallery-carousel:active { cursor: grabbing; }
.gallery-carousel::-webkit-scrollbar { display: none; }
.gallery-carousel .gallery-item {
    flex: 0 0 80vw;
    height: 240px;
    scroll-snap-align: center;
    opacity: 1;
    transform: none;
}

/* ─── Galerie Complète ───────────────────────────────────── */
.section-galerie-complete { background: var(--bg); }
.galerie-complete-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
}
.masonry-grid {
    columns: 3;
    column-gap: 14px;
}
.masonry-item {
    break-inside: avoid;
    position: relative;
    margin-bottom: 14px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #c9a257;
    opacity: 0;
    transform: scale(0.95);
}
.masonry-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 162, 87, 0);
    transition: background 0.3s ease;
}
.masonry-item:hover .masonry-overlay {
    background: rgba(201, 162, 87, 0.3);
}

/* ─── Nous Trouver ───────────────────────────────────────── */
.section-nous-trouver { background: #0d0d0d; }
.nous-trouver-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
}
.nous-trouver-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.nous-trouver-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    filter: grayscale(100%) invert(90%) contrast(85%);
    border: 1px solid var(--border);
}
.nous-trouver-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.nt-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.7;
}
.nt-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: rgba(201, 165, 90, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 0.95rem;
}
.nt-item a { color: var(--text-muted); transition: color var(--ease); }
.nt-item a:hover { color: var(--gold); }

/* ─── Reservation ────────────────────────────────────────── */
.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.reservation-info .section-sub { margin-bottom: 36px; }
.res-details { display: flex; flex-direction: column; gap: 14px; }
.res-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-muted);
    font-size: 0.93rem;
}
.res-detail-icon {
    width: 38px; height: 38px;
    border-radius: var(--radius);
    background: rgba(201, 165, 90, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 0.9rem;
}
.res-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.form-group label {
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--text);
    font-size: 0.93rem;
    transition: border-color var(--ease), box-shadow var(--ease);
    width: 100%;
    min-height: 48px;
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-group textarea { min-height: 96px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--surface-2); color: var(--text); }
.select-wrap { position: relative; }
.select-wrap::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 0.85rem;
}
.btn-submit {
    width: 100%;
    background: var(--gold);
    color: #0a0804;
    border-radius: var(--radius);
    padding: 16px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all var(--ease);
    min-height: 52px;
    margin-top: 4px;
}
.btn-submit:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 165, 90, 0.38);
}

/* ─── Contact ────────────────────────────────────────────── */
.section-contact { background: var(--surface); }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.contact-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: border-color var(--ease), transform var(--ease);
}
.contact-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.contact-card-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(201, 165, 90, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 1.25rem;
}
.contact-card h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-bottom: 10px;
}
.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
.contact-card a { color: var(--text-muted); transition: color var(--ease); }
.contact-card a:hover { color: var(--gold); }
.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
}
.social-link {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all var(--ease);
}
.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 165, 90, 0.2);
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 28px 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--gold);
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: color var(--ease);
    letter-spacing: 0.04em;
}
.footer-links a:hover { color: var(--gold); }

/* ─── WhatsApp FAB ───────────────────────────────────────── */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 998;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1.5px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(201, 165, 90, 0.2);
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
    opacity: 0;
    text-decoration: none;
}
.whatsapp-fab:hover {
    background: var(--gold);
    color: #0a0804;
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(201, 165, 90, 0.4);
}

/* Back to top */
.back-top {
    position: fixed;
    bottom: 100px;
    right: 39px;
    z-index: 998;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(201, 165, 90, 0.12);
    border: 1px solid var(--border);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transition: all var(--ease);
    cursor: pointer;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: rgba(201, 165, 90, 0.22); transform: translateY(-3px); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reservation-wrapper { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
    .ambiance-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-rows: 230px 230px; }
    .masonry-grid { columns: 2; }
}

@media (max-width: 768px) {
    .navbar-nav  { display: none; }
    .lang-toggle { display: none; }
    .hamburger   { display: flex; }

    .section { padding: 72px 0; }
    .section-title { font-size: 2rem; }

    .hero {
        align-items: flex-start;
        padding-top: 88px;
        padding-bottom: 48px;
    }

    .hero-title { font-size: 3rem; }
    .hero-decor { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    .ambiance-grid  { grid-template-columns: 1fr; }
    .services-grid  { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid   { display: none; }
    .gallery-carousel { display: flex; }
    .masonry-grid { columns: 1; }
    .nous-trouver-grid { grid-template-columns: 1fr; gap: 32px; }
    .nous-trouver-map iframe { height: 250px; }
    .contact-grid   { grid-template-columns: 1fr; }
    .form-row       { grid-template-columns: 1fr; }
    .res-form       { padding: 24px; }
    .footer-inner   { flex-direction: column; text-align: center; }
    .footer-links   { justify-content: center; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
}
