/* ============================================================
   PAPETERIE REINE & FILS — Landing Page Styles
   Style: Classique & Raffine — Bleu marine + Or
   ============================================================ */

/* ---------- 1. Custom Properties ---------- */
:root {
    /* Backgrounds */
    --color-bg-dark: #0F1A2E;
    --color-bg-primary: #1B2A4A;
    --color-bg-warm: #243352;
    --color-bg-light: #F8F6F1;
    --color-bg-card: #FFFFFF;

    /* Text */
    --color-text-light: #F8F6F1;
    --color-text-dark: #1B2A4A;
    --color-text-muted: #6B7A8D;

    /* Accents */
    --color-accent: #C5A55A;
    --color-accent-hover: #D4B76A;
    --color-gold: #C5A55A;
    --color-gold-light: #D4B76A;

    /* Overlay */
    --color-overlay: rgba(15, 26, 46, 0.65);

    /* Typography */
    --ff-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --ff-body: 'Outfit', 'Segoe UI', Tahoma, sans-serif;
    --ff-accent: 'Kalam', cursive;

    /* Font sizes (fluid) */
    --fs-hero-title: clamp(2.8rem, 8vw, 5.5rem);
    --fs-hero-tagline: clamp(1rem, 3vw, 1.5rem);
    --fs-section-title: clamp(1.75rem, 5vw, 2.75rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;

    /* Spacing */
    --section-padding: 5rem 0;
    --container-max: 1100px;
    --navbar-height: 70px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 26, 46, 0.08), 0 1px 2px rgba(15, 26, 46, 0.06);
    --shadow-md: 0 4px 18px rgba(15, 26, 46, 0.10);
    --shadow-lg: 0 14px 40px rgba(15, 26, 46, 0.18);
    --shadow-gold: 0 18px 40px -22px rgba(197, 165, 90, 0.35), 0 4px 18px rgba(15, 26, 46, 0.08);

    /* Easings */
    --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);

    /* Paper grain — inlined SVG turbulence, alpha 0.04 baked in.
       Tiles 240×240, ~880 bytes. Used on light sections only. */
    --paper-grain: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.36 0 0 0 0 0.28 0.04 0 0 0 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

    /* Status colors */
    --color-open: #4CAF74;
    --color-closed: #C6585A;
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(27, 42, 74, 0.015) 10px,
        rgba(27, 42, 74, 0.015) 11px
    );
}

ul, ol {
    list-style: none;
}

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

button {
    font: inherit;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
}

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

address {
    font-style: normal;
}

/* ---------- 3. Utilities ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.25rem;
    border-radius: 3px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: var(--fs-body);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition:
        transform 400ms var(--ease-luxe),
        box-shadow 400ms var(--ease-luxe),
        background-color 400ms var(--ease-luxe),
        border-color 400ms var(--ease-luxe),
        color 400ms var(--ease-luxe);
}

.btn--primary {
    background-color: var(--color-accent);
    color: var(--color-bg-primary);
    border-color: var(--color-accent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn--outline:hover,
.btn--outline:focus-visible {
    background-color: var(--color-gold);
    color: var(--color-bg-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only--focusable:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 0.75rem 1.5rem;
    margin: 0;
    clip: auto;
    background: var(--color-accent);
    color: var(--color-bg-primary);
    z-index: 10000;
    font-size: var(--fs-body);
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

/* ---------- 4. Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-height);
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.navbar--scrolled {
    background-color: var(--color-bg-dark);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.navbar__logo {
    display: flex;
    align-items: center;
}

.navbar__logo-img {
    height: 50px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.navbar__logo:hover .navbar__logo-img {
    opacity: 0.85;
}

/* Hamburger toggle */
.navbar__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    z-index: 1001;
}

.navbar__toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-light);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.navbar__toggle--active .navbar__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__toggle--active .navbar__toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar__toggle--active .navbar__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-bg-dark);
    padding: calc(var(--navbar-height) + 2rem) 2rem 2rem;
    transition: right var(--transition-base);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.navbar__menu--open {
    right: 0;
}

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

.navbar__link {
    display: block;
    padding: 0.75rem 0;
    color: var(--color-text-light);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(197, 165, 90, 0.15);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.navbar__link:hover,
.navbar__link--active {
    color: var(--color-gold);
    padding-left: 0.5rem;
}

/* ---------- 5. Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(15, 26, 46, 0.45) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(197, 165, 90, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(197, 165, 90, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(36, 51, 82, 0.4) 0%, transparent 50%),
        linear-gradient(to bottom, var(--color-bg-primary), var(--color-bg-warm));
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        var(--color-overlay),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(197, 165, 90, 0.03) 2px,
            rgba(197, 165, 90, 0.03) 4px
        );
    pointer-events: none;
}

.hero__corner {
    position: absolute;
    width: 64px;
    height: 64px;
    color: var(--color-gold);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-luxe) 1.2s forwards;
}

.hero__corner--tl { top: 32px; left: 32px; }
.hero__corner--br { right: 32px; bottom: 32px; }

@media (max-width: 599px) {
    .hero__corner { display: none; }
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 1rem;
}

.hero__logo {
    max-width: 320px;
    width: 80%;
    height: auto;
    margin: 0 auto 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero__tagline {
    font-family: var(--ff-heading);
    font-style: italic;
    font-size: var(--fs-hero-tagline);
    line-height: 1.4;
    letter-spacing: 0.03em;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.1s forwards;
}

.hero__info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    font-size: var(--fs-small);
    color: rgba(248, 246, 241, 0.7);
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.3s forwards;
}

.hero__info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero__info-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gold);
    opacity: 0.7;
    animation: bounce 3.4s var(--ease-luxe) infinite;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.hero__scroll-indicator--hidden {
    opacity: 0;
    pointer-events: none;
}

/* ---------- 6. Section Base ---------- */
.section {
    padding: var(--section-padding);
}

.section--dark {
    background-color: var(--color-bg-warm);
    color: var(--color-text-light);
}

.section--light {
    background-color: var(--color-bg-light);
    background-image: var(--paper-grain);
    background-repeat: repeat;
    color: var(--color-text-dark);
    position: relative;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    font-family: var(--ff-heading);
    font-size: var(--fs-section-title);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.005em;
    font-feature-settings: "lnum", "kern", "liga";
    margin-bottom: 0.4rem;
}

.section--dark .section__title {
    color: var(--color-text-light);
}

.section--light .section__title {
    color: var(--color-text-dark);
}

.section__subtitle {
    font-family: var(--ff-heading);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--color-text-muted);
    margin-top: 0.4rem;
}

.section--dark .section__subtitle {
    color: var(--color-gold-light);
}

.section__ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.4rem;
}

.section__ornament::before,
.section__ornament::after {
    content: '';
    width: 56px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.7;
}

.section__ornament svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

/* ---------- 7. Services Grid ---------- */
.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    padding: 2rem 1.5rem;
    background: var(--color-bg-card);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(27, 42, 74, 0.08);
    box-shadow: var(--shadow-sm);
    transition:
        transform 600ms var(--ease-luxe),
        box-shadow 600ms var(--ease-luxe),
        border-color 400ms var(--ease-luxe);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(197, 165, 90, 0.4);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    color: var(--color-gold);
}

.service-card__icon svg {
    width: 40px;
    height: 40px;
}

.service-card__title {
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.service-card__desc {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ---------- 8. Highlights Banner ---------- */
.highlights {
    padding: 3.5rem 0;
}

.highlights__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.highlight__number {
    display: block;
    font-family: var(--ff-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.2;
}

.highlight__label {
    display: block;
    font-size: var(--fs-small);
    color: rgba(248, 246, 241, 0.7);
    margin-top: 0.25rem;
}

/* ---------- 9. Impression Photo Showcase ---------- */
.impression__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.impression__lead {
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.impression__text p {
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.impression__formats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.format-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    font-family: var(--ff-body);
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--color-bg-primary);
    background: var(--color-gold);
    border-radius: 3px;
    letter-spacing: 0.02em;
}

.impression__placeholder {
    width: 100%;
    min-height: 280px;
    border-radius: 8px;
    background:
        radial-gradient(ellipse at 25% 30%, rgba(197, 165, 90, 0.15) 0%, transparent 55%),
        linear-gradient(135deg, var(--ph-c1, #1B2A4A) 0%, #243352 60%, #2D3F66 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* CSS-art "photo print" : a single rotated white sheet to the right side */
.impression__placeholder::before {
    content: '';
    position: absolute;
    width: 30%;
    aspect-ratio: 3 / 4;
    top: 50%;
    right: 12%;
    transform: translateY(-50%) rotate(7deg);
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F6F1 100%);
    border-top: 3px solid var(--color-gold);
    box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.impression__placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(0, 0, 0, 0.18) 100%);
    pointer-events: none;
}

.impression__placeholder-label {
    position: relative;
    z-index: 1;
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    text-align: center;
    padding: 1rem;
    max-width: 55%;
    margin-right: auto;
}

@media (max-width: 599px) {
    .impression__placeholder::before { display: none; }
    .impression__placeholder-label { max-width: 100%; margin-right: 0; }
}

/* ---------- 10. Infos / Horaires ---------- */
.infos__grid {
    display: grid;
    gap: 2.5rem;
}

.infos__details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 1.5rem;
    border-left: 3px solid var(--color-gold);
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 6px 6px 0;
}

.info-card__icon {
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.info-card__title {
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.info-card__hours {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.info-card__hours div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: background-color var(--transition-fast);
}

.info-card__hours dt {
    font-weight: 400;
    color: rgba(248, 246, 241, 0.8);
}

.info-card__hours dd {
    font-weight: 700;
    color: var(--color-gold-light);
    text-align: right;
}

/* Current day highlight (applied by JS) */
.info-card__hours div.hours--today {
    background: rgba(197, 165, 90, 0.15);
}

.info-card__hours div.hours--today dt {
    font-weight: 700;
    color: var(--color-gold);
}

/* Closed day styling */
.info-card__hours div.hours--closed dd {
    color: rgba(248, 246, 241, 0.5);
    font-style: italic;
    font-weight: 400;
}

.info-card__note {
    margin-top: 0.75rem;
    font-size: var(--fs-small);
    font-family: var(--ff-accent);
    color: var(--color-gold-light);
}

.info-card__address {
    color: rgba(248, 246, 241, 0.8);
    line-height: 1.8;
}

.info-card a {
    color: var(--color-gold-light);
    transition: color var(--transition-fast);
}

.info-card a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

.infos__map {
    border-radius: 6px;
    overflow: hidden;
    min-height: 300px;
}

.infos__map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
    border-radius: 6px;
}

/* ---------- 11. CTA Final ---------- */
.cta-final {
    padding: 5rem 0;
}

.cta-final__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-final__title {
    font-family: var(--ff-heading);
    font-size: var(--fs-section-title);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}

.cta-final__text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

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

.cta-final__social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ---------- 12. Footer ---------- */
.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 3rem 0 1.5rem;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(197, 165, 90, 0.15);
}

.footer__brand {
    text-align: center;
}

.footer__logo {
    font-family: var(--ff-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

.footer__tagline {
    font-family: var(--ff-heading);
    font-style: italic;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(197, 165, 90, 0.3);
    color: var(--color-text-light);
    transition: all var(--transition-base);
}

.footer__social-link:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.footer__bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

.footer__bottom p + p {
    margin-top: 0.5rem;
}

/* ---------- 13. Keyframes ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ---------- 13bis. Open/Closed Badge ---------- */
.open-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 0.02em;
    background: rgba(76, 175, 116, 0.14);
    color: var(--color-open);
    border: 1px solid rgba(76, 175, 116, 0.35);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.open-badge[hidden] { display: none; }

.open-badge--closed {
    background: rgba(198, 88, 90, 0.14);
    color: var(--color-closed);
    border-color: rgba(198, 88, 90, 0.35);
}

.open-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 0 currentColor;
    animation: openPulse 2s ease infinite;
}

.open-badge--closed .open-badge__dot {
    animation: none;
}

.open-badge--hero {
    margin: 0 auto 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.open-badge--card {
    margin-bottom: 0.9rem;
}

@keyframes openPulse {
    0%   { box-shadow: 0 0 0 0 rgba(76, 175, 116, 0.5); }
    70%  { box-shadow: 0 0 0 8px rgba(76, 175, 116, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 116, 0); }
}

/* ---------- 16. Testimonials ---------- */
.testimonials__track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.testimonial {
    background: var(--color-bg-card);
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(27, 42, 74, 0.08);
    border-top: 3px solid var(--color-gold);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition:
        transform 600ms var(--ease-luxe),
        box-shadow 600ms var(--ease-luxe);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.testimonial__stars {
    color: var(--color-gold);
    letter-spacing: 0.1em;
    font-size: 1.05rem;
}

.testimonial__quote {
    font-family: var(--ff-heading);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin: 0;
    quotes: "« " " »";
}

.testimonial__author {
    font-family: var(--ff-body);
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ---------- 17. Quote form ---------- */
.quote-form {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: rgba(0, 0, 0, 0.15);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
    padding: 2rem 1.5rem;
}

.quote-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.quote-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.quote-form__label {
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--color-gold-light);
    letter-spacing: 0.04em;
}

.quote-form__req {
    color: var(--color-gold);
    margin-left: 0.15rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    font: inherit;
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: rgba(248, 246, 241, 0.06);
    color: var(--color-text-light);
    border: 1px solid rgba(197, 165, 90, 0.25);
    border-radius: 4px;
    transition:
        border-color 300ms var(--ease-luxe),
        background-color 300ms var(--ease-luxe),
        box-shadow 300ms var(--ease-luxe);
}

.quote-form input:hover,
.quote-form select:hover,
.quote-form textarea:hover {
    border-color: rgba(197, 165, 90, 0.45);
    background: rgba(248, 246, 241, 0.08);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(248, 246, 241, 0.10);
    box-shadow: 0 0 0 4px rgba(197, 165, 90, 0.18);
}

.quote-form input[aria-invalid="true"],
.quote-form select[aria-invalid="true"],
.quote-form textarea[aria-invalid="true"] {
    border-color: var(--color-closed);
    box-shadow: 0 0 0 4px rgba(198, 88, 90, 0.18);
}

.quote-form textarea {
    resize: vertical;
    min-height: 120px;
}

.quote-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23D4B76A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1,1.5 6,6.5 11,1.5'/%3E%3C/svg%3E");
    background-position: calc(100% - 14px) 50%;
    background-size: 12px 8px;
    background-repeat: no-repeat;
    padding-right: 2.4rem;
    cursor: pointer;
}

.quote-form select option {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

.quote-form__field--file input[type="file"] {
    padding: 0.5rem 0.6rem;
    cursor: pointer;
}

.quote-form__hint {
    font-size: 0.8rem;
    color: rgba(248, 246, 241, 0.6);
    font-style: italic;
}

.quote-form__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.quote-form__feedback {
    min-height: 1.5rem;
    font-size: var(--fs-small);
    text-align: center;
}

.quote-form__feedback--success {
    color: var(--color-open);
    font-weight: 600;
}

.quote-form__feedback--error {
    color: var(--color-closed);
    font-weight: 600;
}

/* ---------- 18. FAQ ---------- */
.faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq__item {
    background: var(--color-bg-card);
    border: 1px solid rgba(27, 42, 74, 0.08);
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.faq__item[open] {
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 165, 90, 0.35);
}

.faq__question {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    transform: rotate(45deg);
    transition: transform var(--transition-base) var(--ease-out-quart);
    flex-shrink: 0;
    margin-right: 0.25rem;
}

.faq__item[open] .faq__question::after {
    transform: rotate(-135deg);
}

.faq__question:hover {
    color: var(--color-gold);
}

.faq__answer {
    padding: 0 1.25rem 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ---------- 19. Sticky mobile CTA ---------- */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    display: none;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0));
    background: rgba(15, 26, 46, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(197, 165, 90, 0.25);
    transform: translateY(110%);
    transition: transform var(--transition-base) var(--ease-out-quart);
}

.sticky-cta--visible {
    transform: translateY(0);
}

.sticky-cta__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.7rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.sticky-cta__btn--primary {
    background: var(--color-gold);
    color: var(--color-bg-primary);
}

.sticky-cta__btn--outline {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.sticky-cta__btn:active {
    transform: scale(0.97);
}

/* ---------- 14. Media Queries ---------- */

/* 576px — Small tablets */
@media (min-width: 576px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-form__row {
        grid-template-columns: 1fr 1fr;
    }
}

/* 768px — Tablets */
@media (min-width: 768px) {
    .navbar__toggle {
        display: none;
    }

    .navbar__menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        box-shadow: none;
    }

    .navbar__list {
        flex-direction: row;
        gap: 0;
    }

    .navbar__link {
        padding: 0.5rem 1rem;
        font-size: var(--fs-small);
        border-bottom: none;
        position: relative;
    }

    .navbar__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--color-gold);
        transition: all var(--transition-base);
        transform: translateX(-50%);
    }

    .navbar__link:hover::after,
    .navbar__link--active::after {
        width: 60%;
    }

    .navbar__link:hover,
    .navbar__link--active {
        padding-left: 1rem;
        color: var(--color-gold);
    }

    .infos__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .highlights__grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .hero__info {
        flex-direction: row;
        gap: 2rem;
    }

    .footer__content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer__brand {
        text-align: left;
    }

    .testimonials__track {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile only — sticky CTA */
@media (max-width: 767.98px) {
    .sticky-cta {
        display: flex;
    }

    /* avoid footer hidden under sticky bar */
    body.has-sticky-cta {
        padding-bottom: 4.5rem;
    }
}

/* 992px — Desktop */
@media (min-width: 992px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section {
        padding: 6rem 0;
    }

    .highlights {
        padding: 4rem 0;
    }
}

/* 1200px — Wide desktop */
@media (min-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================
   SEO LOCAL ENHANCEMENTS — Papeterie Reine (ajouts)
   ============================================================ */

/* H1 visible dans le hero */
.hero__title {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.15;
    color: var(--color-gold);
    margin: 0.5rem 0 0.75rem;
    text-shadow: 0 2px 18px rgba(15, 26, 46, 0.55);
    letter-spacing: 0.5px;
}

/* Intro hero sous la tagline */
.hero__intro {
    font-size: var(--fs-small);
    color: var(--color-text-light);
    opacity: 0.9;
    margin: 0.5rem 0 1.25rem;
}
.hero__intro-link {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hero__intro-link:hover {
    color: var(--color-gold-light);
}

/* Lead paragraph for sections (section__lead) */
.section__lead {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.65;
    color: inherit;
}
.section--dark .section__lead {
    color: var(--color-text-light);
    opacity: 0.92;
}

/* Footnote / micro-link sous une grille */
.section__footnote {
    margin-top: 2rem;
    text-align: center;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}
.section--dark .section__footnote {
    color: var(--color-text-light);
    opacity: 0.85;
}
.section__footnote a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Lien interne sous une carte service/produit */
.service-card__link {
    margin-top: 1rem;
    font-size: var(--fs-small);
}
.service-card__link a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
}
.service-card__link a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* CTA produits — 2 boutons centrés */
.products__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

/* Adresse — lien Google Maps */
.info-card__action {
    margin-top: 0.75rem;
    font-size: var(--fs-small);
}
.info-card__action a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
}
.info-card__action a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Section bénéfices (Proximité / Choix / Conseils) */
.benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
.benefit {
    text-align: center;
    padding: 1.5rem 1rem;
}
.benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(197, 165, 90, 0.12);
    color: var(--color-gold);
    margin: 0 auto 1rem;
}
.benefit__icon svg {
    width: 28px;
    height: 28px;
}
.benefit__title {
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}
.benefit__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 320px;
    margin: 0 auto;
}

/* Footer nav (liens internes) */
.footer__nav {
    display: flex;
    justify-content: center;
}
.footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer__nav-list a {
    color: var(--color-text-light);
    opacity: 0.8;
    text-decoration: none;
    font-size: var(--fs-small);
    transition: opacity var(--transition-fast), color var(--transition-fast);
}
.footer__nav-list a:hover {
    color: var(--color-gold);
    opacity: 1;
}

/* Responsive — bénéfices en 3 colonnes ≥ 768px */
@media (min-width: 768px) {
    .benefits__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* ============================================================
   STATIC PAGES (landing + blog) — layout, breadcrumb, article
   ============================================================ */

.page {
    padding-top: calc(var(--navbar-height) + 1rem);
    max-width: 880px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 4rem;
    color: var(--color-text-dark);
}

.breadcrumb {
    font-size: 0.875rem;
    margin: 1rem 0 1.5rem;
    color: var(--color-text-muted);
}
.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
}
.breadcrumb li:not(:last-child)::after {
    content: " ›";
    margin-left: 0.4rem;
    color: var(--color-text-muted);
}
.breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}
.breadcrumb [aria-current="page"] {
    color: var(--color-text-dark);
    font-weight: 600;
}

.page__article {
    background: var(--color-bg-card);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.page__header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(15, 26, 46, 0.08);
}
.page__header h1 {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.page__lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--color-text-dark);
    margin-bottom: 1.25rem;
}
.page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.page__section {
    margin: 2rem 0;
}
.page__section h2 {
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    padding-top: 0.5rem;
}
.page__section h3 {
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.page__section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.page__section a,
.page__article a:not(.btn) {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.page__section a:hover,
.page__article a:not(.btn):hover {
    color: var(--color-gold-light);
}

.page__list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0.75rem 0 1rem;
}
.page__list li {
    margin-bottom: 0.5rem;
    line-height: 1.65;
}
ol.page__list {
    list-style: decimal;
}

.page__faq .faq__item {
    background: var(--color-bg-light);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--color-gold);
}
.page__faq .faq__question {
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text-dark);
    list-style: none;
}
.page__faq .faq__question::-webkit-details-marker {
    display: none;
}
.page__faq .faq__answer {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(15, 26, 46, 0.08);
    font-size: 0.95rem;
    line-height: 1.65;
}

.page__cta {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 2.5rem 0;
}
.page__cta h2 {
    color: var(--color-gold);
    font-family: var(--ff-heading);
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}
.page__cta p {
    margin-bottom: 1.25rem;
    line-height: 1.6;
}
.page__cta .page__actions {
    justify-content: center;
}

.page__related {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--color-bg-light);
    border-radius: 8px;
}
.page__related h2 {
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}
.page__related ul {
    list-style: none;
    padding: 0;
}
.page__related li {
    margin-bottom: 0.5rem;
}

/* Blog index — list of cards */
.blog__list {
    display: grid;
    gap: 1.25rem;
    margin: 2rem 0;
}
.blog-card {
    background: var(--color-bg-card);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-gold);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.blog-card__title {
    font-family: var(--ff-heading);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}
.blog-card__title a {
    color: var(--color-text-dark);
    text-decoration: none;
}
.blog-card__title a:hover {
    color: var(--color-gold);
}
.blog-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}
.blog-card__meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

@media (min-width: 768px) {
    .page {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .page__article {
        padding: 2.5rem 2.5rem;
    }
}

/* ============================================================
   21. BRAND BANNERS — printed-in-image hero strips
   Wide editorial banners used in #impression and the
   dedicated #savoir-faire section.
   ============================================================ */

.impression__banner {
    margin: 0 auto;
    max-width: var(--container-max);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.impression__banner picture,
.savoir-faire__item picture {
    display: block;
}

.impression__banner img,
.savoir-faire__item img {
    display: block;
    width: 100%;
    height: auto;
}

/* Savoir-faire — vertical stack of 3 service banners */
.savoir-faire__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.savoir-faire__item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition:
        transform 600ms var(--ease-luxe),
        box-shadow 600ms var(--ease-luxe);
}

.savoir-faire__item:hover,
.savoir-faire__item:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

@media (max-width: 599px) {
    .savoir-faire__list { gap: 1rem; }
    .savoir-faire__item { border-radius: 6px; }
}

/* ========== Cookie consent banner ========== */
.cookie-banner {
    position: fixed;
    inset: auto 1rem 1rem 1rem;
    z-index: 9000;
    background: var(--color-bg, #faf6ed);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
    padding: 1.25rem 1.5rem;
    max-width: 36rem;
    margin: 0 auto;
    animation: cookie-slide-up 220ms ease;
}
@keyframes cookie-slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
}
.cookie-banner--leaving {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 200ms, transform 200ms;
}
.cookie-banner__content { display: flex; flex-direction: column; gap: 0.75rem; }
.cookie-banner__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-text, #1a1a1a);
}
.cookie-banner__desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-text-muted, #5a5a5a);
    margin: 0;
}
.cookie-banner__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cookie-banner__btn {
    padding: 0.625rem 1.1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 150ms, border-color 150ms;
    min-height: 44px;
    font-family: inherit;
}
.cookie-banner__btn:focus-visible {
    outline: 2px solid var(--color-gold, #b8932f);
    outline-offset: 2px;
}
.cookie-banner__btn--primary {
    background: var(--color-gold, #b8932f);
    color: #fff;
}
.cookie-banner__btn--primary:hover { background: var(--color-gold-dark, #957524); }
.cookie-banner__btn--secondary {
    background: transparent;
    color: var(--color-text, #1a1a1a);
    border-color: rgba(0, 0, 0, 0.2);
}
.cookie-banner__btn--secondary:hover { background: rgba(0, 0, 0, 0.04); border-color: rgba(0, 0, 0, 0.35); }

@media (prefers-reduced-motion: reduce) {
    .cookie-banner { animation: none; }
    .cookie-banner--leaving { transition: none; }
}

/* ============================================================
   Lien Boutique en ligne — accent doré dans la navbar
   ============================================================ */
.navbar__link--shop {
    color: var(--color-accent);
    font-weight: 600;
}
.navbar__link--shop:hover,
.navbar__link--shop:focus {
    color: var(--color-accent-hover);
}
