:root {
            --font-display: 'Spectral', Georgia, serif;
            --font-body: 'Karla', system-ui, -apple-system, sans-serif;

            --beige:      oklch(0.94 0.018 82);
            --beige-2:    oklch(0.915 0.022 80);
            --surface:    oklch(0.965 0.012 84);
            --cream:      oklch(0.975 0.016 88);

            --olive:      oklch(0.42 0.058 128);
            --olive-deep: oklch(0.32 0.05 128);
            --olive-ink:  oklch(0.40 0.055 128);

            --ink:        oklch(0.26 0.02 70);
            --ink-soft:   oklch(0.42 0.02 74);
            --ink-faint:  oklch(0.52 0.02 74);

            --terra:      oklch(0.55 0.13 42);
            --terra-deep: oklch(0.485 0.12 40);
            --ochre:      oklch(0.72 0.095 78);

            --on-olive:   oklch(0.95 0.022 100);
            --olive-muted:oklch(0.82 0.04 110);
            --line:       oklch(0.87 0.016 82);
            --line-soft:  oklch(0.90 0.014 84);
            --line-olive: oklch(0.95 0.02 110 / 0.18);

            --shadow-sm: 0 1px 2px oklch(0.26 0.03 70 / 0.06), 0 6px 20px oklch(0.26 0.03 70 / 0.08);
            --shadow-md: 0 10px 30px oklch(0.26 0.03 70 / 0.12), 0 3px 8px oklch(0.26 0.03 70 / 0.07);
            --shadow-lg: 0 30px 70px oklch(0.22 0.03 70 / 0.24);

            --ease: cubic-bezier(0.22, 1, 0.36, 1);
            --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
            --z-nav: 100; --z-backdrop: 150; --z-drawer: 200;
            --r: 5px; --r-lg: 16px;
        }

        *, *::before, *::after { box-sizing: border-box; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
        @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
        body {
            margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--beige);
            line-height: 1.65; font-size: 1.02rem; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
        }
        img { max-width: 100%; display: block; }
        a { color: inherit; text-decoration: none; }
        h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; margin: 0; letter-spacing: -0.01em; }
        p { margin: 0; }
        em { font-style: italic; }
        ::selection { background: var(--olive); color: var(--on-olive); }
        :focus-visible { outline: 2.5px solid var(--terra); outline-offset: 3px; border-radius: 2px; }
        .container { width: min(1180px, 100% - 3rem); margin-inline: auto; }
        @media (max-width: 640px) { .container { width: min(1180px, 100% - 2rem); } }

        /* Ornement : brin d'olivier stylisé (filet + feuille) */
        .orn { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 1.3rem; color: var(--terra-deep); }
        .orn .ln { height: 1px; width: 2.6rem; background: currentColor; }
        .orn .lf { width: 8px; height: 8px; border-radius: 50% 0 50% 50%; background: var(--olive); transform: rotate(45deg); flex: none; }
        .orn.center { justify-content: center; }

        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
            font-family: var(--font-body); font-weight: 700; font-size: 0.96rem; letter-spacing: 0.01em;
            padding: 0.9rem 1.7rem; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
            transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
            white-space: nowrap;
        }
        .btn svg { width: 1.05em; height: 1.05em; }
        .btn-primary { background: var(--terra); color: var(--cream); box-shadow: var(--shadow-sm); }
        .btn-primary:hover { background: var(--terra-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
        .btn-olive { background: var(--olive); color: var(--on-olive); }
        .btn-olive:hover { background: var(--olive-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
        .btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
        .btn-outline:hover { background: var(--ink); color: var(--beige); transform: translateY(-2px); }
        .btn-ghost { background: transparent; color: var(--on-olive); border-color: oklch(0.98 0.02 100 / 0.5); }
        .btn-ghost:hover { background: oklch(0.98 0.02 100 / 0.12); border-color: var(--on-olive); transform: translateY(-2px); }

        /* Nav */
        .nav { position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav); padding: 1.15rem 0;
            transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
            border-bottom: 1px solid transparent; }
        .nav::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
            background: linear-gradient(to bottom, oklch(0.24 0.04 128 / 0.6), transparent); opacity: 1; transition: opacity .4s var(--ease); }
        .nav.scrolled::before { opacity: 0; }
        .nav.scrolled { background: oklch(0.94 0.018 82 / 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 0.6rem 0; box-shadow: var(--shadow-sm); border-bottom-color: var(--line-soft); }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
        .wordmark { display: inline-flex; flex-direction: column; line-height: 1; color: var(--on-olive); transition: color .4s var(--ease); }
        .wordmark b { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; letter-spacing: 0.01em; }
        .wordmark small { font-family: var(--font-body); font-size: 0.56rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; margin-top: 0.25rem; opacity: 0.85; }
        .nav.scrolled .wordmark { color: var(--ink); }
        .nav-links { display: flex; align-items: center; gap: 1.45rem; }
        .nav-links a { font-size: 0.92rem; font-weight: 600; color: oklch(0.97 0.02 100 / 0.9); position: relative; padding: 0.3rem 0; transition: color .25s var(--ease); }
        .nav-links a::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 1.5px; width: 100%; background: var(--ochre); transform: scaleX(0); transform-origin: left; transition: transform .32s var(--ease); }
        .nav-links a:hover { color: #fff; } .nav-links a:hover::after { transform: scaleX(1); }
        .nav.scrolled .nav-links a { color: var(--ink-soft); } .nav.scrolled .nav-links a:hover { color: var(--ink); }
        .nav.scrolled .nav-links a::after { background: var(--terra); }
        .nav-links a.nav-cta { color: var(--cream); background: var(--terra); padding: 0.55rem 1.3rem; border-radius: 999px; font-weight: 700; }
        .nav-links a.nav-cta::after { display: none; }
        .nav-links a.nav-cta:hover { background: var(--terra-deep); color: var(--cream); }
        .nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--on-olive); background: none; border: none; cursor: pointer; transition: color .4s var(--ease); }
        .nav.scrolled .nav-toggle { color: var(--ink); }
        .nav-toggle svg { width: 26px; height: 26px; }

        /* Drawer */
        .backdrop { position: fixed; inset: 0; background: oklch(0.24 0.04 128 / 0.5); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; z-index: var(--z-backdrop); }
        .backdrop.show { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(86vw, 340px); background: var(--olive-deep); color: var(--on-olive); z-index: var(--z-drawer); padding: 2rem 1.75rem; transform: translateX(100%); transition: transform .42s var(--ease-soft); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
        .drawer.open { transform: translateX(0); }
        .drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; }
        .drawer .wordmark { color: var(--on-olive); }
        .drawer-close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: none; border: none; color: var(--on-olive); cursor: pointer; }
        .drawer-close svg { width: 26px; height: 26px; }
        .drawer nav { display: flex; flex-direction: column; gap: 0.1rem; }
        .drawer nav a { font-family: var(--font-display); font-size: 1.4rem; color: var(--on-olive); padding: 0.55rem 0; border-bottom: 1px solid var(--line-olive); }
        .drawer nav a:last-of-type { border-bottom: none; }
        .drawer .btn { margin-top: 1.5rem; }
        .drawer-tag { margin-top: auto; font-size: 0.9rem; color: var(--olive-muted); }
        .drawer-tag strong { display: block; color: var(--on-olive); font-weight: 700; font-family: var(--font-body); }

        /* Hero */
        .hero { position: relative; min-height: 93svh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
        .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
        .hero-scrim { position: absolute; inset: 0; z-index: -1; pointer-events: none;
            background:
              linear-gradient(105deg, oklch(0.19 0.04 128 / 0.84) 0%, oklch(0.20 0.04 128 / 0.58) 40%, oklch(0.22 0.04 128 / 0.18) 70%, transparent 90%),
              linear-gradient(to bottom, oklch(0.22 0.04 128 / 0.45) 0%, oklch(0.20 0.04 128 / 0.14) 28%, oklch(0.18 0.04 128 / 0.55) 74%, oklch(0.16 0.04 128 / 0.88) 100%); }
        .hero-inner { padding-top: 8rem; padding-bottom: clamp(2.5rem, 5vw, 4rem); position: relative; }
        .hero-copy { max-width: 42rem; color: var(--on-olive); }
        .hero .orn { color: var(--ochre); }
        .hero-ratings { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
        .hero-badge { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; font-weight: 700; color: var(--olive-deep); background: var(--ochre); padding: 0.42rem 0.95rem; border-radius: 999px; }
        .hero-badge .stars { color: var(--terra-deep); letter-spacing: 0.05em; }
        a.hero-badge { transition: background .25s var(--ease), transform .25s var(--ease); }
        a.hero-badge:hover { background: oklch(0.79 0.1 80); transform: translateY(-1px); }
        .hero h1 { font-size: clamp(2.9rem, 6.5vw, 5rem); font-weight: 500; line-height: 1.03; letter-spacing: -0.015em; text-wrap: balance; }
        .hero h1 em { color: var(--ochre); font-weight: 400; }
        .hero-sub { margin-top: 1.5rem; font-size: clamp(1.06rem, 1.5vw, 1.28rem); color: oklch(0.89 0.03 100); max-width: 34rem; line-height: 1.6; }
        .hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
        .hero-meta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1.1rem 2.4rem; border-top: 1px solid oklch(0.98 0.02 100 / 0.22); padding-top: 1.4rem; }
        .hero-meta .m { display: flex; flex-direction: column; gap: 0.1rem; }
        .hero-meta .m b { font-family: var(--font-display); font-size: 1.15rem; color: var(--on-olive); }
        .hero-meta .m span { font-size: 0.85rem; color: var(--olive-muted); }

        section { position: relative; }
        section[id] { scroll-margin-top: 5rem; }
        .band { padding: clamp(4rem, 8vw, 7rem) 0; }
        .band-2 { background: var(--beige-2); }
        .band-olive { background: var(--olive); color: var(--on-olive); }
        .band-olive .orn { color: var(--ochre); }
        .sec-head { max-width: 44rem; margin-bottom: clamp(2.4rem, 4vw, 3.4rem); }
        .sec-head.center { text-align: center; margin-inline: auto; }
        .sec-head h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
        .sec-head p { margin-top: 1rem; color: var(--ink-soft); font-size: 1.08rem; }
        .band-olive .sec-head p { color: var(--olive-muted); }

        /* L'auberge */
        .maison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
        .maison-media { position: relative; }
        .maison-media .frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/4.4; }
        .maison-media .frame img { width: 100%; height: 100%; object-fit: cover; }
        .maison-media .rate { position: absolute; right: -1.2rem; bottom: -1.2rem; background: var(--surface); border-radius: 14px; padding: 0.9rem 1.15rem; box-shadow: var(--shadow-md); text-align: center; }
        .maison-media .rate b { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--terra-deep); line-height: 1; }
        .maison-media .rate .st { color: var(--ochre); font-size: 0.8rem; letter-spacing: 0.1em; }
        .maison-media .rate span { display: block; font-size: 0.72rem; color: var(--ink-faint); margin-top: 0.15rem; }
        .maison-copy h2 { font-size: clamp(2.1rem, 4vw, 3rem); }
        .maison-copy p { margin-top: 1.15rem; color: var(--ink-soft); }
        .maison-copy p.lead { color: var(--ink); font-size: 1.2rem; line-height: 1.55; }
        .maison-copy p.lead em { color: var(--terra-deep); }
        .maison-feats { margin-top: 2rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; border-top: 1px solid var(--line); padding-top: 1.6rem; }
        .maison-feats .f b { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); margin-bottom: 0.15rem; }
        .maison-feats .f span { font-size: 0.85rem; color: var(--ink-faint); }

        /* Carte */
        .formules { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-bottom: clamp(2.5rem,5vw,3.6rem); }
        .formule { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 1.6rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); position: relative; }
        .formule.feat { background: var(--olive); color: var(--on-olive); border-color: transparent; box-shadow: var(--shadow-md); }
        .formule .k { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--terra-deep); }
        .formule.feat .k { color: var(--ochre); }
        .formule .pr { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; margin: 0.5rem 0 0.6rem; color: var(--ink); }
        .formule.feat .pr { color: var(--on-olive); }
        .formule p { font-size: 0.96rem; color: var(--ink-soft); }
        .formule.feat p { color: var(--olive-muted); }
        .formule .rib { position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%); background: var(--ochre); color: var(--olive-deep); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.28rem 0.8rem; border-radius: 999px; white-space: nowrap; }

        .carte-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(2rem,4vw,3.4rem) clamp(2.2rem,5vw,4rem); }
        .carte-col h3 { font-size: 1.55rem; display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.3rem; }
        .carte-col h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }
        .dish { padding: 0.9rem 0; border-bottom: 1px solid var(--line-soft); }
        .dish:last-child { border-bottom: none; }
        .dish-top { display: flex; align-items: baseline; gap: 0.75rem; }
        .dish .nm { font-family: var(--font-display); font-size: 1.14rem; color: var(--ink); flex: 1; }
        .dish .pr { font-family: var(--font-display); font-size: 1.14rem; color: var(--terra-deep); white-space: nowrap; }
        .dish .ds { margin-top: 0.2rem; font-size: 0.92rem; color: var(--ink-faint); max-width: 30rem; }
        .dish .ds .supp { color: var(--terra-deep); font-style: italic; }
        .carte-note { margin-top: 2.4rem; text-align: center; font-size: 0.95rem; color: var(--ink-faint); font-style: italic; font-family: var(--font-display); }

        /* Cartes cadeaux */
        .gift-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
        .gift-copy h2 { font-size: clamp(2.1rem,4vw,3rem); }
        .gift-copy h2 em { color: var(--ochre); }
        .gift-copy p { margin-top: 1.15rem; color: var(--olive-muted); }
        .gift-amounts { margin: 1.8rem 0; display: flex; flex-wrap: wrap; gap: 0.7rem; }
        .gift-amounts span { font-family: var(--font-display); font-size: 1.15rem; color: var(--on-olive); border: 1px solid var(--line-olive); background: oklch(0.98 0.02 100 / 0.06); padding: 0.55rem 1.1rem; border-radius: 999px; }
        .gift-media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/4; }
        .gift-media img { width: 100%; height: 100%; object-fit: cover; }
        .gift-media .tag { position: absolute; left: 1.2rem; top: 1.2rem; background: var(--terra); color: var(--cream); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4rem 0.85rem; border-radius: 999px; }

        /* Galerie */
        .gallery { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 200px; gap: 1rem; }
        .gallery figure { margin: 0; overflow: hidden; border-radius: var(--r); position: relative; }
        .gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
        .gallery figure:hover img { transform: scale(1.05); }
        .g-wide { grid-column: span 2; } .g-tall { grid-row: span 2; }

        /* Avis */
        .avis-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
        .avis { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
        .avis .stars { color: var(--ochre); letter-spacing: 0.12em; font-size: 0.95rem; }
        .avis p { margin-top: 0.8rem; color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; line-height: 1.55; }
        .avis .who { margin-top: 1rem; font-size: 0.88rem; color: var(--ink-faint); }
        .avis .who b { color: var(--ink); font-weight: 700; font-family: var(--font-body); }
        .avis-foot { margin-top: 2.2rem; text-align: center; font-size: 0.95rem; color: var(--ink-soft); }
        .avis-foot b { color: var(--terra-deep); }

        /* Infos + réservation */
        .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
        .hours { margin-top: 0.4rem; }
        .hours .row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.72rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.98rem; }
        .hours .row .d { color: var(--ink); } .hours .row .h { color: var(--ink-soft); text-align: right; }
        .hours .row.closed .h { color: var(--ink-faint); }
        .hours .row.hl { color: var(--olive-ink); font-weight: 700; }
        .hours .row.hl .d, .hours .row.hl .h { color: var(--olive-ink); }
        .info-meta { margin-top: 1.7rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 1.3rem; }
        .info-meta .b b { display: block; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.2rem; }
        .info-meta .b span, .info-meta .b a { color: var(--ink-soft); font-size: 0.95rem; }
        .info-meta .b a:hover { color: var(--terra-deep); text-decoration: underline; }

        .resa-card { background: var(--olive); color: var(--on-olive); border-radius: var(--r-lg); padding: clamp(1.8rem,3vw,2.6rem); box-shadow: var(--shadow-lg); text-align: center; }
        .resa-card h3 { font-size: 1.9rem; }
        .resa-card p { margin-top: 0.8rem; color: var(--olive-muted); }
        .resa-card .phone { display: block; margin: 1.5rem 0; font-family: var(--font-display); font-size: 1.9rem; color: var(--on-olive); }
        .resa-card .phone:hover { color: var(--ochre); }
        .resa-card .btn { width: 100%; }
        .resa-card .zc { margin-top: 0.8rem; font-size: 0.82rem; color: var(--olive-muted); }

        .map-frame { margin-top: clamp(2.5rem, 4vw, 3.6rem); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line-soft); aspect-ratio: 16 / 6; }
        .map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
        @media (max-width: 720px) { .map-frame { aspect-ratio: 3 / 3.2; } }

        /* Footer */
        .footer { background: var(--olive-deep); color: var(--olive-muted); padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
        .footer .wordmark { color: var(--on-olive); }
        .footer-about { margin-top: 1.2rem; max-width: 24rem; font-size: 0.95rem; }
        .footer-social { margin-top: 1.5rem; display: flex; gap: 0.7rem; }
        .footer-social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-olive); color: var(--on-olive); transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease); }
        .footer-social a:hover { background: var(--ochre); color: var(--olive-deep); border-color: var(--ochre); transform: translateY(-2px); }
        .footer-social svg { width: 19px; height: 19px; }
        .footer h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ochre); margin-bottom: 1rem; }
        .footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
        .footer ul a, .footer ul li { font-size: 0.95rem; }
        .footer ul a:hover { color: var(--on-olive); }
        .footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-olive); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.85rem; }
        .footer-credit { display: inline-flex; align-items: center; gap: 0.5rem; }
        .footer-credit img { height: 20px; width: auto; opacity: 0.9; }
        .footer-credit a { color: var(--on-olive); } .footer-credit a:hover { color: #fff; text-decoration: underline; }

        /* Reveals */
        .js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft); }
        .reveal.in { opacity: 1; transform: none; }
        .reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
        .js .hero-copy > * { opacity: 0; transform: translateY(22px); animation: heroIn .9s var(--ease-soft) forwards; }
        .js .hero .orn { animation-delay: .05s; } .js .hero-ratings { animation-delay: .12s; } .js .hero h1 { animation-delay: .22s; }
        .js .hero-sub { animation-delay: .36s; } .js .hero-actions { animation-delay: .5s; } .js .hero-meta { animation-delay: .62s; }
        @keyframes heroIn { to { opacity: 1; transform: none; } }
        .js .hero-bg { animation: kb 18s ease-out forwards; }
        @keyframes kb { from { transform: scale(1.08); } to { transform: scale(1); } }

        @media (max-width: 960px) {
            .nav-links { display: none; } .nav-toggle { display: flex; }
            .maison-grid, .gift-grid, .info-grid { grid-template-columns: 1fr; }
            .maison-copy, .gift-copy { order: -1; }
            .maison-media, .gift-media { max-width: 34rem; }
            .carte-cols { grid-template-columns: 1fr 1fr; }
            .gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; } .g-tall { grid-row: span 1; }
        }
        @media (max-width: 720px) {
            .formules { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }
            .formule.feat { order: -1; }
            .carte-cols { grid-template-columns: 1fr; }
            .avis-grid { grid-template-columns: 1fr; }
            .maison-feats { grid-template-columns: 1fr; gap: 0.9rem; }
        }
        @media (max-width: 560px) {
            .hero { min-height: 90svh; }
            .hero-actions { flex-direction: column; align-items: stretch; } .hero-actions .btn { width: 100%; }
            .info-meta { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
            .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; } .g-wide { grid-column: span 1; }
            .maison-media .rate { right: 0.5rem; bottom: -1rem; }
        }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
            .reveal, .js .hero-copy > * { opacity: 1 !important; transform: none !important; }
            .js .hero-bg { animation: none !important; transform: none !important; }
        }

/* liens meta hero (téléphone) */
.hero-meta a.m { text-decoration: none; transition: color .2s var(--ease); }
.hero-meta a.m:hover b { color: var(--ochre); }
.hero-meta .m-tel b { color: var(--ochre); }

/* ============ SOUS-PAGES (galerie, cartes cadeaux) ============ */
.page-head { padding: calc(6.5rem + 2vw) 0 clamp(2.5rem,5vw,4rem); background: var(--olive); color: var(--on-olive); text-align: center; position: relative; }
.page-head .orn { color: var(--ochre); justify-content: center; }
.page-head h1 { font-size: clamp(2.4rem,5vw,3.7rem); }
.page-head h1 em { color: var(--ochre); }
.page-head p { margin: 1.1rem auto 0; max-width: 42rem; color: var(--olive-muted); font-size: 1.1rem; }
.page-head .back { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.8rem; font-weight: 600; font-size: 0.92rem; color: var(--on-olive); border: 1px solid var(--line-olive); padding: 0.5rem 1.1rem; border-radius: 999px; transition: background .25s var(--ease), transform .25s var(--ease); }
.page-head .back:hover { background: oklch(0.98 0.02 100 / 0.1); transform: translateY(-2px); }

/* Galerie masonry */
.galgrid { columns: 4 250px; column-gap: 1rem; }
.galgrid figure { margin: 0 0 1rem; break-inside: avoid; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.galgrid img { width: 100%; height: auto; display: block; transition: transform .6s var(--ease); }
.galgrid figure:hover img { transform: scale(1.04); }
@media (max-width: 560px) { .galgrid { columns: 1; } }

/* Cartes cadeaux — produits */
.giftcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; margin-bottom: clamp(3rem,6vw,4.5rem); }
.giftcard { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.giftcard .top { padding: 1.7rem 1.5rem 1.4rem; background: linear-gradient(135deg, var(--olive), var(--olive-deep)); color: var(--on-olive); }
.giftcard.feat .top { background: linear-gradient(135deg, var(--terra), var(--terra-deep)); color: var(--cream); }
.giftcard .lbl { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ochre); }
.giftcard.feat .lbl { color: var(--cream); opacity: 0.9; }
.giftcard .amt { font-family: var(--font-display); font-size: 3.1rem; line-height: 1; margin-top: 0.3rem; }
.giftcard .body { padding: 1.4rem 1.5rem 1.6rem; background: var(--surface); color: var(--ink); flex: 1; display: flex; flex-direction: column; }
.giftcard .body p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.2rem; }
.giftcard .btn { margin-top: auto; width: 100%; }

/* Étapes */
.steps3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.step { text-align: center; }
.step .n { width: 48px; height: 48px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: var(--olive); color: var(--on-olive); font-family: var(--font-display); font-size: 1.35rem; }
.band-2 .step .n { box-shadow: var(--shadow-sm); }
.step h3 { font-size: 1.25rem; }
.step p { margin-top: 0.5rem; color: var(--ink-soft); font-size: 0.95rem; }

/* Formulaire commande cadeau */
.gform { max-width: 40rem; margin: 0 auto; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: clamp(1.7rem,3vw,2.5rem); box-shadow: var(--shadow-md); }
.gform h3 { font-size: 1.7rem; }
.gform .hint { color: var(--ink-faint); font-size: 0.92rem; margin: 0.4rem 0 1.5rem; }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink); padding: 0.78rem 0.9rem; border: 1.5px solid var(--line); border-radius: var(--r); background: var(--cream); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.field textarea { resize: vertical; min-height: 5rem; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--olive); outline: none; box-shadow: 0 0 0 3px oklch(0.42 0.058 128 / 0.16); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--terra); }
.field .err { display: block; color: var(--terra-deep); font-size: 0.82rem; margin-top: 0.35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.gform-legal { font-size: 0.8rem; color: var(--ink-faint); margin-top: 1rem; text-align: center; }
.gform-success { text-align: center; padding: 1.5rem 0; }
.gform-success .ic { width: 64px; height: 64px; border-radius: 50%; background: oklch(0.42 0.058 128 / 0.12); color: var(--olive); display: grid; place-items: center; margin: 0 auto 1.2rem; }
.gform-success .ic svg { width: 32px; height: 32px; }
.gform-success h3 { font-size: 1.6rem; }
.gform-success p { color: var(--ink-soft); margin-top: 0.7rem; }

@media (max-width: 860px) { .giftcards, .steps3 { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; } .field-row { grid-template-columns: 1fr; } }

/* Badge récompense Restaurant Guru (médaillon sur mesure) */
.award-badge { width: 158px; height: 158px; flex: none; border-radius: 50%; background: var(--olive); color: var(--on-olive); border: 2px solid var(--ochre); box-shadow: var(--shadow-md); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0.9rem; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.award-badge::before { content: ""; position: absolute; inset: 8px; border-radius: 50%; border: 1px solid oklch(0.72 0.095 78 / 0.5); }
.award-badge:hover { transform: translateY(-3px) rotate(-2deg); box-shadow: var(--shadow-lg); }
.award-badge .t10 { font-family: var(--font-display); font-size: 2.1rem; line-height: 1; color: var(--ochre); }
.award-badge .aw-l { font-size: 0.6rem; letter-spacing: 0.11em; text-transform: uppercase; margin-top: 0.4rem; color: var(--olive-muted); max-width: 8.5rem; line-height: 1.3; }
.award-badge .aw-y { font-size: 0.82rem; font-weight: 700; margin-top: 0.35rem; letter-spacing: 0.05em; color: var(--on-olive); }
.award-badge .aw-s { font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ochre); margin-top: 0.2rem; }
.award-wrap { display: flex; justify-content: center; margin-bottom: clamp(2rem, 4vw, 3rem); }

