/* ═══════════════════════════════════════════════════════
   Location premium — Éditorial Luxe
   Clair · Magazine · Raffiné · Intemporel
   ═══════════════════════════════════════════════════════ */

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

/* ── Design Tokens hérités (surchargés par bloc <style> site) ── */
:root {
    --vf-green:     #1D5345;
    --vf-green-dk:  #153d33;
    --vf-beige:     #CFCDB0;
    --vf-grey:      #B2ACA9;
    --vf-brown:     #6C5C4F;
    --vf-offwhite:  #E8E4D0;
    --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;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2.5rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

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

    --transition: .25s ease;

    /* ── Éditorial Luxe — tokens non-surchargés ── */
    --ed-paper:    #f7f4ee;
    --ed-paper-2:  #efe9df;
    --ed-ink:      #23211c;
    --ed-body:     #5f5a51;
    --ed-muted:    #928b7e;
    --ed-line:     rgba(35, 33, 28, .12);
    --ed-bronze:   #9a7b4f;
    --ed-bronze-d: #7c5f3a;
    --ed-dark:     #1c1a16;
}


/* ══════════════════════════════════════
   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: 'Jost', system-ui, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ed-body);
    background: var(--ed-paper);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    color: var(--ed-ink);
    letter-spacing: .01em;
    line-height: 1.15;
}

::selection {
    background: rgba(154, 123, 79, .18);
    color: var(--ed-ink);
}

:focus-visible {
    outline: 2px solid var(--ed-bronze);
    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);
    }
}


/* ══════════════════════════════════════
   SKIP-LINK (accessibilité clavier)
   ══════════════════════════════════════ */
.vf-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ed-ink);
    color: var(--ed-paper);
    padding: .6rem 1rem;
    z-index: 2000;
    border-radius: 0 0 2px 0;
    font-family: 'Jost', sans-serif;
    font-size: .78rem;
    letter-spacing: .08em;
}

.vf-skip-link:focus {
    left: 0;
}


/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.vf-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 244, 238, .94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ed-line);
    transition: box-shadow var(--transition);
}

.vf-header.is-scrolled {
    box-shadow: 0 1px 12px rgba(35, 33, 28, .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: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ed-ink);
    letter-spacing: .02em;
}

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

.vf-logo-sub {
    font-family: 'Jost', sans-serif;
    font-size: .62rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--ed-bronze);
    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-family: 'Jost', sans-serif;
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ed-ink);
    position: relative;
    transition: color var(--transition);
}

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

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

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

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

/* Header CTA */
.vf-header-cta {
    display: none;
    font-size: .78rem;
    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(--ed-line);
    border-radius: 2px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    color: var(--ed-ink);
    transition: background var(--transition);
}

.vf-menu-toggle:hover {
    background: rgba(35, 33, 28, .05);
}

.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(--ed-paper);
    border-bottom: 1px solid var(--ed-line);
    padding: var(--space-md) var(--space-md) var(--space-lg);
    gap: 0;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(35, 33, 28, .06);
}

.vf-nav.is-open a {
    font-size: .9rem;
    padding: .7rem 0;
    border-bottom: 1px solid var(--ed-line);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.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: .95rem 1.8rem;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        opacity var(--transition);
    white-space: nowrap;
    line-height: 1.2;
}

.vf-btn:hover {
    opacity: .88;
}

/* Primary : encre + papier */
.vf-btn-primary {
    background: var(--ed-ink);
    color: var(--ed-paper);
    border-color: var(--ed-ink);
}

.vf-btn-primary:hover {
    opacity: 1;
    background: #38342c;
    border-color: #38342c;
}

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

.vf-btn-outline:hover {
    opacity: 1;
    background: var(--ed-ink);
    color: var(--ed-paper);
}

/* Inversé (sections sombres) : bronze + encre */
.vf-btn-primary-inv {
    background: var(--ed-bronze);
    color: var(--ed-ink);
    border-color: var(--ed-bronze);
}

.vf-btn-primary-inv:hover {
    opacity: 1;
    background: var(--ed-bronze-d);
    border-color: var(--ed-bronze-d);
}

.vf-btn-primary:focus-visible,
.vf-btn-primary-inv:focus-visible {
    outline-color: var(--ed-paper);
    outline-offset: 2px;
}

/* État disabled */
.vf-btn:disabled,
.vf-btn[aria-disabled="true"] {
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none;
}


/* ══════════════════════════════════════
   HERO — Layout asymétrique 2 colonnes
   ══════════════════════════════════════ */
.vf-hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 88vh;
    overflow: hidden;
}

@media (min-width: 900px) {
    .vf-hero {
        grid-template-columns: 1fr 1fr;
        max-height: none;
        align-items: stretch;
    }
}

/* Colonne texte */
.vf-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 8vw, 7rem) var(--space-lg) clamp(3rem, 6vw, 5rem);
    background: var(--ed-paper);
    order: 2;
}

@media (min-width: 900px) {
    .vf-hero-content {
        order: 1;
        padding: clamp(4rem, 6vw, 6rem) clamp(3rem, 5vw, 5rem);
    }
}

/* Colonne image */
.vf-hero-img-wrap {
    position: relative;
    overflow: hidden;
    order: 1;
    min-height: 55vw;
}

@media (min-width: 900px) {
    .vf-hero-img-wrap {
        order: 2;
        min-height: 88vh;
    }
}

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

.vf-hero-img-wrap:hover .vf-hero-img {
    transform: scale(1.02);
}

/* Suppression overlay plein-écran — texte à côté, plus sur photo */
.vf-hero-overlay {
    display: none;
}

/* Eyebrow / kicker */
.vf-hero-kicker {
    font-family: 'Jost', sans-serif;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ed-bronze);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.vf-hero-kicker::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--ed-bronze);
    flex-shrink: 0;
}

.vf-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--ed-ink);
    letter-spacing: .01em;
    max-width: 14ch;
}

.vf-hero-desc {
    margin-top: var(--space-md);
    max-width: 44ch;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--ed-body);
    line-height: 1.75;
}

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

/* Filet décoratif bas de colonne texte */
.vf-hero-content::after {
    content: '';
    display: block;
    width: 3rem;
    height: 1px;
    background: var(--ed-line);
    margin-top: var(--space-xl);
}

@media (min-width: 900px) {
    .vf-hero-content::after {
        display: none;
    }
}


/* ══════════════════════════════════════
   ORGANIC CURVE SEPARATORS — neutralisé
   ══════════════════════════════════════ */
.vf-curve {
    display: none;
}


/* ══════════════════════════════════════
   BAND — Chiffres clés
   ══════════════════════════════════════ */
.vf-band {
    background: var(--ed-dark);
    padding: clamp(48px, 7vw, 80px) 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);
    }
}

/* Filets entre items sur desktop */
@media (min-width: 768px) {
    .vf-band-item + .vf-band-item {
        border-left: 1px solid rgba(247, 244, 238, .1);
    }
}

.vf-band-item {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    padding: 0 var(--space-sm);
}

.vf-band-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    color: var(--ed-paper);
    line-height: 1.1;
}

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

.vf-band-label {
    font-family: 'Jost', sans-serif;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ed-bronze);
}


/* ══════════════════════════════════════
   SECTIONS — Générique
   ══════════════════════════════════════ */
.vf-section {
    padding: clamp(64px, 9vw, 120px) 0;
}

/* Alternance papier/papier-2 */
.vf-section--beige    { background: var(--ed-paper-2); }
.vf-section--white    { background: var(--ed-paper); }
.vf-section--offwhite { background: var(--ed-paper-2); }
.vf-section--green    { background: var(--ed-dark); color: var(--ed-paper); }

/* Textes sur fond sombre */
.vf-section--green .vf-heading,
.vf-section--green .vf-subheading,
.vf-section--green .vf-prose p {
    color: var(--ed-paper);
}

.vf-section--green .vf-subheading {
    color: rgba(247, 244, 238, .72);
}

.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: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 500;
    color: var(--ed-ink);
    line-height: 1.12;
    letter-spacing: .01em;
}

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

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

.vf-subheading {
    margin-top: var(--space-sm);
    text-align: center;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Jost', sans-serif;
    font-size: .95rem;
    font-weight: 400;
    color: var(--ed-muted);
    line-height: 1.7;
}

.vf-subheading--light {
    color: rgba(247, 244, 238, .72);
}


/* ══════════════════════════════════════
   EYEBROW / LABELS
   ══════════════════════════════════════ */
.vf-contact-label,
.vf-reco-cat,
.vf-band-label {
    font-family: 'Jost', sans-serif;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ed-bronze);
}


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

.vf-prose p {
    margin-bottom: var(--space-md);
    font-family: 'Jost', sans-serif;
    font-size: .97rem;
    color: var(--ed-body);
    line-height: 1.8;
}

.vf-quote {
    margin-top: var(--space-lg);
    padding-left: var(--space-md);
    border-left: 1px solid var(--ed-bronze);
}

.vf-quote p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.5;
    color: var(--ed-ink);
}


/* ══════════════════════════════════════
   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(--ed-paper);
    border: 1px solid var(--ed-line);
    border-radius: 2px;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.vf-section--white .vf-card {
    background: var(--ed-paper-2);
}

.vf-section--beige .vf-card,
.vf-section--offwhite .vf-card {
    background: var(--ed-paper);
}

.vf-card:hover {
    box-shadow: 0 4px 20px rgba(35, 33, 28, .07);
}

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

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

.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(--ed-bronze);
    margin-bottom: var(--space-xs);
    opacity: .85;
}

.vf-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ed-ink);
    margin-bottom: var(--space-xs);
}

.vf-card-text {
    font-family: 'Jost', sans-serif;
    font-size: .88rem;
    color: var(--ed-body);
    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 {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    border: none;
    margin: 0;
}

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

.vf-gallery-item {
    cursor: pointer;
}

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

/* Gallery caption */
.vf-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .5rem .75rem;
    font-family: 'Jost', sans-serif;
    font-size: .75rem;
    letter-spacing: .06em;
    color: rgba(247, 244, 238, .92);
    background: linear-gradient(transparent, rgba(28, 26, 22, .55));
    opacity: 0;
    transition: opacity .3s ease;
}

.vf-gallery-item:hover .vf-gallery-caption {
    opacity: 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;
    }
}

/* ══════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════ */
.vf-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vf-lightbox[hidden] {
    display: none;
}

.vf-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .92);
}

.vf-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vf-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 2px;
    user-select: none;
}

.vf-lightbox-caption {
    color: rgba(247, 244, 238, .75);
    font-family: 'Jost', sans-serif;
    font-size: .85rem;
    letter-spacing: .04em;
    margin-top: .75rem;
    text-align: center;
}

.vf-lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(247, 244, 238, .45);
    font-family: 'Jost', sans-serif;
    font-size: .75rem;
    font-variant-numeric: tabular-nums;
}

.vf-lightbox-close,
.vf-lightbox-prev,
.vf-lightbox-next {
    position: absolute;
    z-index: 10;
    background: rgba(247, 244, 238, .1);
    border: 1px solid rgba(247, 244, 238, .15);
    color: rgba(247, 244, 238, .85);
    cursor: pointer;
    border-radius: 2px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
}

.vf-lightbox-close:hover,
.vf-lightbox-prev:hover,
.vf-lightbox-next:hover {
    background: rgba(247, 244, 238, .2);
    border-color: rgba(247, 244, 238, .3);
}

.vf-lightbox-close {
    top: 1rem;
    right: 1rem;
}

.vf-lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.vf-lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 640px) {
    .vf-lightbox-prev,
    .vf-lightbox-next {
        width: 36px;
        height: 36px;
    }
    .vf-lightbox-prev { left: .5rem; }
    .vf-lightbox-next { right: .5rem; }
    .vf-lightbox-close { top: .5rem; right: .5rem; }
    .vf-lightbox-content {
        max-width: 95vw;
    }
}


/* ══════════════════════════════════════
   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%;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--ed-line);
    background: var(--ed-paper-2);
}

.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(--ed-paper);
    text-decoration: underline;
    font-family: 'Jost', sans-serif;
    font-size: .95rem;
    text-underline-offset: 3px;
}


/* ══════════════════════════════════════
   RECOMMENDATIONS
   ══════════════════════════════════════ */
.vf-reco-card {
    background: #fff;
    border: 1px solid var(--ed-line);
    border-radius: 2px;
    padding: var(--space-md);
    transition: box-shadow var(--transition);
}

.vf-reco-card:hover {
    box-shadow: 0 4px 16px rgba(35, 33, 28, .07);
}

.vf-reco-card .vf-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    color: var(--ed-ink);
}

.vf-reco-cat {
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ed-bronze);
    margin-bottom: .4rem;
}

.vf-reco-card a {
    color: var(--ed-bronze);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-family: 'Jost', sans-serif;
    font-size: .85rem;
}

.vf-reco-card a:hover {
    color: var(--ed-bronze-d);
}


/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.vf-contact-card {
    margin-top: var(--space-xl);
    background: var(--ed-paper);
    border: 1px solid var(--ed-line);
    border-radius: 2px;
    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-family: 'Jost', sans-serif;
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ed-bronze);
    margin-bottom: .4rem;
}

.vf-contact-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    color: var(--ed-ink);
    overflow-wrap: break-word;
    word-break: normal;
}

a.vf-contact-value:hover {
    color: var(--ed-bronze);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.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(--ed-line);
    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-family: 'Jost', sans-serif;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ed-muted);
    margin-bottom: .5rem;
}
.vf-input {
    width: 100%;
    padding: .75rem 0;
    border: none;
    border-bottom: 1px solid var(--ed-line);
    border-radius: 0;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--ed-ink);
    background: transparent;
    transition: border-color .2s;
}
.vf-input:focus {
    outline: none;
    border-color: var(--ed-bronze);
    box-shadow: none;
}
.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: 2px;
    font-family: 'Jost', sans-serif;
    font-size: .9rem;
}
.vf-contact-form-status.is-success {
    background: rgba(154, 123, 79, .08);
    color: var(--ed-bronze-d);
    border: 1px solid rgba(154, 123, 79, .2);
}
.vf-contact-form-status.is-error {
    background: rgba(180, 60, 60, .06);
    color: #a83232;
    border: 1px solid rgba(180, 60, 60, .2);
}


/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.vf-footer {
    border-top: 1px solid var(--ed-line);
    background: var(--ed-dark);
    padding: var(--space-xl) 0 var(--space-lg);
    color: rgba(247, 244, 238, .75);
}

.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;
    opacity: .85;
}

.vf-footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ed-paper);
    letter-spacing: .02em;
}

.vf-footer-tagline {
    font-family: 'Jost', sans-serif;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ed-bronze);
}

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

.vf-footer-nav a {
    font-family: 'Jost', sans-serif;
    font-size: .78rem;
    letter-spacing: .06em;
    color: rgba(247, 244, 238, .6);
    transition: color var(--transition);
}

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

.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-family: 'Jost', sans-serif;
    font-size: .85rem;
    color: rgba(247, 244, 238, .6);
    transition: color var(--transition);
}

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

.vf-footer-bottom {
    border-top: 1px solid rgba(247, 244, 238, .08);
    padding-top: var(--space-md);
    text-align: center;
}

.vf-footer-copy {
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    color: rgba(247, 244, 238, .35);
    letter-spacing: .06em;
}


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


/* ══════════════════════════════════════
   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(--ed-dark);
    color: rgba(247, 244, 238, .85);
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -1px 0 rgba(247, 244, 238, .08);
}
.vf-cookie-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.vf-cookie-inner p {
    flex: 1;
    margin: 0;
    font-family: 'Jost', sans-serif;
    font-size: .875rem;
    line-height: 1.5;
}
.vf-cookie-inner a {
    color: var(--ed-bronze);
    text-underline-offset: 3px;
}
.vf-cookie-accept { white-space: nowrap; flex-shrink: 0; }

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

/* ══════════════════════════════════════
   SEARCH
   ══════════════════════════════════════ */

/* Toggle button in header */
.vf-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--ed-line);
    cursor: pointer;
    color: var(--ed-muted);
    width: 42px;
    height: 42px;
    border-radius: 2px;
    transition: color var(--transition), background var(--transition);
    flex-shrink: 0;
}
.vf-search-toggle:hover {
    color: var(--ed-ink);
    background: rgba(35, 33, 28, .05);
}

/* Overlay */
.vf-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
}
.vf-search-overlay[hidden] { display: none; }

.vf-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 26, 22, .6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Panel */
.vf-search-panel {
    position: relative;
    width: 92%;
    max-width: 600px;
    max-height: 70vh;
    background: var(--ed-paper);
    border: 1px solid var(--ed-line);
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(28, 26, 22, .18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: vf-search-in .2s ease;
}

@keyframes vf-search-in {
    from { opacity: 0; transform: translateY(-12px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header with input */
.vf-search-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--ed-line);
}

.vf-search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.vf-search-icon {
    flex-shrink: 0;
    color: var(--ed-muted);
}

.vf-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--ed-ink);
    background: transparent;
}
.vf-search-input::placeholder {
    color: var(--ed-muted);
}

.vf-search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ed-muted);
    padding: .3rem;
    border-radius: 2px;
    transition: color var(--transition), background var(--transition);
}
.vf-search-close:hover {
    color: var(--ed-ink);
    background: rgba(35, 33, 28, .06);
}

/* Results area */
.vf-search-results {
    overflow-y: auto;
    padding: var(--space-sm) var(--space-md) var(--space-md);
}

.vf-search-hint {
    color: var(--ed-muted);
    font-family: 'Jost', sans-serif;
    font-size: .85rem;
    text-align: center;
    padding: var(--space-lg) 0;
}

.vf-search-no-results {
    color: var(--ed-body);
    font-family: 'Jost', sans-serif;
    font-size: .9rem;
    text-align: center;
    padding: var(--space-lg) 0;
}

/* Result item */
.vf-search-result {
    display: block;
    padding: .75rem 1rem;
    border-radius: 2px;
    text-decoration: none;
    color: var(--ed-body);
    transition: background var(--transition);
    cursor: pointer;
}
.vf-search-result:hover,
.vf-search-result.is-active {
    background: rgba(154, 123, 79, .08);
}

.vf-search-result-section {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ed-ink);
    margin-bottom: .2rem;
}

.vf-search-result-excerpt {
    font-family: 'Jost', sans-serif;
    font-size: .82rem;
    color: var(--ed-muted);
    line-height: 1.5;
}

.vf-search-result-excerpt mark {
    background: rgba(154, 123, 79, .18);
    color: var(--ed-bronze-d);
    padding: .05em .15em;
    border-radius: 1px;
}

/* Keyboard shortcut hint */
.vf-search-shortcut {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    color: var(--ed-muted);
    margin-top: var(--space-sm);
    justify-content: center;
    width: 100%;
}
.vf-search-shortcut kbd {
    display: inline-block;
    padding: .1rem .4rem;
    font-family: 'Jost', sans-serif;
    font-size: .65rem;
    background: rgba(35, 33, 28, .06);
    border-radius: 2px;
    border: 1px solid var(--ed-line);
}
