        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #5a5450;
            --primary-light: #f5f1ed;
            --accent-gold: #b8860b;
            --accent-warm: #a0826d;
            --text-dark: #2d2520;
            --text-light: #f5f1ed;
            --ink: #211a14;
            --border-subtle: #e8e3dd;
            --shadow-soft: 0 4px 20px rgba(26, 20, 16, 0.08);
            --shadow-medium: 0 12px 40px rgba(26, 20, 16, 0.12);
            /* Rayons cohérents : angles nets pour l'identité "maison de tradition" */
            --radius-crisp: 2px;
            --radius-photo: 3px;
        }

        html {
            scroll-behavior: smooth;
            background-color: var(--primary-light);
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: 'Lora', serif;
            color: var(--text-dark);
            background-color: var(--primary-light);
            overflow-x: hidden;
            position: relative;
            width: 100%;
        }

        /* ===== HEADER & NAVIGATION ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent;
            border-bottom: 1px solid transparent;
            padding: 1rem 0;
            animation: slideDown 0.6s ease-out;
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }

        header.header--solid {
            border-bottom: 1px solid var(--border-subtle);
        }

        header.header--solid::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: rgba(245, 241, 237, 0.95);
            backdrop-filter: blur(10px);
        }

        header .logo,
        header .nav-links a {
            color: var(--text-light);
        }

        header.header--solid .logo {
            color: var(--text-dark);
        }

        @media (min-width: 769px) {
            header.header--solid .nav-links a {
                color: var(--text-dark);
            }
        }

        header .menu-toggle span {
            background-color: var(--text-light);
        }

        header.header--solid .menu-toggle span {
            background-color: var(--text-dark);
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: 2px;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            line-height: 1.2;
        }

        .logo span {
            font-size: 0.6rem;
            letter-spacing: 2px;
            color: var(--accent-gold);
            font-weight: 400;
            margin-top: 0.2rem;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.9rem;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, var(--accent-gold), var(--accent-warm));
            transition: width 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover {
            color: var(--accent-gold);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cms-btn {
            background: var(--primary-dark);
            color: white;
            border: none;
            padding: 0.4rem 0.8rem;
            border-radius: var(--radius-crisp);
            cursor: pointer;
            font-size: 0.7rem;
            font-weight: 500;
            transition: all 0.3s ease;
            font-family: 'Lora', serif;
        }

        .cms-btn:hover {
            background: var(--text-dark);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--text-dark);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--ink);
            position: relative;
            overflow: hidden;
            padding: calc(65px + 2rem) 1rem 2rem;
        }

        /* Média de fond : photo (uploads/facade-jour.jpeg) */
        .hero-media {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 50% 42%, rgba(26, 20, 16, 0.35) 0%, rgba(26, 20, 16, 0.58) 62%, rgba(26, 20, 16, 0.72) 100%),
                linear-gradient(180deg, rgba(26, 20, 16, 0.6) 0%, rgba(26, 20, 16, 0.42) 45%, rgba(26, 20, 16, 0.7) 100%);
            z-index: 2;
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            max-width: 900px;
            position: relative;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 5.5rem;
            font-weight: 700;
            color: var(--text-light);
            line-height: 1.05;
            margin-bottom: 1rem;
            letter-spacing: -2px;
            text-shadow: 0 3px 20px rgba(0, 0, 0, 0.35);
        }

        .hero-tagline {
            font-size: 1.15rem;
            color: #e9c874;
            font-style: italic;
            margin-bottom: 1.5rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
        }

        .hero-description {
            font-size: 1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 2rem;
            line-height: 1.8;
            opacity: 0.96;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
        }

        /* ===== SUGGESTIONS SECTION ===== */
        .suggestions-preview {
            background: var(--ink);
            color: var(--text-light);
            padding: 4rem 1rem;
            margin: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .suggestions-preview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(184, 134, 11, 0.02) 2px, rgba(184, 134, 11, 0.02) 4px);
            pointer-events: none;
        }

        .suggestions-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .suggestions-content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .suggestions-content p {
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto 2rem;
            line-height: 1.8;
            opacity: 0.95;
        }

        /* ===== FAMILY SECTION ===== */
        .family-section {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .family-section h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.8rem;
            margin-bottom: 2rem;
            color: var(--primary-dark);
        }

        .family-content {
            background: #efe9e2;
            padding: 2rem;
            border-radius: var(--radius-crisp);
            border-left: 3px solid var(--accent-gold);
            max-width: 700px;
            margin: 0 auto;
        }

        .family-content p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            text-align: left;
        }

        /* ===== BUTTONS =====
           Un seul CTA fort en couleur pleine (pas de dégradé) ; les actions
           secondaires restent sobres (contour ou texte souligné). */
        .btn {
            display: inline-block;
            padding: 0.85rem 2.1rem;
            background: var(--accent-gold);
            color: white;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            letter-spacing: 1px;
            font-weight: 500;
            border-radius: var(--radius-crisp);
            transition: background-color 0.25s ease, transform 0.25s ease;
            font-family: 'Lora', serif;
            margin: 0.5rem;
        }

        .btn:hover {
            background: #a17a0a;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 1px solid rgba(245, 241, 237, 0.6);
        }

        .btn-secondary:hover {
            background: rgba(245, 241, 237, 0.12);
            border-color: var(--text-light);
        }

        /* Variante contour pour usage sur fond clair (pages internes) */
        .btn-outline {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: transparent;
            color: var(--text-dark);
            text-decoration: underline;
            text-underline-offset: 4px;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            font-weight: 500;
            font-family: 'Lora', serif;
            margin: 0.5rem;
            transition: color 0.25s ease;
        }

        .btn-outline:hover {
            color: var(--accent-gold);
        }

        /* CTA de réservation, répété/sticky sur les pages clés */
        .sticky-booking-cta {
            position: fixed;
            right: 1.2rem;
            bottom: 1.2rem;
            z-index: 900;
            background: var(--accent-gold);
            color: white;
            text-decoration: none;
            padding: 0.8rem 1.4rem;
            border-radius: var(--radius-crisp);
            font-family: 'Lora', serif;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            box-shadow: 0 6px 20px rgba(26, 20, 16, 0.25);
            transition: background-color 0.25s ease, transform 0.25s ease;
        }

        .sticky-booking-cta:hover {
            background: #a17a0a;
            transform: translateY(-2px);
        }

        @media (max-width: 480px) {
            .sticky-booking-cta {
                right: 0.8rem;
                bottom: 0.8rem;
                padding: 0.7rem 1.1rem;
                font-size: 0.8rem;
            }
        }

        /* ===== PAGES (HIDDEN BY DEFAULT) ===== */
        .page {
            display: none;
            animation: fadeIn 0.6s ease-in;
            min-height: 100vh;
        }

        .page.active {
            display: block;
        }

        /* Supprime l'espace clair entre la bande sombre "Réserver une table" et le footer sur l'accueil */
        #home.active ~ footer {
            margin-top: 0;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== PAGE TEMPLATES ===== */
        .page-header {
            background: var(--ink);
            color: var(--text-light);
            padding: calc(65px + 3rem) 1.5rem 3rem;
            text-align: center;
            border-bottom: 3px solid var(--accent-gold);
        }

        .page-header h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.4rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        .page-header p {
            font-size: 1rem;
        }

        .page-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .menu-item {
            padding: 1.5rem 0;
            margin: 1rem 0;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-item-content {
            flex: 1;
            min-width: 250px;
        }

        .menu-item-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
            color: var(--text-dark);
        }

        .menu-item-content p {
            color: var(--accent-warm);
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }

        .menu-item-desc {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .menu-item-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            color: var(--accent-gold);
            font-weight: 600;
            white-space: nowrap;
            margin-top: 0.5rem;
        }

        /* ===== CONTACT FORM — "La Lettre" ===== */
        .contact-form-wrap {
            max-width: 760px;
            margin: 3rem auto;
        }

        .letter-sheet {
            position: relative;
            background: #efe9e2;
            border-top: 3px solid var(--accent-gold);
            border-radius: var(--radius-crisp);
            box-shadow: var(--shadow-medium);
            padding: 3rem;
        }

        .letter-sheet::before {
            content: '';
            position: absolute;
            top: 12px;
            left: 12px;
            right: 12px;
            bottom: 12px;
            border: 1px solid rgba(184, 134, 11, 0.22);
            pointer-events: none;
        }

        .letter-line {
            position: relative;
            font-family: 'Lora', serif;
            font-size: 1.2rem;
            line-height: 2.3;
            color: var(--text-dark);
            margin: 0 0 0.4rem;
        }

        .letter-line--intro {
            margin-top: 1.6rem;
            font-style: italic;
            opacity: 0.8;
            font-size: 1.05rem;
        }

        /* ----- Champs "à trous" en ligne, largeur auto ----- */
        .letter-blank {
            display: inline-grid;
            vertical-align: bottom;
        }

        .letter-blank::after,
        .letter-blank input {
            grid-area: 1 / 1;
            font: inherit;
            color: var(--accent-gold);
            width: auto;
            min-width: 9ch;
            padding: 0 0.2rem;
        }

        .letter-blank::after {
            content: attr(data-value) ' ';
            visibility: hidden;
            white-space: pre;
        }

        .letter-blank input {
            background: transparent;
            border: none;
            border-bottom: 2px solid rgba(184, 134, 11, 0.35);
            transition: border-color 0.25s ease, background-color 0.25s ease;
        }

        .letter-blank input::placeholder {
            color: rgba(45, 37, 32, 0.4);
        }

        .letter-blank input:focus {
            outline: none;
            border-color: var(--accent-gold);
            background: rgba(184, 134, 11, 0.07);
        }

        .letter-blank input:not(:placeholder-shown):invalid {
            border-color: #b5564a;
        }

        /* ----- Sujet : mots cliquables insérés dans la phrase ----- */
        .letter-chips {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0 0.5rem;
            vertical-align: bottom;
        }

        .letter-chip {
            font: inherit;
            font-size: 1.1rem;
            background: none;
            border: none;
            border-bottom: 2px solid transparent;
            color: var(--text-dark);
            opacity: 0.5;
            cursor: pointer;
            padding: 0 0.05rem;
            transition: opacity 0.25s ease, color 0.25s ease, border-color 0.25s ease;
        }

        .letter-chip:hover {
            opacity: 0.85;
        }

        .letter-chip.is-active {
            opacity: 1;
            color: var(--accent-gold);
            border-color: var(--accent-gold);
        }

        .letter-chip-sep {
            color: rgba(45, 37, 32, 0.3);
        }

        /* ----- Message : papier à lettre, plume vivante ----- */
        .letter-message-wrap {
            position: relative;
            margin-top: 0.6rem;
        }

        .letter-message {
            width: 100%;
            min-height: 140px;
            resize: vertical;
            border: none;
            border-bottom: 1.5px solid rgba(184, 134, 11, 0.3);
            background: transparent;
            font-family: 'Lora', serif;
            font-size: 1.08rem;
            line-height: 1.8;
            color: var(--text-dark);
            padding: 0.4rem 1.6rem 0.6rem 0;
            transition: border-color 0.3s ease;
        }

        .letter-message::placeholder {
            color: rgba(45, 37, 32, 0.4);
            font-style: italic;
        }

        .letter-message:focus {
            outline: none;
            border-color: var(--accent-gold);
        }

        .letter-nib {
            position: absolute;
            top: 0.6rem;
            right: 0;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-gold);
            opacity: 0;
        }

        .letter-message:focus~.letter-nib {
            opacity: 1;
            animation: nibBlink 1.1s ease-in-out infinite;
        }

        @keyframes nibBlink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.25;
            }
        }

        .letter-message-wrap .form-char-count {
            position: absolute;
            right: 0;
            bottom: -1.15rem;
            font-size: 0.75rem;
            color: var(--text-dark);
            opacity: 0.5;
        }

        /* ----- Sceau d'envoi ----- */
        .letter-submit {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.9rem;
            margin-top: 2.6rem;
        }

        .letter-seal-btn {
            position: relative;
            width: 92px;
            height: 92px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            background: radial-gradient(circle at 34% 30%, #dba63f, var(--accent-gold) 62%, #82600b 100%);
            box-shadow: 0 10px 24px rgba(184, 134, 11, 0.35), inset 0 -5px 9px rgba(0, 0, 0, 0.25), inset 0 3px 6px rgba(255, 255, 255, 0.3);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .letter-seal-btn:hover {
            transform: translateY(-3px);
        }

        .letter-seal-btn:active {
            transform: scale(0.93);
        }

        .letter-seal-btn.is-sending {
            animation: sealPress 0.7s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes sealPress {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(0.93);
            }
        }

        .letter-seal-ring {
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 2px solid var(--accent-gold);
            opacity: 0;
            pointer-events: none;
        }

        .letter-seal-btn.is-sent .letter-seal-ring {
            animation: sealStamp 0.8s ease-out;
        }

        @keyframes sealStamp {
            0% {
                opacity: 0.9;
                transform: scale(0.85);
            }

            100% {
                opacity: 0;
                transform: scale(1.7);
            }
        }

        .letter-seal-face {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            color: var(--ink);
        }

        .letter-seal-monogram {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            font-size: 1.9rem;
            letter-spacing: 1px;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .letter-seal-check {
            position: absolute;
            opacity: 0;
            transform: scale(0.4) rotate(-40deg);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .letter-seal-btn.is-sent .letter-seal-monogram {
            opacity: 0;
            transform: scale(0.4) rotate(40deg);
        }

        .letter-seal-btn.is-sent .letter-seal-check {
            opacity: 1;
            transform: scale(1) rotate(0);
        }

        .letter-submit-label {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.05rem;
            letter-spacing: 0.5px;
            color: var(--primary-dark);
            margin: 0;
        }

        .form-success-msg {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            text-align: center;
            color: var(--accent-gold);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            margin-top: 0;
            transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
        }

        .form-success-msg.is-visible {
            max-height: 4rem;
            opacity: 1;
            margin-top: 1.3rem;
        }

        .form-success-msg.is-error {
            color: #b3453a;
        }

        @media (max-width: 640px) {
            .letter-sheet {
                padding: 2.2rem 1.5rem 2rem;
            }

            .letter-line {
                font-size: 1.05rem;
                line-height: 2.1;
            }

            .letter-blank::after,
            .letter-blank input {
                min-width: 7ch;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            .letter-seal-btn.is-sending,
            .letter-seal-ring,
            .letter-message:focus~.letter-nib {
                animation: none !important;
            }
        }

        /* ===== CONTACT GRID ===== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .contact-box {
            text-align: center;
            padding: 1.5rem;
            background: #efe9e2;
            border-radius: var(--radius-crisp);
            border-left: 3px solid var(--accent-gold);
            transition: box-shadow 0.25s ease;
        }

        /* ===== CONTACT — index éditorial =====
           Pas de cartes/boîtes : une liste typographique à grands numéros
           serif dorés, façon sommaire, en écho aux "offer-row" de l'accueil. */
        .info-index {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            max-width: 900px;
            margin: 0 auto 3rem;
            border-top: 1px solid var(--border-subtle);
        }

        .info-index-item {
            display: flex;
            gap: 1.3rem;
            padding: 2.2rem 1.8rem;
            border-bottom: 1px solid var(--border-subtle);
        }

        .info-index-item:nth-child(odd) {
            border-right: 1px solid var(--border-subtle);
        }

        .info-index-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.8rem;
            font-weight: 600;
            color: var(--accent-gold);
            line-height: 1;
            flex-shrink: 0;
        }

        .info-index-label {
            display: block;
            font-size: 0.78rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 0.6rem;
        }

        .info-index-item p {
            font-size: 0.92rem;
            color: var(--text-dark);
            margin: 0.3rem 0;
            line-height: 1.5;
        }

        .info-index-item a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .info-index-item a:hover {
            color: var(--accent-gold);
        }

        .info-index-note {
            font-size: 0.82rem !important;
            color: #8a8378 !important;
        }

        @media (max-width: 700px) {
            .info-index {
                grid-template-columns: 1fr;
            }

            .info-index-item {
                border-right: none !important;
                padding: 1.8rem 0.5rem;
            }

            .info-index-num {
                font-size: 2.3rem;
            }
        }

        /* ===== CONTACT — carte =====
           Hauteur fixe par palier (plutôt qu'un aspect-ratio) pour garantir
           une taille prévisible quel que soit le navigateur. */
        .map-embed {
            max-width: 1000px;
            height: 480px;
            margin: 0 auto;
            border-radius: var(--radius-photo);
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }

        .map-embed iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        @media (max-width: 768px) {
            .map-embed {
                height: 380px;
            }
        }

        @media (max-width: 480px) {
            .map-embed {
                height: 320px;
            }
        }

        .contact-box h3 {
            font-size: 1rem;
            margin-bottom: 0.8rem;
            color: var(--accent-gold);
        }

        .contact-box p {
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .contact-box a {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 500;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--primary-dark);
            color: var(--text-light);
            padding: 2.5rem 1.5rem 0;
            margin-top: 3rem;
            border-top: 1px solid rgba(184, 134, 11, 0.2);
        }

        footer p {
            opacity: 0.8;
            margin-bottom: 0.4rem;
            font-size: 0.9rem;
        }

        footer a {
            color: inherit;
            text-decoration: none;
        }

        .footer-divider {
            width: 60px;
            height: 2px;
            background: linear-gradient(to right, var(--accent-gold), var(--accent-warm));
            margin: 0 auto 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
            padding-bottom: 2rem;
        }

        .footer-col-title {
            display: block;
            font-family: 'Lora', serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--accent-gold);
            opacity: 1;
            margin-bottom: 0.9rem;
        }

        .footer-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-nav li {
            margin-bottom: 0.5rem;
        }

        .footer-nav a,
        .footer-col p a {
            opacity: 0.8;
            transition: opacity 0.2s ease, color 0.2s ease;
        }

        .footer-nav a:hover,
        .footer-col p a:hover {
            opacity: 1;
            color: var(--accent-gold);
        }

        .footer-closed {
            color: #e08a7d;
            font-weight: 600;
            opacity: 1 !important;
        }

        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 2px;
            line-height: 1.2;
            color: var(--text-light);
            display: inline-block;
        }

        .footer-logo span {
            display: block;
            font-size: 0.6rem;
            letter-spacing: 2px;
            font-weight: 400;
            color: var(--accent-gold);
            margin-top: 0.2rem;
        }

        .footer-tagline {
            font-style: italic;
            font-size: 0.85rem;
            margin: 0.9rem 0 1.1rem;
            opacity: 0.7;
            max-width: 260px;
        }

        .footer-instagram {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            opacity: 0.85;
            transition: opacity 0.2s ease, color 0.2s ease;
        }

        .footer-instagram:hover {
            opacity: 1;
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(245, 241, 237, 0.12);
        }

        .footer-bottom p {
            font-size: 0.85rem;
            margin-bottom: 0.3rem;
        }

        .footer-copyright {
            font-size: 0.75rem !important;
            opacity: 0.6;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem 1.5rem;
                text-align: left;
            }

            .footer-brand {
                grid-column: 1 / -1;
                text-align: center;
            }

            .footer-tagline {
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-nav,
            .footer-col p {
                text-align: center;
            }
        }

        /* ===== CMS MODAL ===== */
        .cms-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .cms-modal.active {
            display: flex;
        }

        .cms-modal-content {
            background: white;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 500px;
            width: 90%;
            padding: 2rem;
            position: relative;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cms-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        .cms-modal h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
        }

        .cms-modal-input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border-subtle);
            border-radius: 4px;
            font-family: 'Lora', serif;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .cms-modal-input:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
        }

        .cms-modal-buttons {
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
        }

        .cms-modal-buttons button {
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 5rem;
            transition: all 0.3s ease;
            font-family: 'Lora', serif;
        }

        .cms-btn-submit {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
            color: white;
        }

        .cms-btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);

        }

        .cms-btn-submit {
            padding: 4px 10px;
            font-size: 13px;
            border-radius: 5px;
        }

        .cms-btn-cancel {
            background: var(--border-subtle);
            color: var(--text-dark);
        }

        .cms-btn-cancel:hover {
            background: #ddd;
        }

        /* ===== CMS PANEL ===== */
        .cms-panel {
            display: none;
            position: fixed;
            bottom: 0;
            right: 0;
            width: 400px;
            max-height: 80vh;
            background: white;
            box-shadow: -2px -2px 20px rgba(0, 0, 0, 0.2);
            z-index: 1500;
            overflow-y: auto;
            animation: slideInRight 0.3s ease;
        }

        .cms-panel.active {
            display: block;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
            }

            to {
                transform: translateX(0);
            }
        }

        .cms-panel-header {
            background: var(--primary-dark);
            color: white;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--accent-gold);
        }

        .cms-panel-header h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
        }

        .cms-panel-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .cms-panel-content {
            padding: 1.5rem;
        }

        .cms-section {
            margin-bottom: 2rem;
        }

        .cms-section h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 0.5rem;
        }

        .cms-item-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .cms-item {
            background: var(--primary-light);
            padding: 1rem;
            border-radius: 4px;
            border-left: 3px solid var(--accent-gold);
        }

        .cms-item h5 {
            font-size: 0.95rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .cms-item p {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .cms-item-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .cms-item-btn {
            padding: 0.4rem 0.8rem;
            background: var(--accent-gold);
            color: white;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.2s ease;
        }

        .cms-item-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
        }

        .cms-item-btn.delete {
            background: #e74c3c;
        }

        .cms-item-btn.delete:hover {
            box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
        }

        .cms-add-btn {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-family: 'Lora', serif;
        }

        .cms-add-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
        }

        /* ===== TYPOGRAPHIE — HIÉRARCHIE PLUS MARQUÉE ===== */
        .page-content h2,
        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: -1px;
        }

        .page-content h3,
        .subsection-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-dark);
        }

        /* ===== GALERIES PHOTOS (remplace onmouseover/onmouseout) ===== */
        .gallery-photo {
            border-radius: var(--radius-photo);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .gallery-photo:hover {
            transform: scale(1.03);
        }

        .gallery-photo img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        /* ===== ÉQUIPE (À Propos — Nos Visages) =====
           Présentation façon photos de famille punaisées / polaroids : chaque
           portrait garde son cadrage d'origine (object-fit: contain, jamais
           coupé) et repose légèrement de travers, comme épinglé au mur.
           Flexbox centré plutôt qu'une grille : la dernière rangée incomplète
           se retrouve centrée au lieu de rester collée à gauche. */
        .team-grid {
            display: flex;
            flex-wrap: nowrap;
            justify-content: center;
            gap: 1.8rem 1rem;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0.5rem 0 1.5rem;
        }

        .team-member {
            /* Se répartit sur toute la largeur disponible (ligne unique en PC)
               plutôt qu'une taille fixe : les portraits sont donc plus grands
               sur les écrans larges, sans jamais passer à la ligne. */
            flex: 1 1 0;
            min-width: 0;
            max-width: 210px;
        }

        .team-photo {
            background: #b7abab;
            padding: 12px 12px 16px;
            border-radius: 10px;
            box-shadow: 0 6px 16px rgba(33, 26, 20, 0.18);
            cursor: pointer;
            transform: rotate(-3deg);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .team-member:nth-child(2n) .team-photo { transform: rotate(2.5deg); }
        .team-member:nth-child(3n) .team-photo { transform: rotate(-1.5deg); }
        .team-member:nth-child(5n) .team-photo { transform: rotate(3deg); }

        /* Sélecteur renforcé pour l'emporter sur les inclinaisons nth-child ci-dessus,
           quel que soit l'ordre des règles : sinon seule la carte sans inclinaison
           personnalisée se redressait au survol. */
        .team-grid .team-member .team-photo:hover,
        .team-grid .team-member .team-photo:focus-within {
            transform: rotate(0deg) translateY(-6px);
            box-shadow: 0 14px 28px rgba(33, 26, 20, 0.26);
        }

        .team-photo-frame {
            width: 100%;
            aspect-ratio: 3 / 4;
            background: var(--border-subtle);
            overflow: hidden;
            border-radius: 4px;
        }

        .team-photo-frame img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .team-photo-caption {
            margin: 0.9rem 0 0;
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-style: italic;
            color: #000;
            line-height: 1.3;
        }

        .team-photo-caption span {
            display: block;
            margin-top: 0.2rem;
            font-family: 'Lora', serif;
            font-style: normal;
            font-size: 0.7rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: #000;
        }

        @media (max-width: 768px) {
            .team-grid {
                gap: 1.2rem 0.6rem;
            }

            .team-photo {
                padding: 8px 8px 12px;
            }

            .team-photo-caption {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .team-grid {
                flex-wrap: wrap;
                gap: 2.2rem 1.2rem;
            }

            .team-member {
                width: 140px;
                flex: 0 1 auto;
            }

            .team-photo {
                padding: 8px 8px 12px;
            }

            .team-photo-caption {
                font-size: 1.2rem;
            }
        }

        .feature-photo {
            border-radius: var(--radius-photo);
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .feature-photo:hover {
            transform: scale(1.015);
        }

        .feature-photo img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* ===== MODULE ÉVÉNEMENTS (accueil) =====
           Section activable/désactivable : cacher avec style="display:none"
           ou vider #event-banner-content quand il n'y a pas d'événement en cours. */
        #event-banner {
            padding: 3rem 1.5rem;
            background: var(--primary-light);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .event-banner-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 2.5rem;
            align-items: center;
        }

        .event-banner-inner .feature-photo img {
            height: 320px;
            object-fit: cover;
        }

        .eyebrow {
            display: inline-block;
            font-size: 0.8rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--accent-gold);
            font-weight: 600;
            margin-bottom: 0.6rem;
        }

        .event-banner-text h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--primary-dark);
            margin-bottom: 0.8rem;
        }

        .event-banner-text p {
            font-size: 1rem;
            line-height: 1.75;
            color: var(--text-dark);
            margin-bottom: 1.2rem;
        }

        @media (max-width: 768px) {
            .event-banner-inner {
                grid-template-columns: 1fr;
            }

            .event-banner-inner .feature-photo img {
                height: 220px;
            }
        }

        /* ===== OFFRES DU MOMENT — traitements variés (pas un pattern "card" unique) ===== */
        .offers-section {
            background: #efe9e2;
            padding: 4rem 1.5rem;
            margin: 0;
        }

        .offer-row {
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(45, 37, 32, 0.12);
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .offer-row:first-child {
            padding-top: 0;
        }

        .offer-row h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 0.3rem;
        }

        .offer-highlight {
            background: var(--ink);
            color: var(--text-light);
            padding: 2.5rem 2rem;
            margin-top: 2rem;
            border-left: 4px solid var(--accent-gold);
        }

        .offer-highlight h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            color: #e9c874;
            margin-bottom: 0.8rem;
        }

        .offer-highlight p {
            font-size: 0.98rem;
            line-height: 1.7;
            opacity: 0.95;
        }

        /* ===== CHAMBRES — photos ===== */
        .room-photo {
            border-radius: var(--radius-photo);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            margin-bottom: 0.6rem;
        }

        .room-photo img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        /* ===== CHAMBRES — vidéo de présentation =====
           Le clip fourni est au format portrait (9:16, filmé au téléphone) :
           la boîte utilise ce ratio pour donner une taille fixe et prévisible
           (indépendante des dimensions intrinsèques rapportées par la vidéo
           selon son état lecture/pause), plafonnée en hauteur sur desktop. */
        .room-video-wrapper {
            width: 100%;
            max-width: 340px;
            max-height: 65vh;
            aspect-ratio: 9 / 16;
            margin: 0 auto;
            border-radius: var(--radius-photo);
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            background: var(--ink);
        }

        .room-video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .page-content {
                padding: 2rem 1.5rem;
            }

            .suggestions-content h2 {
                font-size: 2rem;
            }

            .family-section h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 0.8rem 0;
            }

            nav {
                padding: 0 0.8rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .logo span {
                font-size: 0.5rem;
            }

            .nav-right {
                gap: 1rem;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 0;
                background: var(--ink);
                max-height: none;
                overflow: visible;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.35s ease, visibility 0.35s ease;
                list-style: none;
                padding: 0;
                border-bottom: none;
            }

            .nav-links.active {
                opacity: 1;
                visibility: visible;
                overflow: visible;
                padding: 0;
            }

            .nav-links li {
                border-bottom: none;
                opacity: 0;
                transform: translateY(12px);
                transition: opacity 0.35s ease, transform 0.35s ease;
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateY(0);
            }

            .nav-links.active li:nth-child(1) { transition-delay: 0.05s; }
            .nav-links.active li:nth-child(2) { transition-delay: 0.1s; }
            .nav-links.active li:nth-child(3) { transition-delay: 0.15s; }
            .nav-links.active li:nth-child(4) { transition-delay: 0.2s; }
            .nav-links.active li:nth-child(5) { transition-delay: 0.25s; }
            .nav-links.active li:nth-child(6) { transition-delay: 0.3s; }
            .nav-links.active li:nth-child(7) { transition-delay: 0.35s; }

            .nav-links a {
                display: block;
                padding: 1rem 1.5rem;
                font-size: 1.4rem;
                color: var(--text-light);
            }

            .nav-links a::after {
                display: none;
            }

            .menu-toggle {
                display: flex;
                position: relative;
                z-index: 1;
            }

            .cms-btn {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            .hero {
                min-height: 70vh;
                padding: calc(65px + 2rem) 1rem 2rem;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-tagline {
                font-size: 1rem;
            }

            .hero-description {
                font-size: 0.95rem;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .page-header p {
                font-size: 0.9rem;
            }

            .page-content {
                padding: 1.5rem 1rem;
            }

            .family-section {
                padding: 3rem 1rem;
            }

            .family-section h2 {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }

            .family-content {
                padding: 1.5rem;
            }

            .family-content p {
                font-size: 0.95rem;
                margin-bottom: 1rem;
            }

            .menu-item {
                flex-direction: column;
                padding: 1rem 0;
            }

            .menu-item-content h3 {
                font-size: 1.1rem;
            }

            .menu-item-price {
                font-size: 1rem;
                margin-top: 0.5rem;
            }

            .suggestions-preview {
                padding: 3rem 1rem;
            }

            .suggestions-content h2 {
                font-size: 1.8rem;
            }

            .suggestions-content p {
                font-size: 0.9rem;
            }

            /* Offres du moment - responsive */
            div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
                grid-template-columns: 1fr !important;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-box {
                padding: 1.2rem;
            }

            .contact-form-wrap {
                margin: 1.5rem auto;
            }

            .btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.85rem;
            }

            .cms-panel {
                width: 100%;
                max-height: 60vh;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 0.6rem 0;
            }

            nav {
                padding: 0 0.5rem;
            }

            .logo {
                font-size: 1rem;
            }

            .logo span {
                font-size: 0.45rem;
            }

            .nav-links.active {
                max-height: none;
            }

            .nav-links a {
                padding: 0.8rem 1rem;
                font-size: 0.85rem;
            }

            .cms-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.75rem;
            }

            .hero {
                min-height: 60vh;
                padding: calc(60px + 1.5rem) 0.8rem 1.5rem;
            }

            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 0.8rem;
            }

            .hero-tagline {
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }

            .hero-description {
                font-size: 0.85rem;
                margin-bottom: 1.5rem;
            }

            .page-header h1 {
                font-size: 1.6rem;
                padding: 2rem 1rem;
            }

            .page-header {
                padding: calc(60px + 2rem) 1rem 2rem;
            }

            .page-content {
                padding: 1rem 0.8rem;
            }

            .family-section {
                padding: 2rem 0.8rem;
            }

            .family-section h2 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .family-content {
                padding: 1rem;
            }

            .family-content p {
                font-size: 0.9rem;
                text-align: center;
            }

            .menu-item-content h3 {
                font-size: 1rem;
            }

            .menu-item-content p {
                font-size: 0.8rem;
            }

            .menu-item-desc {
                font-size: 0.8rem;
            }

            .menu-item-price {
                font-size: 0.95rem;
            }

            .suggestions-preview {
                padding: 2rem 0.8rem;
                margin: 2rem 0;
            }

            .suggestions-content h2 {
                font-size: 1.5rem;
                margin-bottom: 0.8rem;
            }

            /* Offres du moment - mobile */
            section[style*="background: linear-gradient(135deg, rgba(184, 134, 11, 0.08)"] {
                padding: 2rem 0.8rem !important;
            }

            section[style*="background: linear-gradient(135deg, rgba(184, 134, 11, 0.08)"] h2 {
                font-size: 1.8rem !important;
            }

            div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
                gap: 1rem !important;
            }

            div[style*="border-left: 4px solid"] {
                padding: 1.5rem !important;
            }

            .suggestions-content p {
                font-size: 0.85rem;
                margin-bottom: 1.5rem;
            }

            .contact-box {
                padding: 1rem;
            }

            .contact-box h3 {
                font-size: 0.9rem;
            }

            .contact-box p {
                font-size: 0.85rem;
            }

            .contact-form-wrap {
                margin: 1rem auto;
            }

            .letter-sheet {
                padding: 1.6rem 1.1rem 1.8rem;
            }

            .letter-seal-btn {
                width: 76px;
                height: 76px;
            }

            .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.8rem;
            }

            .btn:hover {
                transform: translateY(-2px);
            }

            footer {
                padding: 1.5rem 0.8rem;
            }

            footer p {
                font-size: 0.85rem;
            }

            .cms-panel {
                width: 100%;
                max-height: 50vh;
            }

            .cms-modal-content {
                max-width: 90%;
                padding: 1.5rem;
            }

            .cms-modal h2 {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }
        }

        /* ===== OPTIMISATIONS MOBILES SUPPLÉMENTAIRES ===== */
        @media (max-width: 768px) {
            /* Tables - Responsive */
            table {
                font-size: 0.85rem;
            }

            table thead {
                display: none;
            }

            table, table tbody, table tr, table td {
                display: block;
                width: 100%;
            }

            table tr {
                margin-bottom: 1.5rem;
                border: 1px solid var(--border-subtle);
                border-radius: 6px;
                overflow: hidden;
            }

            table td {
                padding: 0.8rem !important;
                text-align: left !important;
                border: none;
                padding-left: 40%;
                position: relative;
            }

            table td::before {
                content: attr(data-label);
                position: absolute;
                left: 0.8rem;
                font-weight: 600;
                color: var(--accent-gold);
                width: 35%;
            }

            /* Grilles responsives */
            div[style*="display: grid"] {
                grid-template-columns: 1fr !important;
            }

            /* Photos de famille - Réduites sur mobile */
            img[style*="border-radius: 50%"] {
                width: 120px !important;
                height: 120px !important;
            }

            /* Buttons - Plus grands sur mobile */
            .btn {
                width: 100%;
                padding: 0.8rem 1rem !important;
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
            }

            /* Contact boxes */
            .contact-grid {
                gap: 1rem;
            }

            .contact-box {
                padding: 1rem;
            }

            .contact-box h3 {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }

            .contact-box p {
                font-size: 0.9rem;
                line-height: 1.5;
            }

            /* Forms */
            .contact-form-wrap {
                max-width: 100%;
            }

            .letter-blank input,
            .letter-message {
                font-size: 16px;
            }

            /* Page header spacing */
            .page-header {
                padding: calc(65px + 1.5rem) 1rem 1.5rem;
            }

            .page-header h1 {
                font-size: 1.8rem;
                margin-bottom: 0.5rem;
            }

            .page-header p {
                font-size: 0.95rem;
            }

            /* Contenu pages */
            .page-content {
                padding: 1rem;
            }

            .page-content h2 {
                font-size: 1.3rem !important;
                margin-bottom: 1rem !important;
                margin-top: 1.5rem !important;
            }

            .page-content h3 {
                font-size: 1.1rem !important;
            }

            .page-content p {
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 1rem;
            }

            /* Sections colorées */
            div[style*="padding: 1.5rem; background"] {
                padding: 1rem !important;
                margin: 1rem 0 !important;
            }

            /* Flex containers */
            div[style*="display: flex"] {
                flex-direction: column;
                gap: 1rem;
            }

            /* Overflow scroll pour tableaux */
            div[style*="overflow-x: auto"] {
                margin: 1rem -1rem;
                padding: 0 1rem;
                overflow-x: auto;
            }
        }

        @media (max-width: 480px) {
            /* Micro optimisations pour petit écran */
            header {
                padding: 0.5rem 0;
            }

            .logo {
                font-size: 0.95rem;
                letter-spacing: 1px;
            }

            .nav-links.active {
                max-height: none;
            }

            .nav-links a {
                padding: 0.7rem 1rem;
                font-size: 0.8rem;
            }

            /* Page layout */
            .page-header {
                padding: calc(60px + 1rem) 0.8rem 1rem;
            }

            .page-header h1 {
                font-size: 1.5rem;
                padding: 1rem 0;
            }

            .page-content {
                padding: 0.8rem;
            }

            /* Text sizes ultra-compact */
            .page-content h2 {
                font-size: 1.2rem !important;
            }

            .page-content h3 {
                font-size: 1rem !important;
            }

            .page-content p {
                font-size: 0.9rem;
            }

            /* Images */
            img[style*="border-radius: 50%"] {
                width: 100px !important;
                height: 100px !important;
            }

            /* Buttons */
            .btn {
                padding: 0.7rem 1rem !important;
                font-size: 0.9rem;
            }

            /* Forms */
            .letter-blank input,
            .letter-message {
                font-size: 16px;
            }

            /* Table responsive */
            table td {
                padding: 0.6rem 0.8rem !important;
                padding-left: 35%;
                font-size: 0.85rem;
            }

            table td::before {
                left: 0.5rem;
                font-size: 0.8rem;
            }

            /* Contact grid */
            .contact-grid {
                gap: 0.8rem;
            }

            .contact-box {
                padding: 0.8rem;
            }

            .contact-box h3 {
                font-size: 0.95rem;
            }

            .contact-box p {
                font-size: 0.85rem;
            }

            /* Hero section */
            .hero h1 {
                font-size: 1.5rem;
            }

            .hero-tagline {
                font-size: 0.85rem;
            }

            .hero-description {
                font-size: 0.8rem;
            }

            /* Spacing reduction */
            margin, padding {
                margin: 0.5rem !important;
                padding: 0.5rem !important;
            }

            /* Responsive overflow */
            div[style*="overflow-x: auto"] {
                margin: 0.8rem -0.8rem;
                padding: 0 0.8rem;
            }
        }

        /* ===== MEDIA QUERY TABLET 769px-1024px ===== */
        @media (min-width: 769px) and (max-width: 1024px) {
            /* Optimisations tablet */
            .page-header h1 {
                font-size: 2.2rem;
            }

            .page-content {
                padding: 1.5rem;
            }

            table {
                font-size: 0.95rem;
            }

            .btn {
                padding: 0.8rem 1.5rem;
            }

            /* Grilles tablet */
            div[style*="grid-template-columns: repeat(auto-fit"] {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            /* Images */
            img[style*="border-radius: 50%"] {
                width: 130px !important;
                height: 130px !important;
            }

            .hero h1 {
                font-size: 4rem;
            }
        }

        @media (min-width: 769px) {
            #pdfViewer {
                padding-top: 65px;
            }
        }

        /* ===== RESPONSIVE - SECTIONS DE PRÉSENTATION ===== */
        @media (max-width: 768px) {
            /* Sections de présentation (Menu, Vins, Suggestions) */
            div[style*="max-width: 900px"] {
                padding: 2rem 1rem !important;
            }

            div[style*="font-size: 1.05rem"] {
                font-size: 0.95rem !important;
                line-height: 1.7 !important;
            }

            div[style*="gap: 1.5rem; justify-content: center"] {
                flex-direction: column !important;
                gap: 1rem !important;
            }

            button[style*="padding: 0.8rem 2rem"] {
                width: 100% !important;
                padding: 0.8rem 1.5rem !important;
            }

            /* PDF Viewer responsive */
            #pdfViewer {
                margin-top: 65px;
            }

            #pdfViewerFrame {
                height: 500px !important;
            }

            div[style*="height: 800px"] {
                height: 500px !important;
            }
        }

        @media (max-width: 480px) {
            /* Sections de présentation - Ultra mobile */
            div[style*="max-width: 900px"] {
                padding: 1.5rem 0.8rem !important;
            }

            div[style*="font-size: 1.05rem"] {
                font-size: 0.9rem !important;
                line-height: 1.6 !important;
            }

            h2[style*="font-size: 2rem"] {
                font-size: 1.5rem !important;
            }

            button[style*="padding: 0.8rem 2rem"] {
                padding: 0.7rem 1.2rem !important;
                font-size: 0.9rem !important;
            }

            /* PDF Viewer mobile */
            #pdfViewerFrame {
                height: 400px !important;
            }

            div[style*="display: flex; justify-content: center; align-items: center; min-height: 80vh"] {
                min-height: 60vh !important;
                padding: 1rem !important;
            }
        }

        /* ===== RESPONSIVE - TEXTES ET TYPOGRAPHIE ===== */
        @media (max-width: 768px) {
            p[style*="margin-bottom: 1.5rem"] {
                margin-bottom: 1rem !important;
            }

            h5[style*="margin-bottom: 0.8rem"] {
                font-size: 1rem !important;
            }
        }

        /* ===== RESPONSIVE - FORMULAIRES ET ENTRÉES ===== */
        @media (max-width: 480px) {
            input[class*="cms-modal-input"],
            textarea[class*="cms-modal-input"] {
                font-size: 16px !important; /* Évite le zoom sur iOS */
            }
        }

        /* ===== RESPONSIVE - PAGES PDF VIEWER ===== */
        @media (max-width: 768px) {
            div[style*="background: var(--primary-dark); color: white; padding: 1.5rem"] {
                padding: 1rem !important;
                flex-direction: column !important;
            }

            div[style*="background: var(--primary-dark); color: white; padding: 1.5rem"] button {
                width: 100% !important;
                margin-top: 0.5rem !important;
            }

            div[style*="display: flex; justify-content: space-between; align-items: center"] h2 {
                font-size: 1.2rem !important;
            }
        }

        /* ===== RESPONSIVE - CONTENEURS GÉNÉRIQUES ===== */
        @media (max-width: 768px) {
            div[style*="display: flex; gap: 1.5rem"] {
                flex-direction: column !important;
            }

            div[style*="max-width: 1200px"] {
                padding: 1.5rem !important;
            }
        }

        /* ===== AMÉLIORATION GÉNÉRALE MOBILE ===== */
        @media (max-width: 480px) {
            body {
                font-size: 14px;
            }

            .page-header {
                padding: calc(60px + 1.5rem) 1rem 1.5rem !important;
            }

            .page-header h1 {
                word-break: break-word;
            }

            .page-header p {
                word-break: break-word;
            }
        }

        /* ===== RÉVÉLATIONS AU SCROLL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }

            .form-success-msg {
                transition: none !important;
            }
        }

        /* ===== LIGHTBOX PHOTOS ===== */
        .room-photo {
            cursor: pointer;
        }

        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 3000;
            background: rgba(33, 26, 20, 0.95);
            align-items: center;
            justify-content: center;
            padding: 2rem;
            animation: fadeIn 0.3s ease;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: var(--radius-photo);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .lightbox-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 2rem;
            line-height: 1;
            cursor: pointer;
            padding: 0.5rem;
        }

        .lightbox-close:hover {
            color: var(--accent-gold);
        }

        @media (max-width: 480px) {
            .lightbox {
                padding: 1rem;
            }

            .lightbox-close {
                top: 0.8rem;
                right: 0.8rem;
                font-size: 1.6rem;
            }
        }
