/* =========================================================================
   LuxeHotel — Standalone WordPress Theme
   Design system & components
   (Built on the developer brief's tokens; extended for all sections.)
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Design tokens
   ---------------------------------------------------------------------- */
:root {
        --lv-dark: #1E1E1A;
        --lv-dark-soft: #2B2A25;
        --lv-beige: #E8DDC8;
        --lv-bg: #F8F5EF;
        --lv-gold: #B89B5E;
        --lv-gold-dark: #947A45;
        --lv-text: #222222;
        --lv-muted: #706A5E;
        --lv-white: #FFFFFF;
        --lv-border: rgba(30, 30, 26, 0.14);

        --lv-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
        --lv-sans: "Montserrat", Arial, Helvetica, sans-serif;

        --lv-header-h: 92px;
        --lv-ease: cubic-bezier(0.22, 1, 0.36, 1);
        --lv-radius: 0px;
        --lv-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
        --lv-shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* -------------------------------------------------------------------------
   1b. Base reset / normalize (standalone — replaces the old parent base styles)
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; overflow-x: hidden; }
img, picture, video, iframe, svg { max-width: 100%; }
img { height: auto; border: 0; }
a { color: var(--lv-gold); text-decoration: none; }
a:hover { color: var(--lv-gold-dark); }
button, input, select, textarea { font-family: inherit; font-size: 100%; line-height: inherit; }
button { cursor: pointer; }
::selection { background: var(--lv-gold); color: var(--lv-white); }
hr { border: 0; border-top: 1px solid var(--lv-border); margin: 2em 0; }

/* -------------------------------------------------------------------------
   2. Base & typography
   ---------------------------------------------------------------------- */
.lv-homepage,
body.luxehotel,
.lv-scope {
        color: var(--lv-text);
}

body {
        font-family: var(--lv-sans);
        color: var(--lv-text);
        background: var(--lv-bg);
        font-size: 16px;
        line-height: 1.75;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
}

.lv-homepage h1, .lv-homepage h2, .lv-homepage h3, .lv-homepage h4,
.lv-scope h1, .lv-scope h2, .lv-scope h3, .lv-scope h4 {
        font-family: var(--lv-serif);
        font-weight: 500;
        letter-spacing: 0.03em;
        color: var(--lv-dark);
        margin: 0;
}

.lv-kicker {
        display: inline-block;
        font-family: var(--lv-sans);
        font-size: 12px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--lv-gold);
        font-weight: 600;
        margin-bottom: 18px;
}
.lv-kicker--light { color: var(--lv-beige); }

.lv-section-title {
        font-size: clamp(42px, 5vw, 86px);
        line-height: 0.95;
        text-transform: uppercase;
}
.lv-section-title--md { font-size: clamp(38px, 4vw, 64px); text-transform: none; line-height: 1; }

.lv-body-large {
        font-size: clamp(18px, 1.4vw, 22px);
        line-height: 1.8;
        color: var(--lv-muted);
}

/* -------------------------------------------------------------------------
   3. Layout utilities
   ---------------------------------------------------------------------- */
.lv-section { padding: clamp(80px, 9vw, 150px) 0; position: relative; }
.lv-section-tight { padding: clamp(56px, 6vw, 96px) 0; }

.lv-container {
        width: min(1180px, calc(100% - 40px));
        margin: 0 auto;
}
.lv-container-wide {
        width: min(1480px, calc(100% - 48px));
        margin: 0 auto;
}

.lv-center { text-align: center; }
.lv-mt { margin-top: clamp(36px, 4vw, 60px); }

.lv-section-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 72px); }
.lv-section-head--center { text-align: center; }
.lv-section-head--left { margin-left: 0; text-align: left; }
.lv-section-head .lv-section-sub { margin-top: 18px; }

.lv-empty {
        text-align: center;
        color: var(--lv-muted);
        border: 1px dashed var(--lv-border);
        padding: 48px 24px;
}

/* -------------------------------------------------------------------------
   4. Buttons
   ---------------------------------------------------------------------- */
.lv-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 14px 28px;
        border: 1px solid var(--lv-gold);
        color: var(--lv-dark);
        background: transparent;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-size: 12px;
        font-weight: 600;
        font-family: var(--lv-sans);
        text-decoration: none;
        cursor: pointer;
        transition: all 220ms var(--lv-ease);
}
.lv-btn:hover { background: var(--lv-gold); color: var(--lv-white); }

.lv-btn-dark { background: var(--lv-dark); border-color: var(--lv-dark); color: var(--lv-white); }
.lv-btn-dark:hover { background: var(--lv-gold); border-color: var(--lv-gold); color: var(--lv-white); }

.lv-btn-gold { background: var(--lv-gold); border-color: var(--lv-gold); color: var(--lv-white); }
.lv-btn-gold:hover { background: var(--lv-gold-dark); border-color: var(--lv-gold-dark); color: var(--lv-white); }

.lv-btn-ghost { border-color: var(--lv-dark); color: var(--lv-dark); }
.lv-btn-ghost:hover { background: var(--lv-dark); color: var(--lv-white); }

.lv-btn-ghost-light { border-color: rgba(255,255,255,0.7); color: var(--lv-white); }
.lv-btn-ghost-light:hover { background: var(--lv-white); color: var(--lv-dark); border-color: var(--lv-white); }

.lv-btn-sm { min-height: 40px; padding: 10px 20px; font-size: 11px; }

.lv-link-arrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--lv-dark);
        text-decoration: none;
        transition: gap 220ms var(--lv-ease), color 220ms var(--lv-ease);
}
.lv-link-arrow:hover { color: var(--lv-gold); gap: 14px; }
.lv-link-arrow .lv-icon { width: 18px; height: 18px; }

/* -------------------------------------------------------------------------
   5. Icons
   ---------------------------------------------------------------------- */
.lv-icon { width: 20px; height: 20px; flex: 0 0 auto; }

/* -------------------------------------------------------------------------
   6. Accessibility helpers
   ---------------------------------------------------------------------- */
.lv-skip-link {
        position: absolute;
        left: -9999px;
        top: 0;
        z-index: 100000;
        background: var(--lv-dark);
        color: var(--lv-white);
        padding: 12px 20px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        font-size: 12px;
}
.lv-skip-link:focus { left: 12px; top: 12px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
        outline: 2px solid var(--lv-gold);
        outline-offset: 3px;
}

.screen-reader-text {
        border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
        height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
}

/* -------------------------------------------------------------------------
   7. Header
   ---------------------------------------------------------------------- */
.lv-header {
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        z-index: 9999;
        background: transparent;
        color: var(--lv-white);
        transition: background 220ms var(--lv-ease), box-shadow 220ms var(--lv-ease), color 220ms var(--lv-ease);
}
.lv-header.is-scrolled {
        background: rgba(248, 245, 239, 0.96);
        color: var(--lv-dark);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        backdrop-filter: blur(10px);
}
.lv-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
        min-height: var(--lv-header-h);
}
.lv-header__brand { flex: 0 0 auto; }

.lv-logo { display: inline-flex; flex-direction: column; line-height: 1; text-decoration: none; color: inherit; }
.lv-logo__text { font-family: var(--lv-serif); font-size: 30px; letter-spacing: 0.18em; text-transform: uppercase; color: inherit; }
.lv-logo__tag { font-size: 9px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--lv-gold); margin-top: 4px; }
.lv-logo__img { height: 46px; width: auto; display: block; }
.lv-logo__img--dark { display: none; }
.lv-header.is-scrolled .lv-logo__img--light { display: none; }
.lv-header.is-scrolled .lv-logo__img--dark { display: block; }

.lv-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.lv-menu { display: flex; gap: clamp(18px, 2vw, 34px); list-style: none; margin: 0; padding: 0; }
.lv-menu li { position: relative; }
.lv-menu a {
        color: inherit;
        text-decoration: none;
        font-size: 12px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        font-weight: 500;
        padding: 8px 0;
        transition: color 200ms var(--lv-ease);
}
.lv-menu a:hover, .lv-menu .current-menu-item > a { color: var(--lv-gold); }
.lv-menu .sub-menu {
        position: absolute; top: 100%; left: 0; min-width: 210px;
        background: var(--lv-white); color: var(--lv-dark);
        list-style: none; margin: 0; padding: 10px 0;
        box-shadow: var(--lv-shadow-sm);
        opacity: 0; visibility: hidden; transform: translateY(8px);
        transition: all 200ms var(--lv-ease); z-index: 10;
}
.lv-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lv-menu .sub-menu a { display: block; padding: 8px 22px; color: var(--lv-dark); }

.lv-header__actions { flex: 0 0 auto; display: flex; align-items: center; gap: 16px; }
.lv-lang { display: flex; gap: 8px; font-size: 11px; letter-spacing: 0.12em; }
.lv-lang__item { color: inherit; text-decoration: none; opacity: 0.7; }
.lv-lang__item.is-active, .lv-lang__item:hover { opacity: 1; color: var(--lv-gold); }

.lv-burger {
        display: none;
        background: transparent; border: 0; color: inherit; cursor: pointer; padding: 6px;
}
.lv-burger .lv-icon { width: 28px; height: 28px; }

/* Mobile off-canvas */
.lv-mobile {
        position: fixed; inset: 0;
        background: var(--lv-dark);
        color: var(--lv-white);
        display: flex; flex-direction: column; justify-content: safe center; align-items: center; gap: 28px;
        padding: 88px 32px 48px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0; visibility: hidden; transform: translateY(-12px);
        transition: opacity 300ms var(--lv-ease), transform 300ms var(--lv-ease), visibility 300ms;
        z-index: 10000;
}
.lv-mobile.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.lv-mobile__close { position: fixed; top: 18px; right: 18px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.08); border: 0; border-radius: 50%; color: var(--lv-white); cursor: pointer; z-index: 10001; }
.lv-mobile__close .lv-icon { width: 30px; height: 30px; }
.lv-mobile-menu { list-style: none; margin: 0; padding: 0; text-align: center; display: flex; flex-direction: column; gap: 14px; }
.lv-mobile-menu > li > a { color: var(--lv-white); text-decoration: none; font-family: var(--lv-serif); font-size: 28px; letter-spacing: 0.04em; }
.lv-mobile-menu a:hover { color: var(--lv-gold); }
.lv-mobile-menu .sub-menu { list-style: none; margin: 8px 0 10px; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.lv-mobile-menu .sub-menu a { display: inline-block; font-family: var(--lv-sans); font-size: 15px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255, 255, 255, 0.65); }
.lv-mobile-menu .sub-menu a:hover { color: var(--lv-gold); }
.lv-mobile__footer { display: flex; flex-direction: column; align-items: center; gap: 18px; }

/* -------------------------------------------------------------------------
   8. Hero
   ---------------------------------------------------------------------- */
.lv-hero {
        min-height: 95vh;
        position: relative;
        display: grid;
        place-items: center;
        overflow: hidden;
        color: var(--lv-white);
        background-size: cover;
        background-position: center;
}
.lv-hero-video {
        position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.lv-hero::before {
        content: ""; position: absolute; inset: 0;
        background: linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.46));
        z-index: 1;
}
.lv-hero-content {
        position: relative; z-index: 2; text-align: center;
        width: min(980px, calc(100% - 40px));
        padding-top: var(--lv-header-h);
        padding-bottom: 84px;
}
.lv-hero-content .lv-kicker { margin-bottom: 8px; }
.lv-hero-title {
        color: var(--lv-white);
        font-size: clamp(56px, 9vw, 138px);
        line-height: 0.85;
        text-transform: uppercase;
        margin: 18px 0;
}
/* Hero title legibility: beat `.lv-homepage h1` specificity so the big title
   stays light over photos (further tunable via Customizer → Hero Title). */
.lv-homepage .lv-hero-title,
.lv-hero .lv-hero-title {
        color: var(--lv-white);
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.lv-page-hero .lv-page-hero__title { text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4); }
.lv-hero-sub { font-size: clamp(17px, 1.6vw, 22px); color: var(--lv-beige); margin: 0 auto 36px; max-width: 620px; }
.lv-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.lv-hero-scroll {
        position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
        width: 26px; height: 44px; border: 1px solid rgba(255,255,255,0.6); border-radius: 14px;
        display: block; pointer-events: none;
}
.lv-hero-scroll span {
        position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
        width: 3px; height: 8px; background: var(--lv-white); border-radius: 2px;
        animation: lv-scroll 1.6s var(--lv-ease) infinite;
}
@keyframes lv-scroll { 0% { opacity: 0; top: 8px; } 50% { opacity: 1; } 100% { opacity: 0; top: 22px; } }

/* -------------------------------------------------------------------------
   9. Booking bar
   ---------------------------------------------------------------------- */
.lv-booking-wrapper { position: relative; z-index: 5; margin-top: -48px; }
.lv-booking-wrapper--static { margin-top: 0; }
.lv-booking-bar {
        width: min(1180px, calc(100% - 32px));
        margin: 0 auto;
        background: var(--lv-white);
        box-shadow: var(--lv-shadow);
        display: grid;
        grid-template-columns: repeat(4, 1fr) auto;
        gap: 0;
        border: 1px solid rgba(0,0,0,0.08);
}
.lv-booking-field { padding: 18px 20px; border-right: 1px solid var(--lv-border); display: block; }
.lv-booking-field span {
        display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
        color: var(--lv-muted); margin-bottom: 6px;
}
.lv-booking-bar input, .lv-booking-bar select {
        width: 100%; border: none; background: transparent; font-size: 15px; color: var(--lv-dark);
        font-family: var(--lv-sans);
}
.lv-booking-bar button {
        border: none; background: var(--lv-dark); color: var(--lv-white);
        padding: 0 34px; text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; font-weight: 600;
        cursor: pointer; transition: background 220ms var(--lv-ease);
}
.lv-booking-bar button:hover { background: var(--lv-gold); }

/* -------------------------------------------------------------------------
   10. Intro
   ---------------------------------------------------------------------- */
.lv-intro__inner { max-width: 980px; margin: 0 auto; text-align: center; }
.lv-stars { display: flex; justify-content: center; gap: 6px; color: var(--lv-gold); margin-bottom: 22px; }
.lv-stars .lv-icon { width: 18px; height: 18px; fill: var(--lv-gold); stroke: var(--lv-gold); }
.lv-intro__title { font-size: clamp(34px, 4.4vw, 64px); line-height: 1.04; margin: 6px 0 24px; }
.lv-intro__lead { font-size: clamp(16px, 1.6vw, 21px); text-transform: uppercase; letter-spacing: 0.12em; color: var(--lv-dark); margin: 0 auto 28px; max-width: 720px; }
.lv-intro__text { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.9; color: var(--lv-muted); max-width: 760px; margin: 0 auto; }

/* -------------------------------------------------------------------------
   11. Gallery preview
   ---------------------------------------------------------------------- */
.lv-gallery-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 18px; }
.lv-gallery-grid figure { overflow: hidden; margin: 0; min-height: 320px; position: relative; }
.lv-gallery-grid a { display: block; width: 100%; height: 100%; }
.lv-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--lv-ease); display: block; }
.lv-gallery-grid figure:hover img { transform: scale(1.045); }
.lv-gallery-grid figure:nth-child(1) { grid-row: span 2; }
.lv-gallery-grid figure:nth-child(4) { grid-column: span 2; }

/* -------------------------------------------------------------------------
   12. Rooms
   ---------------------------------------------------------------------- */
.lv-rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 30px); }
.lv-rooms-grid--list { grid-template-columns: 1fr; }
.lv-room-card { background: var(--lv-white); border: 1px solid var(--lv-border); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 300ms var(--lv-ease), transform 300ms var(--lv-ease); }
.lv-room-card:hover { box-shadow: var(--lv-shadow-sm); transform: translateY(-4px); }
.lv-room-card__image { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.lv-room-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--lv-ease); }
.lv-room-card:hover .lv-room-card__image img { transform: scale(1.04); }
.lv-badge { position: absolute; top: 16px; left: 16px; z-index: 2; background: var(--lv-gold); color: var(--lv-white); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; padding: 7px 12px; }
.lv-room-card__content { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.lv-room-card__meta { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--lv-gold); margin-bottom: 10px; }
.lv-room-card__title { font-size: 32px; line-height: 1; margin-bottom: 10px; }
.lv-room-card__title a { color: inherit; text-decoration: none; }
.lv-room-card__title a:hover { color: var(--lv-gold); }
.lv-room-card__subtitle { color: var(--lv-muted); font-size: 14px; margin: 0 0 12px; }
.lv-room-card__text { color: var(--lv-muted); font-size: 15px; margin: 0; }
.lv-room-card__details { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--lv-muted); margin-top: 18px; }
.lv-room-card__details span { display: inline-flex; align-items: center; gap: 7px; }
.lv-room-card__details .lv-icon { width: 17px; height: 17px; color: var(--lv-gold); }
.lv-room-card__actions { margin-top: auto; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* -------------------------------------------------------------------------
   13. Facilities (alternating feature rows)
   ---------------------------------------------------------------------- */
.lv-feature-row {
        display: grid; grid-template-columns: 1.05fr 0.95fr;
        gap: clamp(32px, 6vw, 90px); align-items: center;
        margin-bottom: clamp(72px, 9vw, 140px);
}
.lv-feature-row:last-child { margin-bottom: 0; }
.lv-feature-row:nth-child(even) .lv-feature-row__image { order: 2; }
.lv-feature-row__image { overflow: hidden; }
.lv-feature-row__image img { width: 100%; height: min(620px, 70vh); object-fit: cover; display: block; transition: transform 800ms var(--lv-ease); }
.lv-feature-row__image:hover img { transform: scale(1.04); }
.lv-feature-row__content { max-width: 520px; }
.lv-feature-row__title { font-size: clamp(32px, 3.6vw, 54px); line-height: 1.02; margin: 6px 0 20px; }
.lv-feature-row__content .lv-body-large { margin-bottom: 28px; }

/* -------------------------------------------------------------------------
   14. Extra services
   ---------------------------------------------------------------------- */
.lv-services { background: var(--lv-beige); }
.lv-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lv-service-card {
        background: var(--lv-white); border: 1px solid var(--lv-border);
        padding: 34px 24px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
        transition: transform 300ms var(--lv-ease), box-shadow 300ms var(--lv-ease);
}
.lv-service-card:hover { transform: translateY(-4px); box-shadow: var(--lv-shadow-sm); }
.lv-service-card__icon { width: 56px; height: 56px; border: 1px solid var(--lv-gold); border-radius: 50%; display: grid; place-items: center; color: var(--lv-gold); }
.lv-service-card__icon .lv-icon { width: 26px; height: 26px; }
.lv-service-card__label { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--lv-dark); }

/* -------------------------------------------------------------------------
   15. Offers
   ---------------------------------------------------------------------- */
.lv-dark-block { background: var(--lv-dark); }
.lv-dark-block .lv-section-title,
.lv-dark-block .lv-section-head .lv-section-sub,
.lv-dark-block .lv-offer-card__title { color: var(--lv-white); }
.lv-dark-block .lv-body-large { color: rgba(255,255,255,0.7); }

.lv-offers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 28px); }
.lv-offer-card { background: var(--lv-white); border: 1px solid var(--lv-border); overflow: hidden; display: flex; flex-direction: column; }
.lv-offer-card__image { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.lv-offer-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--lv-ease); }
.lv-offer-card:hover .lv-offer-card__image img { transform: scale(1.05); }
.lv-offer-card__price { position: absolute; bottom: 0; left: 0; background: var(--lv-gold); color: var(--lv-white); font-size: 12px; letter-spacing: 0.08em; padding: 8px 14px; }
.lv-offer-card__content { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.lv-offer-card__title { font-size: 26px; line-height: 1.05; }
.lv-offer-card__text { color: var(--lv-muted); font-size: 14px; margin: 0; }
.lv-offer-card__validity { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--lv-gold); letter-spacing: 0.08em; }
.lv-offer-card__validity .lv-icon { width: 16px; height: 16px; }
.lv-offer-card .lv-btn { margin-top: auto; }

/* -------------------------------------------------------------------------
   16. Location
   ---------------------------------------------------------------------- */
.lv-location { background: var(--lv-bg); }
.lv-location__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.lv-location__content .lv-body-large { margin: 18px 0 30px; }
.lv-distances { list-style: none; margin: 0 0 30px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--lv-border); }
.lv-distances li { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px; border-bottom: 1px solid var(--lv-border); }
.lv-distances__place { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lv-muted); }
.lv-distances__val { font-family: var(--lv-serif); font-size: 24px; color: var(--lv-gold); }
.lv-location__address { display: flex; align-items: flex-start; gap: 12px; color: var(--lv-muted); margin-bottom: 26px; }
.lv-location__address .lv-icon { color: var(--lv-gold); margin-top: 4px; }
.lv-location__map { min-height: 460px; height: 100%; }
.lv-location__map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }
.lv-location__map-placeholder { min-height: 460px; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: var(--lv-beige); color: var(--lv-muted); text-align: center; padding: 32px; }
.lv-location__map-placeholder .lv-icon { width: 42px; height: 42px; color: var(--lv-gold); }

/* -------------------------------------------------------------------------
   17. Newsletter
   ---------------------------------------------------------------------- */
.lv-newsletter { background: var(--lv-dark); color: var(--lv-white); text-align: center; }
.lv-newsletter__inner { max-width: 680px; margin: 0 auto; }
.lv-newsletter__title { color: var(--lv-white); font-size: clamp(36px, 4.4vw, 64px); }
.lv-newsletter__text { color: rgba(255,255,255,0.72); margin: 16px 0 34px; font-size: 17px; }
.lv-newsletter__row { display: flex; gap: 12px; max-width: 540px; margin: 0 auto; }
.lv-newsletter__row input[type="email"] {
        flex: 1; background: transparent; border: 1px solid rgba(255,255,255,0.4); color: var(--lv-white);
        padding: 14px 18px; font-size: 15px; font-family: var(--lv-sans);
}
.lv-newsletter__row input::placeholder { color: rgba(255,255,255,0.5); }
.lv-newsletter__gdpr { display: flex; align-items: flex-start; gap: 10px; justify-content: center; margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.6); max-width: 540px; margin-left: auto; margin-right: auto; }
.lv-newsletter__gdpr input { margin-top: 3px; }
.lv-newsletter__feedback { margin-top: 14px; font-size: 14px; min-height: 20px; }
.lv-newsletter__feedback.is-success { color: var(--lv-gold); }
.lv-newsletter__feedback.is-error { color: #e7a6a6; }

/* -------------------------------------------------------------------------
   18. Footer
   ---------------------------------------------------------------------- */
.lv-footer { background: var(--lv-dark); color: rgba(255,255,255,0.74); padding-top: clamp(64px, 7vw, 110px); }
.lv-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 60px); padding-bottom: clamp(48px, 5vw, 80px); }
.lv-footer__logo { color: var(--lv-white); font-size: 30px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.lv-footer__desc { font-size: 14px; line-height: 1.85; max-width: 320px; }
.lv-footer__title { color: var(--lv-white); font-family: var(--lv-sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 22px; font-weight: 600; }
.lv-footer__menu, .lv-footer__legal, .lv-footer__contactlist { list-style: none; margin: 0; padding: 0; }
.lv-footer__menu li { margin-bottom: 12px; }
.lv-footer__menu a, .lv-footer__contactlist a { color: rgba(255,255,255,0.74); text-decoration: none; font-size: 14px; transition: color 200ms var(--lv-ease); }
.lv-footer__menu a:hover, .lv-footer__contactlist a:hover { color: var(--lv-gold); }
.lv-footer__contactlist li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.lv-footer__contactlist .lv-icon { color: var(--lv-gold); margin-top: 3px; }
.lv-footer__contact .lv-btn { margin-top: 12px; }

.lv-social { display: flex; gap: 12px; margin-top: 22px; }
.lv-social__link { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.28); border-radius: 50%; display: grid; place-items: center; color: var(--lv-white); transition: all 220ms var(--lv-ease); }
.lv-social__link svg { width: 18px; height: 18px; }
.lv-social__link:hover { background: var(--lv-gold); border-color: var(--lv-gold); }
.lv-social--mobile .lv-social__link { color: var(--lv-white); }

.lv-footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 24px 0; }
.lv-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.lv-footer__copy { font-size: 12px; letter-spacing: 0.06em; margin: 0; }
.lv-footer__legal { display: flex; gap: 22px; }
.lv-footer__legal a { color: rgba(255,255,255,0.74); text-decoration: none; font-size: 12px; }
.lv-footer__legal a:hover { color: var(--lv-gold); }

/* -------------------------------------------------------------------------
   19. Page hero (interior pages) & singles
   ---------------------------------------------------------------------- */
.lv-page-hero {
        position: relative; min-height: 56vh; display: grid; place-items: center; text-align: center;
        color: var(--lv-white); background-size: cover; background-position: center; overflow: hidden;
}
.lv-page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)); }
.lv-page-hero__content { position: relative; z-index: 2; padding-top: var(--lv-header-h); width: min(900px, calc(100% - 40px)); }
.lv-page-hero__title { color: var(--lv-white); font-size: clamp(44px, 6vw, 92px); text-transform: uppercase; line-height: 0.92; }
.lv-page-hero__sub { color: var(--lv-beige); margin-top: 16px; font-size: clamp(16px, 1.5vw, 20px); }

.lv-quickfacts { background: var(--lv-dark); color: var(--lv-white); }
.lv-quickfacts__grid { display: flex; flex-wrap: wrap; gap: 0; }
.lv-quickfacts__item { flex: 1; min-width: 160px; padding: 30px 24px; border-right: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; gap: 14px; }
.lv-quickfacts__item:last-child { border-right: 0; }
.lv-quickfacts__item .lv-icon { color: var(--lv-gold); width: 24px; height: 24px; }
.lv-quickfacts__label { display: block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.lv-quickfacts__val { display: block; font-family: var(--lv-serif); font-size: 22px; }

.lv-amenities { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; }
.lv-amenities li { display: flex; align-items: center; gap: 12px; color: var(--lv-text); font-size: 15px; }
.lv-amenities .lv-icon { color: var(--lv-gold); width: 18px; height: 18px; }

.lv-prose { max-width: 760px; margin: 0 auto; }
.lv-prose p { color: var(--lv-muted); margin: 0 0 1.2em; }

.lv-cta-dark { background: var(--lv-dark); color: var(--lv-white); text-align: center; }
.lv-cta-dark .lv-section-title { color: var(--lv-white); }
.lv-cta-dark p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 16px auto 32px; }

/* Single gallery (masonry-ish) */
.lv-single-gallery { columns: 3; column-gap: 16px; }
.lv-single-gallery a { display: block; margin: 0 0 16px; break-inside: avoid; overflow: hidden; }
.lv-single-gallery img { width: 100%; display: block; transition: transform 600ms var(--lv-ease); }
.lv-single-gallery a:hover img { transform: scale(1.04); }

/* Archive intro / filter chips */
.lv-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.lv-chip { border: 1px solid var(--lv-border); padding: 9px 18px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lv-muted); text-decoration: none; transition: all 200ms var(--lv-ease); }
.lv-chip:hover, .lv-chip.is-active { background: var(--lv-dark); color: var(--lv-white); border-color: var(--lv-dark); }

/* -------------------------------------------------------------------------
   20. Lightbox
   ---------------------------------------------------------------------- */
.lv-lb-overlay {
        position: fixed; inset: 0; z-index: 100000; background: rgba(18,18,16,0.94);
        display: flex; align-items: center; justify-content: center; padding: 40px;
        opacity: 0; visibility: hidden; transition: opacity 280ms var(--lv-ease), visibility 280ms;
}
.lv-lb-overlay.is-open { opacity: 1; visibility: visible; }
.lv-lb-overlay img { max-width: 92vw; max-height: 86vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lv-lb-close, .lv-lb-prev, .lv-lb-next {
        position: absolute; background: transparent; border: 0; color: var(--lv-white); cursor: pointer; padding: 12px;
}
.lv-lb-close { top: 24px; right: 28px; }
.lv-lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lv-lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lv-lb-close svg, .lv-lb-prev svg, .lv-lb-next svg { width: 34px; height: 34px; stroke: #fff; fill: none; stroke-width: 1.5; }

/* -------------------------------------------------------------------------
   22. Standalone helpers: solid header (no-hero pages), prose, admin bar
   ---------------------------------------------------------------------- */
/* Pages without a full-bleed hero: offset content and give the fixed header a
   solid, readable background. */
body.lv-solid-header { padding-top: var(--lv-header-h); }
body.lv-solid-header .lv-header {
        position: fixed;
        background: rgba(248, 245, 239, 0.97);
        color: var(--lv-dark);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(10px);
}
body.lv-solid-header .lv-logo__img--light { display: none; }
body.lv-solid-header .lv-logo__img--dark { display: block; }
.lv-section-404 { display: grid; place-items: center; min-height: 60vh; }

/* WordPress editor content (pages / posts / offers prose) */
.lv-prose h1, .lv-prose h2, .lv-prose h3, .lv-prose h4 {
        font-family: var(--lv-serif); color: var(--lv-dark); line-height: 1.15; margin: 1.4em 0 0.5em;
}
.lv-prose h2 { font-size: clamp(28px, 3vw, 42px); }
.lv-prose h3 { font-size: clamp(22px, 2.2vw, 30px); }
.lv-prose h4 { font-size: clamp(19px, 1.6vw, 24px); }
.lv-prose ul, .lv-prose ol { color: var(--lv-muted); margin: 0 0 1.2em; padding-left: 1.4em; }
.lv-prose li { margin-bottom: 0.5em; }
.lv-prose a { color: var(--lv-gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.lv-prose a:hover { color: var(--lv-gold); }
.lv-prose img { display: block; height: auto; margin: 1.6em 0; }
.lv-prose blockquote {
        border-left: 3px solid var(--lv-gold); margin: 1.6em 0; padding: 0.4em 0 0.4em 1.4em;
        font-family: var(--lv-serif); font-size: 1.4em; line-height: 1.4; color: var(--lv-dark);
}
.lv-prose .wp-block-image figcaption { font-size: 13px; color: var(--lv-muted); text-align: center; }
.lv-post__tags { margin-top: 2em; font-size: 13px; color: var(--lv-muted); }

/* Keep the fixed header clear of the WP admin bar */
.admin-bar .lv-header { top: 32px; }
body.admin-bar.lv-solid-header { padding-top: calc(var(--lv-header-h) + 32px); }
@media screen and (max-width: 782px) {
        .admin-bar .lv-header { top: 46px; }
        body.admin-bar.lv-solid-header { padding-top: calc(var(--lv-header-h) + 46px); }
}

/* -------------------------------------------------------------------------
   21. Reduced motion

/* -------------------------------------------------------------------------
   22. Third-party integrations (Contact Form 7, Google Map)
   These style optional plugins/embeds on-brand. They are scoped so they only
   apply where present, and use normal specificity (no !important needed).
   ---------------------------------------------------------------------- */

/* Contact Form 7 */
.wpcf7 { max-width: 720px; margin: 0 auto; }
.wpcf7-form p { margin: 0 0 22px; }
.wpcf7-form label {
        display: block;
        font-family: var(--lv-sans);
        font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
        color: var(--lv-muted); font-weight: 600; margin-bottom: 8px;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="date"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
        width: 100%; padding: 14px 18px;
        background: var(--lv-white);
        border: 1px solid var(--lv-border);
        border-radius: 0; -webkit-appearance: none; appearance: none;
        font-family: var(--lv-sans); font-size: 15px; color: var(--lv-text); line-height: 1.5;
        transition: border-color 220ms var(--lv-ease), box-shadow 220ms var(--lv-ease);
}
.wpcf7-form textarea { min-height: 170px; resize: vertical; }
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
        outline: none; border-color: var(--lv-gold);
        box-shadow: 0 0 0 3px rgba(184, 155, 94, 0.18);
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: #A9A296; }
.wpcf7-form input[type="submit"],
.wpcf7-form button[type="submit"] {
        display: inline-flex; align-items: center; justify-content: center;
        min-height: 54px; padding: 14px 44px; margin-top: 6px;
        background: var(--lv-gold); border: 1px solid var(--lv-gold);
        color: var(--lv-white); border-radius: 0; cursor: pointer;
        font-family: var(--lv-sans); font-size: 12px; letter-spacing: 0.18em;
        text-transform: uppercase; font-weight: 600;
        transition: background 220ms var(--lv-ease), border-color 220ms var(--lv-ease), color 220ms var(--lv-ease);
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form button[type="submit"]:hover {
        background: var(--lv-gold-dark); border-color: var(--lv-gold-dark);
}
.wpcf7-spinner { background-color: var(--lv-gold); }
.wpcf7 form .wpcf7-response-output {
        margin: 22px 0 0; padding: 14px 18px; border-radius: 0;
        font-family: var(--lv-sans); font-size: 14px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
        border: 1px solid #C0392B; color: #C0392B; background: rgba(192, 57, 43, 0.06);
}
.wpcf7 form.sent .wpcf7-response-output {
        border: 1px solid var(--lv-gold); color: var(--lv-gold-dark); background: rgba(184, 155, 94, 0.08);
}
.wpcf7-not-valid-tip { color: #C0392B; font-size: 12px; margin-top: 6px; }
.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid { border-color: #C0392B; }

/* Google Map embed on content pages (e.g. Contact) — fill column height + frame.
   height/width override the iframe's width/height HTML attributes (no !important). */
.lv-single-page .lv-prose .wp-block-group.is-layout-grid { align-items: stretch; }
.lv-single-page .lv-prose iframe[src*="/maps/embed"],
.lv-single-page .lv-prose iframe[src*="google.com/maps"],
.lv-single-page .lv-prose iframe[src*="maps.google"] {
        display: block; width: 100%; height: 100%; min-height: 520px;
        box-shadow: 0 0 0 1px var(--lv-border), var(--lv-shadow-sm);
        filter: grayscale(0.12) contrast(1.03) saturate(0.95);
        transition: filter 300ms var(--lv-ease), box-shadow 300ms var(--lv-ease);
}
.lv-single-page .lv-prose iframe[src*="/maps/embed"]:hover,
.lv-single-page .lv-prose iframe[src*="google.com/maps"]:hover,
.lv-single-page .lv-prose iframe[src*="maps.google"]:hover {
        filter: none;
        box-shadow: 0 0 0 1px var(--lv-border), var(--lv-shadow);
}

   ---------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
        * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
