/* ═══════════════════════════════════════════════════════════
   Charly Traiteur — Style
   Dark, warm & generous — Mediterranean catering ambiance
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #e8943a;
    --primary-dark: #d07a28;
    --primary-light: #f0a854;
    --accent: #e8943a;
    --accent-light: #f0b060;
    --dark: #1a1410;
    --dark-soft: #241e16;
    --dark-card: #2a2018;
    --text: #222;
    --text-light: #707070;
    --text-muted: #a0a0a0;
    --bg: #faf8f5;
    --bg-alt: #f2efe8;
    --white: #fff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Work Sans', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

main { flex: 1 0 auto; }
.footer { flex-shrink: 0; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Navigation ─────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(26, 20, 16, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 1100;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.3rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* ── Hero ───────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1515443961218-a51367888e4b?w=1920&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,20,16,0.5) 0%, rgba(26,20,16,0.2) 40%, rgba(26,20,16,0.7) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(232,148,58,0.2);
    border: 1px solid rgba(232,148,58,0.4);
    color: var(--accent-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.hero-rating .stars {
    color: var(--accent);
    font-size: 1rem;
    display: flex;
    gap: 2px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Buttons ───────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,148,58,0.3);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--dark-soft);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(0,0,0,0.15);
}

.btn-outline-dark:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* ── Sections ──────────────────────────────────────────── */

.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.text-accent {
    color: var(--primary);
}

.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-desc {
    color: rgba(255,255,255,0.6);
}

/* ── Engagements / Trust ───────────────────────────────── */

.trust-section {
    background: var(--dark);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-badge i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ── About ─────────────────────────────────────────────── */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .section-label {
    display: block;
    text-align: left;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(232,148,58,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.1rem;
}

.feature strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.feature p {
    color: var(--text-light);
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
    line-height: 1.5 !important;
}

.about-image {
    position: relative;
}

.image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Spécialités ───────────────────────────────────────── */

.specialites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.specialite-card {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
}

.specialite-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232,148,58,0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.specialite-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.specialite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.specialite-card:hover .specialite-image img {
    transform: scale(1.05);
}

.specialite-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.specialite-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.specialite-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.specialite-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    background: rgba(232,148,58,0.12);
    color: var(--accent-light);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ── Occasions ─────────────────────────────────────────── */

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.occasion-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
}

.occasion-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(232,148,58,0.3);
}

.occasion-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.occasion-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ── Reviews Carousel ──────────────────────────────────── */

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.rating-summary .stars {
    color: var(--accent);
    display: flex;
    gap: 2px;
}

.avis-section {
    overflow: hidden;
}

.avis-carousel-wrapper {
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.avis-carousel {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-avis 40s linear infinite;
}

.avis-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-avis {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.avis-card {
    width: 380px;
    flex-shrink: 0;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}

.avis-card:hover {
    border-color: rgba(232,148,58,0.3);
}

.avis-stars {
    display: flex;
    gap: 2px;
    color: #f5c518;
    margin-bottom: 1rem;
}

.avis-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 1.25rem;
}

.avis-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.avis-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.avis-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.avis-meta {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    margin-top: 2px;
}

.avis-meta i {
    color: #4285f4;
    margin-right: 0.3rem;
}

.swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    animation: swipe-fade 2s ease-in-out infinite alternate;
}

@keyframes swipe-fade {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

/* ── Hours & Location ──────────────────────────────────── */

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.hours-block .section-label,
.map-block .section-label {
    display: block;
    text-align: left;
}

.hours-block .section-title,
.map-block .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hours-day {
    font-weight: 600;
    width: 100px;
    font-size: 0.95rem;
}

.hours-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(0,0,0,0.15);
}

.hours-slots {
    font-size: 0.95rem;
    color: var(--text-light);
}

.hours-note {
    margin-top: 1rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.map-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.map-address i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 1.1rem;
}

.map-address strong {
    color: var(--text);
    display: block;
    margin-bottom: 0.2rem;
}

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
    border-radius: var(--radius-lg);
}

/* ── CTA Section ───────────────────────────────────────── */

.cta-section {
    position: relative;
    padding: 5rem 0;
    text-align: center;
    background: var(--dark);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1515443961218-a51367888e4b?w=1920&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}

.cta-section .container {
    position: relative;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* ── Contact Form ──────────────────────────────────────── */

.cta-contact-form {
    max-width: 680px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.cta-contact-form h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.cta-contact-form h3 i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cf-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cf-group label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.cf-required {
    color: var(--primary);
}

.cf-group input,
.cf-group select,
.cf-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,148,58,0.15);
}

.cf-group select {
    cursor: pointer;
}

.cf-group select option {
    background: var(--dark-card);
    color: var(--white);
}

.cf-group textarea {
    resize: vertical;
    min-height: 100px;
}

.cf-submit {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}

.cf-status {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.cf-status.visible {
    display: block;
}

.cf-status.sending {
    background: rgba(232,148,58,0.1);
    color: var(--accent-light);
    display: block;
}

.cf-status.success {
    background: rgba(39,174,96,0.15);
    color: #4ade80;
    display: block;
}

.cf-status.error {
    background: rgba(231,76,60,0.15);
    color: #f87171;
    display: block;
}

/* ── Footer ────────────────────────────────────────────── */

.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--accent);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.5);
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-grid h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 0.6rem;
}

.footer-grid ul li a,
.footer-contact li {
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-grid ul li a:hover {
    color: var(--accent);
}

.footer-contact li i {
    color: var(--accent);
    font-size: 0.85rem;
    width: 16px;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}

/* ── Mentions Légales ──────────────────────────────────── */

.legal-hero {
    padding: 8rem 0 3rem;
    background: var(--dark);
    text-align: center;
}

.legal-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
}

.legal-content {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text);
    margin: 2.5rem 0 0.75rem;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

/* ── Scroll Reveal ─────────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Photos Gallery ────────────────────────────────────── */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,20,16,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 1.5rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    text-align: center;
}

/* ── Responsive ────────────────────────────────────────── */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        order: -1;
    }

    .image-frame {
        aspect-ratio: 16/9;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100dvh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        padding: 2rem;
        z-index: 101;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active li { opacity: 1; transform: translateY(0); }
    .nav-menu.active li:nth-child(1) { transition-delay: 0.06s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.12s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.18s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.24s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.30s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.36s; }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.3rem;
        font-weight: 700;
        font-family: var(--font-heading);
        text-align: center;
        color: rgba(255,255,255,0.85) !important;
    }

    .nav-cta {
        margin-top: 0.5rem;
        justify-content: center;
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .specialites-grid {
        grid-template-columns: 1fr;
    }

    .avis-section {
        overflow: visible;
    }

    .avis-carousel-wrapper {
        -webkit-mask-image: none;
        mask-image: none;
        overflow: visible;
    }

    .avis-carousel {
        animation: none !important;
        transform: none !important;
        width: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 1rem;
    }

    .avis-carousel::-webkit-scrollbar {
        display: none;
    }

    .avis-card {
        min-width: 85vw;
        max-width: 85vw;
        scroll-snap-align: center;
    }

    .swipe-hint {
        display: flex;
    }

    .occasions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cf-row {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .occasions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-actions .btn {
        justify-content: center;
    }

    .cta-contact-form {
        padding: 1.5rem;
    }
}
