/* ═══════════════════════════════════════════════════════
   Château de Vertefeuille — Design System
   Heritage premium · Minimaliste · Élégant
   ═══════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
    --vf-green:     #1D5345;
    --vf-green-dk:  #153d33;
    --vf-beige:     #CFCDB0;
    --vf-grey:      #B2ACA9;
    --vf-brown:     #6C5C4F;
    --vf-offwhite:  #E8E4D0;   /* blanc cassé — couleur du mur */
    --vf-dark:      #2B2924;
    --vf-white:     #FFFFFF;

    --vf-stroke:       rgba(29, 83, 69, .15);
    --vf-stroke-light: rgba(29, 83, 69, .08);

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    --space-xs:  .5rem;    /*  8px */
    --space-sm:  1rem;     /* 16px */
    --space-md:  1.5rem;   /* 24px */
    --space-lg:  2.5rem;   /* 40px */
    --space-xl:  4rem;     /* 64px */
    --space-2xl: 6rem;     /* 96px */
    --space-3xl: 8rem;     /* 128px */

    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  24px;

    --transition: .25s ease;
}


/* ══════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--vf-dark);
    background: var(--vf-beige);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

::selection {
    background: rgba(29, 83, 69, .15);
    color: var(--vf-dark);
}

:focus-visible {
    outline: 2px solid var(--vf-green);
    outline-offset: 2px;
}


/* ══════════════════════════════════════
   CONTAINER
   ══════════════════════════════════════ */
.vf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

@media (min-width: 768px) {
    .vf-container {
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }
}


/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.vf-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(207, 205, 176, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--vf-stroke);
    transition: box-shadow var(--transition);
}

.vf-header.is-scrolled {
    box-shadow: 0 1px 16px rgba(0, 0, 0, .06);
}

.vf-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    height: 72px;
}

/* Logo */
.vf-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    line-height: 1.2;
}

.vf-logo-img {
    height: 44px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}

@media (min-width: 768px) {
    .vf-logo-img {
        height: 52px;
    }
}

.vf-logo-icon {
    flex-shrink: 0;
}

.vf-logo-text {
    display: flex;
    flex-direction: column;
}

.vf-logo-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--vf-green);
}

@media (min-width: 768px) {
    .vf-logo-name {
        font-size: 1.4rem;
    }
}

.vf-logo-sub {
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--vf-brown);
    display: none;
}

@media (min-width: 640px) {
    .vf-logo-sub {
        display: block;
    }
}

/* Navigation */
.vf-nav {
    display: none;
    align-items: center;
    gap: var(--space-lg);
}

.vf-nav a {
    font-size: .85rem;
    font-weight: 400;
    letter-spacing: .02em;
    color: var(--vf-brown);
    position: relative;
    transition: color var(--transition);
}

.vf-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--vf-green);
    transition: width var(--transition);
}

.vf-nav a:hover {
    color: var(--vf-green);
}

.vf-nav a:hover::after {
    width: 100%;
}

@media (min-width: 1024px) {
    .vf-nav {
        display: flex;
    }
}

/* Header CTA */
.vf-header-cta {
    display: none;
    font-size: .82rem;
    padding: .55rem 1.2rem;
}

@media (min-width: 1024px) {
    .vf-header-cta {
        display: inline-flex;
    }
}

/* Mobile menu toggle */
.vf-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--vf-stroke);
    border-radius: var(--radius-sm);
    width: 42px;
    height: 42px;
    cursor: pointer;
    color: var(--vf-green);
    transition: background var(--transition);
}

.vf-menu-toggle:hover {
    background: rgba(29, 83, 69, .06);
}

.vf-menu-icon--close {
    display: none;
}

.vf-menu-toggle[aria-expanded="true"] .vf-menu-icon--open {
    display: none;
}

.vf-menu-toggle[aria-expanded="true"] .vf-menu-icon--close {
    display: block;
}

@media (min-width: 1024px) {
    .vf-menu-toggle {
        display: none;
    }
}

/* Mobile nav panel */
.vf-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--vf-beige);
    border-bottom: 1px solid var(--vf-stroke);
    padding: var(--space-md) var(--space-md) var(--space-lg);
    gap: 0;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.vf-nav.is-open a {
    font-size: 1rem;
    padding: .65rem 0;
    border-bottom: 1px solid var(--vf-stroke-light);
}

.vf-nav.is-open a:last-child {
    border-bottom: none;
}


/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.vf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.6rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .01em;
    border: 1px solid var(--vf-green);
    cursor: pointer;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform .15s ease;
    white-space: nowrap;
    line-height: 1.2;
}

.vf-btn:hover {
    transform: translateY(-1px);
}

/* Primary : vert forêt + blanc cassé */
.vf-btn-primary {
    background: var(--vf-green);
    color: var(--vf-offwhite);
    border-color: var(--vf-green);
}

.vf-btn-primary:hover {
    background: var(--vf-green-dk);
    border-color: var(--vf-green-dk);
}

/* Outline : transparent + vert */
.vf-btn-outline {
    background: transparent;
    color: var(--vf-green);
    border-color: var(--vf-green);
}

.vf-btn-outline:hover {
    background: var(--vf-green);
    color: var(--vf-offwhite);
}

/* Inversé (sections vertes) : blanc cassé + vert */
.vf-btn-primary-inv {
    background: var(--vf-offwhite);
    color: var(--vf-green);
    border-color: var(--vf-offwhite);
}

.vf-btn-primary-inv:hover {
    background: var(--vf-white);
    border-color: var(--vf-white);
}


/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.vf-hero {
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    max-height: 860px;
    display: flex;
    align-items: flex-end;
}

@media (min-width: 768px) {
    .vf-hero {
        min-height: 80vh;
    }
}

.vf-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92) contrast(1.02);
}

.vf-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(207, 205, 176, .95) 0%,
        rgba(207, 205, 176, .7) 35%,
        rgba(207, 205, 176, .3) 65%,
        rgba(207, 205, 176, .05) 100%
    );
}

@media (min-width: 768px) {
    .vf-hero-overlay {
        background: linear-gradient(
            35deg,
            rgba(207, 205, 176, .92) 0%,
            rgba(207, 205, 176, .7) 35%,
            rgba(207, 205, 176, .2) 65%,
            rgba(207, 205, 176, .02) 100%
        );
    }
}

.vf-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: var(--space-2xl);
    padding-top: 8rem;
    width: 100%;
}

@media (min-width: 768px) {
    .vf-hero-content {
        padding-top: 12rem;
        padding-bottom: var(--space-3xl);
    }
}

.vf-hero-kicker {
    font-size: .72rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--vf-brown);
    margin-bottom: var(--space-sm);
}

.vf-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--vf-green);
    max-width: 650px;
}

.vf-hero-desc {
    margin-top: var(--space-md);
    max-width: 520px;
    font-size: .95rem;
    color: var(--vf-dark);
    line-height: 1.75;
}

.vf-hero-actions {
    margin-top: var(--space-lg);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}


/* ══════════════════════════════════════
   ORGANIC CURVE SEPARATORS
   ══════════════════════════════════════ */
.vf-curve {
    display: block;
    line-height: 0;
    margin-top: -1px;
}

.vf-curve svg {
    width: 100%;
    height: 40px;
    display: block;
}

@media (min-width: 768px) {
    .vf-curve svg {
        height: 64px;
    }
}

.vf-curve--beige path         { fill: var(--vf-beige); }
.vf-curve--white path         { fill: var(--vf-white); }
.vf-curve--green path         { fill: var(--vf-green); }
.vf-curve--beige-from-green path { fill: var(--vf-beige); }

.vf-curve--beige-from-green {
    background: var(--vf-green);
}


/* ══════════════════════════════════════
   GREEN BAND — Chiffres clés
   ══════════════════════════════════════ */
.vf-band {
    background: var(--vf-green);
    padding: var(--space-xl) 0;
}

.vf-band-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg) var(--space-md);
    text-align: center;
}

@media (min-width: 768px) {
    .vf-band-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vf-band-item {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.vf-band-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    color: var(--vf-offwhite);
    line-height: 1.2;
}

.vf-band-number sup {
    font-size: .5em;
}

.vf-band-label {
    font-size: .8rem;
    letter-spacing: .08em;
    color: rgba(232, 228, 208, .65);
}


/* ══════════════════════════════════════
   SECTIONS — Générique
   ══════════════════════════════════════ */
.vf-section {
    padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
    .vf-section {
        padding: var(--space-3xl) 0;
    }
}

.vf-section--beige  { background: var(--vf-beige); }
.vf-section--white  { background: var(--vf-white); }
.vf-section--green  { background: var(--vf-green); }

.vf-section-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

@media (min-width: 768px) {
    .vf-section-narrow {
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }
}

.vf-section-cta {
    margin-top: var(--space-xl);
    text-align: center;
}


/* ══════════════════════════════════════
   HEADINGS
   ══════════════════════════════════════ */
.vf-heading {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 500;
    color: var(--vf-green);
    line-height: 1.15;
}

.vf-heading--center {
    text-align: center;
}

.vf-heading--light {
    color: var(--vf-offwhite);
}

.vf-subheading {
    margin-top: var(--space-sm);
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: .95rem;
    color: var(--vf-brown);
    line-height: 1.65;
}

.vf-subheading--light {
    color: rgba(232, 228, 208, .7);
}


/* ══════════════════════════════════════
   PROSE — Section Histoire
   ══════════════════════════════════════ */
.vf-prose {
    margin-top: var(--space-lg);
}

.vf-prose p {
    margin-bottom: var(--space-md);
    font-size: .95rem;
    color: var(--vf-dark);
    line-height: 1.8;
}

.vf-quote {
    margin-top: var(--space-lg);
    padding-left: var(--space-md);
    border-left: 2px solid rgba(29, 83, 69, .25);
}

.vf-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    line-height: 1.5;
    color: var(--vf-green);
}


/* ══════════════════════════════════════
   CARDS — Section Expérience
   ══════════════════════════════════════ */
.vf-cards {
    margin-top: var(--space-xl);
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .vf-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

.vf-card {
    background: var(--vf-beige);
    border: 1px solid var(--vf-stroke);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition);
}

.vf-section--white .vf-card {
    background: var(--vf-beige);
}

.vf-section--beige .vf-card {
    background: var(--vf-white);
}

.vf-card:hover {
    transform: translateY(-3px);
}

.vf-card-photo {
    overflow: hidden;
    height: 200px;
}

.vf-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    filter: saturate(.9);
}

.vf-card:hover .vf-card-photo img {
    transform: scale(1.04);
    filter: saturate(1);
}

.vf-card-body {
    padding: var(--space-md) var(--space-md) var(--space-lg);
}

.vf-card-icon {
    color: var(--vf-green);
    margin-bottom: var(--space-xs);
    opacity: .8;
}

.vf-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--vf-green);
    margin-bottom: var(--space-xs);
}

.vf-card-text {
    font-size: .88rem;
    color: var(--vf-dark);
    line-height: 1.7;
}


/* ══════════════════════════════════════
   GALLERY
   ══════════════════════════════════════ */
.vf-gallery {
    margin-top: var(--space-xl);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

@media (min-width: 640px) {
    .vf-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vf-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vf-gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--vf-stroke);
    margin: 0;
}

.vf-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .5s ease, filter .5s ease;
    filter: saturate(.88);
}

.vf-gallery-item:hover img {
    transform: scale(1.04);
    filter: saturate(1);
}

@media (min-width: 640px) {
    .vf-gallery-item--wide {
        grid-column: span 2;
    }
    .vf-gallery-item--wide img {
        height: 320px;
    }
}

@media (min-width: 1024px) {
    .vf-gallery-item--wide img {
        height: 360px;
    }
}


/* ══════════════════════════════════════
   EMBED — Visite 360°
   ══════════════════════════════════════ */
.vf-embed-wrap {
    margin-top: var(--space-xl);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--vf-stroke);
    background: var(--vf-beige);
}

.vf-embed-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* ══════════════════════════════════════
   BOOKING WIDGET — Réservation
   ══════════════════════════════════════ */
.vf-booking-widget {
    margin-top: var(--space-xl);
    display: flex;
    justify-content: center;
}

.vf-booking-widget a {
    color: var(--vf-offwhite);
    text-decoration: underline;
    font-size: .95rem;
}


/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.vf-contact-card {
    margin-top: var(--space-xl);
    background: var(--vf-white);
    border: 1px solid var(--vf-stroke);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
}

@media (min-width: 768px) {
    .vf-contact-card {
        padding: var(--space-xl) var(--space-xl);
    }
}

.vf-contact-grid {
    display: grid;
    gap: var(--space-lg);
    text-align: center;
}

@media (min-width: 768px) {
    .vf-contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vf-contact-label {
    display: block;
    font-size: .68rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--vf-brown);
    margin-bottom: .4rem;
}

.vf-contact-value {
    font-size: 1.05rem;
    color: var(--vf-green);
    word-break: break-all;
}

a.vf-contact-value:hover {
    text-decoration: underline;
}

.vf-contact-actions {
    margin-top: var(--space-lg);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

/* ── Contact form ── */
.vf-contact-form {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--vf-stroke);
    position: relative;
}
.vf-contact-form-row {
    display: grid;
    gap: var(--space-md);
}
@media (min-width: 640px) {
    .vf-contact-form-row { grid-template-columns: 1fr 1fr; }
}
.vf-contact-field { margin-bottom: var(--space-md); }
.vf-contact-field label {
    display: block;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--vf-brown);
    margin-bottom: .4rem;
}
.vf-input {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid var(--vf-stroke);
    border-radius: var(--radius-sm, 6px);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--vf-dark);
    background: var(--vf-white);
    transition: border-color .2s;
}
.vf-input:focus {
    outline: none;
    border-color: var(--vf-green);
    box-shadow: 0 0 0 3px rgba(29, 83, 69, .1);
}
.vf-textarea { resize: vertical; min-height: 120px; }
.vf-contact-form-actions {
    text-align: center;
    margin-top: var(--space-md);
}
.vf-contact-form-status {
    text-align: center;
    margin-top: var(--space-sm);
    padding: .75rem 1rem;
    border-radius: var(--radius-sm, 6px);
    font-size: .9rem;
}
.vf-contact-form-status.is-success {
    background: #e8f5e9;
    color: #2e7d32;
}
.vf-contact-form-status.is-error {
    background: #fce4ec;
    color: #c62828;
}


/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.vf-footer {
    border-top: 1px solid var(--vf-stroke);
    background: var(--vf-beige);
    padding: var(--space-xl) 0 var(--space-lg);
}

.vf-footer-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.vf-footer-top {
    display: grid;
    gap: var(--space-lg);
    text-align: center;
}

@media (min-width: 768px) {
    .vf-footer-top {
        grid-template-columns: 1fr auto 1fr;
        text-align: left;
        align-items: start;
    }
}

.vf-footer-brand {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.vf-footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: .5rem;
}

.vf-footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--vf-green);
}

.vf-footer-tagline {
    font-size: .75rem;
    letter-spacing: .15em;
    color: var(--vf-brown);
}

.vf-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-md);
}

.vf-footer-nav a {
    font-size: .82rem;
    color: var(--vf-brown);
    transition: color var(--transition);
}

.vf-footer-nav a:hover {
    color: var(--vf-green);
}

.vf-footer-contact {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

@media (min-width: 768px) {
    .vf-footer-contact {
        text-align: right;
    }
}

.vf-footer-contact a {
    font-size: .85rem;
    color: var(--vf-brown);
    transition: color var(--transition);
}

.vf-footer-contact a:hover {
    color: var(--vf-green);
}

.vf-footer-bottom {
    border-top: 1px solid var(--vf-stroke);
    padding-top: var(--space-md);
    text-align: center;
}

.vf-footer-copy {
    font-size: .72rem;
    color: var(--vf-grey);
    letter-spacing: .02em;
}


/* ══════════════════════════════════════
   ACCESSIBILITY
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}


/* ══════════════════════════════════════
   PRINT
   ══════════════════════════════════════ */
/* ══════════════════════════════════════
   REVEAL ON SCROLL (JS-driven)
   ══════════════════════════════════════ */
.vf-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    .vf-reveal {
        opacity: 1;
        transform: none;
    }
}


/* ══════════════════════════════════════
   PRINT
   ══════════════════════════════════════ */
@media print {
    .vf-header,
    .vf-menu-toggle,
    .vf-hero-actions,
    .vf-curve,
    .vf-embed-wrap,
    .vf-booking-widget,
    .vf-footer-nav {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .vf-section--green {
        background: white !important;
        color: black !important;
    }

    .vf-heading--light,
    .vf-subheading--light,
    .vf-band-number,
    .vf-band-label {
        color: black !important;
    }
}

/* ── Cookie banner ── */
.vf-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--vf-dark, #2B2924);
    color: var(--vf-offwhite, #E8E4D0);
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -2px 16px rgba(0,0,0,.2);
}
.vf-cookie-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.vf-cookie-inner p {
    flex: 1;
    margin: 0;
    font-size: .875rem;
    line-height: 1.5;
}
.vf-cookie-inner a { color: var(--vf-beige, #CFCDB0); }
.vf-cookie-accept { white-space: nowrap; flex-shrink: 0; }

/* ── Footer legal link ── */
.vf-footer-legal {
    margin-top: .5rem;
    font-size: .75rem;
    opacity: .6;
}
.vf-footer-legal a { color: inherit; }
