/* La Châteline VikBooking One Page — frontend */

:root {
    --lcvop-primary: #183b2b;
    --lcvop-secondary: #d9b36c;
    --lcvop-accent: #7e9f78;
    --lcvop-bg: #f7f4ed;
    --lcvop-surface: #ffffff;
    --lcvop-text: #314038;
    --lcvop-heading: #17261f;
    --lcvop-heading-font: Georgia, "Times New Roman", serif;
    --lcvop-body-font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --lcvop-container: 1240px;
    --lcvop-card-radius: 22px;
    --lcvop-button-radius: 999px;
    --lcvop-shadow: 0 24px 70px rgba(21, 44, 33, 0.12);
    --lcvop-shadow-soft: 0 14px 40px rgba(21, 44, 33, 0.08);
    --lcvop-border: rgba(24, 59, 43, 0.13);
    --lcvop-section-space: clamp(78px, 9vw, 138px);
    --lcvop-transition: 240ms ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 96px; }
* { box-sizing: border-box; }
body {
    margin: 0;
    color: var(--lcvop-text);
    background: var(--lcvop-bg);
    font-family: var(--lcvop-body-font);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lcvop-primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--lcvop-secondary); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--lcvop-secondary); color: #17261f; }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.55em;
    color: var(--lcvop-heading);
    font-family: var(--lcvop-heading-font);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.8rem, 6.3vw, 6.35rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 4.25rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
p { margin: 0 0 1.2em; }
ul, ol { padding-left: 1.2em; }

.lcvop-container { width: min(calc(100% - 40px), var(--lcvop-container)); margin-inline: auto; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { top: 12px; left: 12px; width: auto; height: auto; padding: 12px 18px; margin: 0; clip: auto; background: #fff; color: #000; z-index: 100000; }

.button,
.wp-element-button,
input[type="submit"],
button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 24px;
    border: 1px solid var(--lcvop-primary);
    border-radius: var(--lcvop-button-radius);
    color: #fff;
    background: var(--lcvop-primary);
    box-shadow: 0 10px 26px rgba(24, 59, 43, 0.18);
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition: transform var(--lcvop-transition), box-shadow var(--lcvop-transition), background var(--lcvop-transition), color var(--lcvop-transition);
}
.button:hover,
.wp-element-button:hover,
input[type="submit"]:hover,
button[type="submit"]:hover { color: #fff; background: color-mix(in srgb, var(--lcvop-primary) 88%, #000); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(24, 59, 43, 0.24); }
.button--small { min-height: 44px; padding: 10px 20px; font-size: 0.9rem; }
.button--light { background: #fff; border-color: #fff; color: var(--lcvop-heading); box-shadow: 0 12px 34px rgba(0,0,0,.2); }
.button--light:hover { background: var(--lcvop-secondary); border-color: var(--lcvop-secondary); color: var(--lcvop-heading); }
.button--ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,.6); box-shadow: none; }
.button--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; text-decoration: none; }
.lcvop-icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; }

.site-shell { min-height: 100vh; overflow: clip; }
.site-topbar { position: relative; z-index: 60; background: color-mix(in srgb, var(--lcvop-primary) 88%, #000); color: rgba(255,255,255,.86); font-size: 0.82rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar-contact { display: flex; align-items: center; gap: 22px; }
.topbar-contact a, .topbar-address { display: inline-flex; align-items: center; gap: 7px; color: inherit; text-decoration: none; }
.topbar-contact a:hover { color: #fff; }
.topbar-inner .lcvop-icon { width: 15px; height: 15px; color: var(--lcvop-secondary); }

.site-header { position: relative; z-index: 55; width: 100%; background: color-mix(in srgb, var(--lcvop-surface) 96%, transparent); border-bottom: 1px solid var(--lcvop-border); transition: background var(--lcvop-transition), box-shadow var(--lcvop-transition), transform var(--lcvop-transition); }
.has-sticky-header .site-header { position: sticky; top: 0; }
.admin-bar.has-sticky-header .site-header { top: 32px; }
.home.has-transparent-header .site-header { position: absolute; top: 38px; color: #fff; background: linear-gradient(to bottom, rgba(0,0,0,.28), transparent); border-bottom-color: rgba(255,255,255,.14); }
.admin-bar.home.has-transparent-header .site-header { top: 70px; }
.home.has-transparent-header .site-header.is-scrolled { position: fixed; top: 0; color: var(--lcvop-text); background: color-mix(in srgb, var(--lcvop-surface) 95%, transparent); border-bottom-color: var(--lcvop-border); box-shadow: 0 10px 40px rgba(17, 33, 26, .11); backdrop-filter: blur(18px); }
.admin-bar.home.has-transparent-header .site-header.is-scrolled { top: 32px; }
.header-inner { min-height: 86px; display: grid; grid-template-columns: minmax(170px, 1fr) auto auto; align-items: center; gap: 28px; }
.site-branding { min-width: 0; }
.custom-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.custom-logo { width: auto; max-width: min(260px, 34vw); max-height: 66px; object-fit: contain; }
.site-title { color: inherit; font-family: var(--lcvop-heading-font); font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 700; line-height: 1; text-decoration: none; }
.site-title:hover { color: var(--lcvop-secondary); }
.primary-navigation .menu { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px); margin: 0; padding: 0; list-style: none; }
.primary-navigation li { position: relative; }
.primary-navigation a { position: relative; display: block; padding: 31px 0; color: inherit; font-size: 0.91rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.primary-navigation a::after { content: ""; position: absolute; right: 0; bottom: 23px; left: 0; height: 2px; background: var(--lcvop-secondary); transform: scaleX(0); transform-origin: right; transition: transform var(--lcvop-transition); }
.primary-navigation a:hover::after, .primary-navigation .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.primary-navigation .sub-menu { position: absolute; top: calc(100% - 8px); left: -24px; min-width: 220px; margin: 0; padding: 12px; list-style: none; background: var(--lcvop-surface); color: var(--lcvop-text); border: 1px solid var(--lcvop-border); border-radius: 14px; box-shadow: var(--lcvop-shadow-soft); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--lcvop-transition); }
.primary-navigation li:hover > .sub-menu, .primary-navigation li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-navigation .sub-menu a { padding: 10px 12px; border-radius: 8px; }
.primary-navigation .sub-menu a::after { display: none; }
.primary-navigation .sub-menu a:hover { background: var(--lcvop-bg); }
.header-book-button { white-space: nowrap; }
.home.has-transparent-header .site-header:not(.is-scrolled) .header-book-button { color: var(--lcvop-heading); background: #fff; border-color: #fff; }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; padding: 0; border: 1px solid currentColor; border-radius: 50%; color: inherit; background: transparent; }
.menu-toggle .lcvop-icon { width: 22px; height: 22px; }
.menu-toggle-close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle-open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle-close { display: inline-flex; }

.hero-section { position: relative; min-height: var(--hero-height, 88vh); display: flex; align-items: flex-end; color: #fff; background-color: #233b2e; background-image: radial-gradient(circle at 80% 20%, rgba(217,179,108,.25), transparent 34%), linear-gradient(135deg, #183b2b, #0d2118); background-position: center; background-size: cover; }
.hero-section::after { content: ""; position: absolute; inset: auto 0 0; height: 30%; background: linear-gradient(to top, rgba(0,0,0,.45), transparent); pointer-events: none; }
.hero-backdrop { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,16,11,var(--hero-overlay, .48)) 0%, rgba(8,20,14,calc(var(--hero-overlay, .48) * .58)) 55%, rgba(8,20,14,calc(var(--hero-overlay, .48) * .26)) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; min-height: var(--hero-height, 88vh); display: flex; align-items: center; padding-top: 145px; padding-bottom: clamp(110px, 11vw, 160px); }
.hero-content { width: min(790px, 78%); }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; padding: 8px 15px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; background: rgba(255,255,255,.10); backdrop-filter: blur(10px); font-size: 0.78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-badge::before { content: ""; width: 28px; height: 1px; background: var(--lcvop-secondary); }
.hero-content h1 { max-width: 850px; margin-bottom: 26px; color: #fff; text-shadow: 0 4px 28px rgba(0,0,0,.28); }
.hero-text { max-width: 670px; font-size: clamp(1rem, 1.5vw, 1.25rem); color: rgba(255,255,255,.9); }
.hero-text p:last-child { margin-bottom: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-scroll { position: absolute; right: 0; bottom: 48px; width: 36px; height: 58px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; }
.hero-scroll span { position: absolute; top: 12px; left: 50%; width: 5px; height: 9px; border-radius: 99px; background: #fff; transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 22px); } }

.onepage-section { position: relative; padding-block: var(--lcvop-section-space); }
.onepage-section--surface { background: var(--lcvop-surface); }
.onepage-section--dark { color: rgba(255,255,255,.82); background: var(--lcvop-primary); }
.onepage-section--dark h1, .onepage-section--dark h2, .onepage-section--dark h3 { color: #fff; }
.onepage-section--dark .section-kicker { color: var(--lcvop-secondary); }
.onepage-section--dark .section-kicker::before { background: var(--lcvop-secondary); }
.section-heading { max-width: 840px; margin: 0 auto clamp(44px, 6vw, 72px); }
.section-heading--center { text-align: center; }
.section-heading--left { margin-left: 0; text-align: left; }
.section-kicker { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 17px; color: var(--lcvop-primary); font-size: 0.78rem; font-weight: 850; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.section-heading--left .section-kicker { justify-content: flex-start; }
.section-kicker::before { content: ""; width: 36px; height: 1px; background: var(--lcvop-secondary); }
.section-heading h2 { margin-bottom: 20px; }
.section-lead { max-width: 720px; margin-inline: auto; color: color-mix(in srgb, currentColor 80%, transparent); font-size: clamp(1rem, 1.35vw, 1.16rem); }
.section-heading--left .section-lead { margin-left: 0; }
.section-lead p:last-child { margin-bottom: 0; }

.booking-section { z-index: 5; padding: 0; }
.booking-section .lcvop-container { position: relative; margin-top: clamp(-82px, -7vw, -56px); }
.booking-panel { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(480px, 1.28fr); overflow: hidden; background: var(--lcvop-surface); border: 1px solid rgba(255,255,255,.75); border-radius: calc(var(--lcvop-card-radius) + 6px); box-shadow: 0 30px 90px rgba(15, 34, 25, .2); }
.booking-panel-intro { padding: clamp(30px, 4vw, 58px); background: var(--lcvop-primary); color: rgba(255,255,255,.84); }
.booking-panel-intro h2 { color: #fff; font-size: clamp(2rem, 3.2vw, 3.1rem); }
.booking-panel-intro .section-heading { margin-bottom: 26px; }
.booking-panel-intro .section-kicker { color: var(--lcvop-secondary); }
.booking-trust { display: flex; flex-direction: column; gap: 10px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.16); font-size: .82rem; font-weight: 700; }
.booking-trust span { display: flex; align-items: center; gap: 10px; }
.booking-trust .lcvop-icon { color: var(--lcvop-secondary); }
.booking-panel-form { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 58px); }

.intro-grid, .about-grid, .contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(42px, 8vw, 110px); }
.intro-visual, .about-visual { position: relative; }
.intro-visual > img, .about-visual > img, .image-placeholder { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; border-radius: var(--lcvop-card-radius); box-shadow: var(--lcvop-shadow); }
.intro-visual::before { content: ""; position: absolute; z-index: -1; top: -28px; left: -28px; width: 58%; height: 58%; border: 1px solid var(--lcvop-secondary); border-radius: var(--lcvop-card-radius); }
.image-placeholder { display: grid; place-items: center; overflow: hidden; color: var(--lcvop-secondary); background: radial-gradient(circle at 30% 20%, rgba(217,179,108,.35), transparent 35%), linear-gradient(145deg, var(--lcvop-primary), color-mix(in srgb, var(--lcvop-primary) 75%, #000)); }
.image-placeholder .lcvop-icon { width: 78px; height: 78px; opacity: .7; }
.image-placeholder--organic { border-radius: 42% 58% 46% 54% / 38% 38% 62% 62%; }
.intro-seal { position: absolute; right: -25px; bottom: 38px; width: 126px; height: 126px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 7px solid var(--lcvop-bg); border-radius: 50%; color: var(--lcvop-heading); background: var(--lcvop-secondary); box-shadow: var(--lcvop-shadow-soft); text-align: center; transform: rotate(-7deg); }
.intro-seal strong { font-family: var(--lcvop-heading-font); font-size: 1.45rem; }
.intro-seal span { font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.intro-content .section-heading, .about-content .section-heading { margin-bottom: 34px; }
.stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.stat-card { padding: 22px; border: 1px solid var(--lcvop-border); border-radius: calc(var(--lcvop-card-radius) * .7); background: color-mix(in srgb, var(--lcvop-surface) 58%, transparent); }
.stat-card strong { display: block; color: var(--lcvop-primary); font-family: var(--lcvop-heading-font); font-size: clamp(1.65rem, 3vw, 2.5rem); line-height: 1; }
.stat-card span { display: block; margin-top: 8px; font-size: .78rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }

.rooms-section::before { content: ""; position: absolute; top: 0; right: -10vw; width: 35vw; height: 35vw; border-radius: 50%; background: rgba(126,159,120,.09); filter: blur(1px); }
.rooms-output { position: relative; }

.features-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.feature-card { position: relative; min-height: 275px; padding: clamp(26px, 3.2vw, 40px); overflow: hidden; border: 1px solid var(--lcvop-border); border-radius: var(--lcvop-card-radius); background: color-mix(in srgb, var(--lcvop-surface) 75%, transparent); transition: transform var(--lcvop-transition), box-shadow var(--lcvop-transition), border-color var(--lcvop-transition); }
.feature-card::after { content: ""; position: absolute; right: -45px; bottom: -45px; width: 120px; height: 120px; border-radius: 50%; background: color-mix(in srgb, var(--lcvop-accent) 15%, transparent); transition: transform var(--lcvop-transition); }
.feature-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--lcvop-secondary) 62%, transparent); box-shadow: var(--lcvop-shadow-soft); }
.feature-card:hover::after { transform: scale(1.3); }
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 30px; border-radius: 18px; color: var(--lcvop-primary); background: color-mix(in srgb, var(--lcvop-secondary) 26%, transparent); }
.feature-icon .lcvop-icon { width: 29px; height: 29px; }
.feature-card h3 { margin-bottom: 13px; }
.feature-card p { position: relative; z-index: 1; margin: 0; color: color-mix(in srgb, var(--lcvop-text) 80%, transparent); }

.gallery-section { overflow: hidden; background: color-mix(in srgb, var(--lcvop-primary) 88%, #000); }
.gallery-section::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(circle at 20% 30%, var(--lcvop-secondary), transparent 26%), radial-gradient(circle at 80% 80%, var(--lcvop-accent), transparent 26%); }
.gallery-mosaic { position: relative; display: grid; grid-template-columns: 1.35fr .8fr .8fr; grid-template-rows: repeat(2, minmax(210px, 29vw)); gap: 15px; max-height: 750px; }
.gallery-item { margin: 0; overflow: hidden; border-radius: calc(var(--lcvop-card-radius) * .8); }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item:nth-child(n+6) { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.gallery-item:hover img { transform: scale(1.045); }

.about-grid { direction: rtl; }
.about-grid > * { direction: ltr; }
.about-visual > img, .about-visual .image-placeholder { aspect-ratio: 1 / .82; }
.about-visual::after { content: ""; position: absolute; z-index: -1; right: -34px; bottom: -34px; width: 72%; height: 76%; border-radius: var(--lcvop-card-radius); background: color-mix(in srgb, var(--lcvop-secondary) 28%, transparent); }
.about-note { position: absolute; left: -34px; bottom: 28px; display: flex; align-items: center; gap: 12px; max-width: 220px; padding: 18px 22px; border-radius: 16px; color: #fff; background: var(--lcvop-primary); box-shadow: var(--lcvop-shadow-soft); }
.about-note .lcvop-icon { color: var(--lcvop-secondary); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.testimonial-card { margin: 0; padding: clamp(28px, 3vw, 42px); border: 1px solid var(--lcvop-border); border-radius: var(--lcvop-card-radius); background: var(--lcvop-bg); box-shadow: 0 12px 35px rgba(21,44,33,.05); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 23px; color: var(--lcvop-secondary); }
.testimonial-stars .lcvop-icon { width: 17px; height: 17px; fill: currentColor; }
.testimonial-card p { color: var(--lcvop-heading); font-family: var(--lcvop-heading-font); font-size: clamp(1.1rem, 1.7vw, 1.35rem); line-height: 1.48; }
.testimonial-card footer { margin-top: 26px; padding-top: 19px; border-top: 1px solid var(--lcvop-border); font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: clamp(40px, 8vw, 110px); }
.faq-heading { position: sticky; top: 130px; }
.faq-list { border-top: 1px solid var(--lcvop-border); }
.faq-item { border-bottom: 1px solid var(--lcvop-border); }
.faq-item summary { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 25px 2px; color: var(--lcvop-heading); font-family: var(--lcvop-heading-font); font-size: clamp(1.1rem, 1.7vw, 1.45rem); font-weight: 650; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--lcvop-border); border-radius: 50%; }
.faq-item summary .lcvop-icon { width: 17px; transition: transform var(--lcvop-transition); }
.faq-item[open] summary .lcvop-icon { transform: rotate(180deg); }
.faq-item > div { padding: 0 52px 22px 2px; color: color-mix(in srgb, var(--lcvop-text) 82%, transparent); }

.contact-section { background: color-mix(in srgb, var(--lcvop-primary) 86%, #000); }
.contact-grid { align-items: stretch; }
.contact-content { align-self: center; }
.contact-details { display: grid; gap: 12px; margin-top: 38px; }
.contact-details > a, .contact-details > div { display: flex; align-items: center; gap: 15px; padding: 15px 0; color: #fff; text-decoration: none; }
.contact-details .lcvop-icon { width: 24px; height: 24px; color: var(--lcvop-secondary); }
.contact-details span { display: flex; flex-direction: column; line-height: 1.35; }
.contact-details small { margin-bottom: 4px; color: rgba(255,255,255,.56); font-size: .66rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.contact-card { min-height: 480px; padding: clamp(25px, 4vw, 48px); border: 1px solid rgba(255,255,255,.17); border-radius: var(--lcvop-card-radius); background: var(--lcvop-surface); color: var(--lcvop-text); box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.contact-card iframe { width: 100%; height: 100%; min-height: 390px; border: 0; border-radius: calc(var(--lcvop-card-radius) * .7); }
.contact-card-placeholder { height: 100%; min-height: 390px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.contact-card-placeholder > span { width: 70px; height: 70px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 50%; color: var(--lcvop-primary); background: color-mix(in srgb, var(--lcvop-secondary) 25%, transparent); }
.contact-card-placeholder .lcvop-icon { width: 31px; height: 31px; }

.site-footer { color: rgba(255,255,255,.72); background: #0d1d15; }
.footer-main { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: clamp(40px, 7vw, 90px); padding-block: clamp(58px, 7vw, 90px); }
.footer-brand .custom-logo { max-width: 240px; filter: brightness(0) invert(1); }
.footer-brand .site-title { color: #fff; }
.footer-brand p { max-width: 380px; margin-top: 18px; }
.site-footer h3 { margin-bottom: 22px; color: #fff; font-family: var(--lcvop-body-font); font-size: .77rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact .lcvop-icon { margin-top: 5px; color: var(--lcvop-secondary); }
.footer-contact a, .footer-navigation a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-contact a:hover, .footer-navigation a:hover { color: #fff; }
.footer-navigation ul { margin: 0; padding: 0; list-style: none; }
.footer-navigation li { margin-bottom: 9px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom .lcvop-container { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .76rem; }

.lcvop-admin-placeholder { padding: 18px 20px; border: 1px dashed color-mix(in srgb, var(--lcvop-secondary) 75%, transparent); border-radius: 12px; color: var(--lcvop-heading); background: color-mix(in srgb, var(--lcvop-secondary) 10%, transparent); }

/* Inner pages and VikBooking destination pages */
.inner-page { min-height: 70vh; padding-bottom: var(--lcvop-section-space); }
.inner-page-hero { position: relative; overflow: hidden; padding: clamp(90px, 12vw, 160px) 0 clamp(65px, 8vw, 100px); background: linear-gradient(135deg, var(--lcvop-primary), color-mix(in srgb, var(--lcvop-primary) 78%, #000)); }
.inner-page-hero::after { content: ""; position: absolute; top: -45%; right: -10%; width: 48vw; height: 48vw; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.inner-page-hero .lcvop-container { position: relative; z-index: 1; }
.inner-page-hero h1 { max-width: 950px; color: #fff; font-size: clamp(2.6rem, 5.5vw, 5rem); }
.inner-page-hero .section-kicker { justify-content: flex-start; color: var(--lcvop-secondary); }
.inner-page-hero--compact { padding-block: clamp(70px, 9vw, 115px); }
.content-card, .vikbooking-content { margin-top: clamp(-26px, -3vw, -18px); padding: clamp(28px, 5vw, 72px); border: 1px solid var(--lcvop-border); border-radius: var(--lcvop-card-radius); background: var(--lcvop-surface); box-shadow: var(--lcvop-shadow-soft); }
.content-card > *:first-child, .vikbooking-content > *:first-child { margin-top: 0; }
.content-card > *:last-child, .vikbooking-content > *:last-child { margin-bottom: 0; }
.entry-featured-image { margin: calc(clamp(28px, 5vw, 72px) * -1) calc(clamp(28px, 5vw, 72px) * -1) 44px; overflow: hidden; border-radius: var(--lcvop-card-radius) var(--lcvop-card-radius) 0 0; }
.posts-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; padding-top: 60px; }
.post-card { overflow: hidden; border: 1px solid var(--lcvop-border); border-radius: var(--lcvop-card-radius); background: var(--lcvop-surface); box-shadow: var(--lcvop-shadow-soft); }
.post-card > a img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.post-card-content { padding: 26px; }
.post-card time { display: block; margin-bottom: 10px; color: var(--lcvop-primary); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.post-card h2 { font-size: 1.7rem; }
.post-card h2 a { color: inherit; text-decoration: none; }
.error-page { min-height: 75vh; display: grid; place-items: center; padding: 100px 0; text-align: center; }
.error-code { display: block; color: color-mix(in srgb, var(--lcvop-secondary) 55%, transparent); font-family: var(--lcvop-heading-font); font-size: clamp(7rem, 18vw, 15rem); font-weight: 800; line-height: .8; }
.error-page p { max-width: 560px; margin: 0 auto 30px; }

/* Forms */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], input[type="password"], input[type="url"], select, textarea {
    width: 100%; min-height: 52px; padding: 12px 15px; border: 1px solid var(--lcvop-border); border-radius: 11px; color: var(--lcvop-text); background: #fff; outline: none; transition: border-color var(--lcvop-transition), box-shadow var(--lcvop-transition);
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--lcvop-accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--lcvop-accent) 18%, transparent); }
label { font-weight: 700; }

/* VikBooking presentation layer. Booking logic remains owned by the plugin. */
.has-vikbooking-theme-styles .lcvop-vikbooking-output { width: 100%; }
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], select, textarea) { min-height: 52px !important; border: 1px solid var(--lcvop-border) !important; border-radius: 11px !important; background-color: #fff !important; box-shadow: none !important; }
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(button, input[type="submit"], .btn, .vbo-pref-color-btn, .vbmodhorsearchbookdiv) { border-radius: var(--lcvop-button-radius) !important; }
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(.vbo-search-mainview, .vbsearch, .vbmodhorsearch, .vbo-search-form, [class*="vbo-search"]) { font-family: var(--lcvop-body-font); }
.has-vikbooking-theme-styles .booking-panel-form :where(.vbmodhorsearch, .vbo-search-mainview, .vbsearch, form) { width: 100%; }
.has-vikbooking-theme-styles .booking-panel-form :where(.vbmodhorsearch, .vbo-search-mainview, .vbsearch) { margin: 0 !important; padding: 0 !important; border: 0 !important; background: transparent !important; box-shadow: none !important; }
.has-vikbooking-theme-styles .booking-panel-form :where(.vbmodhorsearch, .vbo-search-mainview, .vbsearch) :where(.vbmodhorsearchmaindiv, .vbo-search-inpblock, .vbsearchinputdiv) { gap: 12px; }
.has-vikbooking-theme-styles .rooms-output :where(.vbrowcname, .vbo-roomslist-room, .room_result, [class*="vbo-room-card"]) { overflow: hidden; border: 1px solid var(--lcvop-border) !important; border-radius: var(--lcvop-card-radius) !important; background: var(--lcvop-surface) !important; box-shadow: var(--lcvop-shadow-soft) !important; }
.has-vikbooking-theme-styles .rooms-output :where(.vbrowcname, .vbo-roomslist-room, .room_result, [class*="vbo-room-card"]) img { object-fit: cover; }
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(.vblistroomname, .vbo-roomslist-room-name, .vbo-room-details-title, h2, h3) { color: var(--lcvop-heading); font-family: var(--lcvop-heading-font); }
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(.vbo-pref-color-text, .vbo-pref-color-text-hover:hover) { color: var(--lcvop-primary) !important; }
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(.vbo-pref-color-bg, .vbo-pref-color-btn, .vbo-pref-color-btn-secondary) { background-color: var(--lcvop-primary) !important; border-color: var(--lcvop-primary) !important; color: #fff !important; }
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(.vbo-pref-color-border) { border-color: var(--lcvop-primary) !important; }
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(table) { width: 100%; border-collapse: collapse; }
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(th, td) { padding: 12px; border: 1px solid var(--lcvop-border); }
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(th) { color: var(--lcvop-heading); background: color-mix(in srgb, var(--lcvop-primary) 8%, var(--lcvop-surface)); }
.has-vikbooking-theme-styles .vikbooking-content { overflow-x: auto; }

/* Presets */
.lcvop-preset-lake-blue { --lcvop-shadow: 0 24px 70px rgba(20, 51, 67, .13); }
.lcvop-preset-lake-blue .hero-section { background-color: #173b4a; }
.lcvop-preset-lake-blue .feature-card { border-radius: calc(var(--lcvop-card-radius) * .65); }
.lcvop-preset-chateau-ivory .hero-content h1, .lcvop-preset-chateau-ivory h1, .lcvop-preset-chateau-ivory h2 { letter-spacing: -.035em; }
.lcvop-preset-chateau-ivory .feature-card, .lcvop-preset-chateau-ivory .testimonial-card { border-top: 4px solid var(--lcvop-secondary); }
.lcvop-preset-modern-dark { --lcvop-border: rgba(255,255,255,.12); }
.lcvop-preset-modern-dark .onepage-section:not(.onepage-section--dark), .lcvop-preset-modern-dark .site-header.is-scrolled { background: var(--lcvop-bg); }
.lcvop-preset-modern-dark .feature-card, .lcvop-preset-modern-dark .stat-card, .lcvop-preset-modern-dark .testimonial-card { background: var(--lcvop-surface); }
.lcvop-preset-natural-sand .hero-badge, .lcvop-preset-natural-sand .button, .lcvop-preset-natural-sand .feature-icon { border-radius: 8px; }
.lcvop-preset-natural-sand .image-placeholder--organic { border-radius: var(--lcvop-card-radius); }

/* Reveal animation */
.has-lcvop-animations [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.75,.25,1); }
.has-lcvop-animations [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.no-lcvop-animations [data-reveal] { opacity: 1; transform: none; }

@media (max-width: 1120px) {
    .header-inner { grid-template-columns: minmax(150px, 1fr) auto; }
    .menu-toggle { display: inline-flex; }
    .header-book-button { display: none; }
    .primary-navigation { position: fixed; z-index: 80; inset: 0 0 0 auto; width: min(420px, 92vw); padding: 115px 32px 45px; overflow-y: auto; color: var(--lcvop-heading); background: var(--lcvop-surface); box-shadow: -20px 0 70px rgba(0,0,0,.18); transform: translateX(102%); transition: transform 320ms cubic-bezier(.4,0,.2,1); }
    .primary-navigation.is-open { transform: translateX(0); }
    .primary-navigation .menu { flex-direction: column; align-items: stretch; gap: 0; }
    .primary-navigation a { padding: 16px 0; border-bottom: 1px solid var(--lcvop-border); font-family: var(--lcvop-heading-font); font-size: 1.55rem; }
    .primary-navigation a::after { display: none; }
    .primary-navigation .sub-menu { position: static; min-width: 0; padding: 4px 0 4px 18px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .primary-navigation .sub-menu a { font-family: var(--lcvop-body-font); font-size: 1rem; }
    .home.has-transparent-header .site-header:not(.is-scrolled) .menu-toggle { color: #fff; }
    .booking-panel { grid-template-columns: 1fr; }
    .booking-panel-intro { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; }
    .booking-trust { min-width: 230px; }
    .features-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { max-width: 780px; width: 100%; margin-inline: auto; }
    .posts-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 782px) {
    .admin-bar.has-sticky-header .site-header, .admin-bar.home.has-transparent-header .site-header.is-scrolled { top: 46px; }
    .admin-bar.home.has-transparent-header .site-header { top: 84px; }
    .site-topbar { display: none; }
    .home.has-transparent-header .site-header { top: 0; }
    .header-inner { min-height: 74px; }
    .custom-logo { max-height: 52px; }
    .hero-inner { padding-top: 120px; padding-bottom: 120px; }
    .hero-content { width: 100%; }
    .hero-scroll { display: none; }
    .booking-section .lcvop-container { margin-top: -60px; }
    .booking-panel-intro { display: block; }
    .booking-trust { min-width: 0; }
    .intro-grid, .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
    .intro-visual, .about-visual { width: min(620px, 100%); margin-inline: auto; }
    .about-grid { direction: ltr; }
    .faq-heading { position: static; }
    .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 230px; max-height: none; }
    .gallery-item:first-child { grid-column: 1 / 3; grid-row: 1; }
    .gallery-item:nth-child(4), .gallery-item:nth-child(5) { display: none; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / 3; }
}

@media (max-width: 620px) {
    :root { --lcvop-section-space: 76px; }
    body { font-size: 16px; }
    .lcvop-container { width: min(calc(100% - 28px), var(--lcvop-container)); }
    .hero-section, .hero-inner { min-height: max(690px, var(--hero-height, 88vh)); }
    .hero-content h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .button { width: 100%; }
    .booking-section .lcvop-container { width: min(calc(100% - 20px), var(--lcvop-container)); }
    .booking-panel-intro, .booking-panel-form { padding: 27px 22px; }
    .stats-grid, .features-grid, .posts-grid { grid-template-columns: 1fr; }
    .intro-seal { right: -7px; width: 105px; height: 105px; }
    .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(3, 280px); }
    .gallery-item:first-child { grid-column: 1; grid-row: 1; }
    .gallery-item:nth-child(4), .gallery-item:nth-child(5) { display: none; }
    .about-note { left: 12px; bottom: 12px; }
    .contact-card { min-height: 390px; padding: 18px; }
    .footer-main, .footer-bottom .lcvop-container { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; }
    .footer-brand { grid-column: auto; }
    .footer-bottom .lcvop-container { justify-content: center; min-height: 95px; padding-block: 20px; }
    .content-card, .vikbooking-content { width: min(calc(100% - 18px), var(--lcvop-container)); padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ================================================================
   Version 1.1.0 — collision-safe layout and ten complete templates
   ================================================================ */

:root {
    --lcvop-header-height: 86px;
    --lcvop-logo-max-width: 260px;
    --lcvop-menu-font-size: 15px;
    --lcvop-header-gap: 28px;
}

html { scroll-padding-top: calc(var(--lcvop-header-height) + 24px); }
body, .site-shell, .site-main, .onepage-section, .lcvop-container { max-width: 100%; }
:where(h1, h2, h3, h4, h5, h6, p, li, a, button, label, summary, blockquote, figcaption) {
    overflow-wrap: anywhere;
}
:where(.hero-content, .section-heading, .booking-panel > *, .intro-grid > *, .about-grid > *, .contact-grid > *, .faq-grid > *, .feature-card, .testimonial-card, .stat-card) {
    min-width: 0;
}
.button,
.wp-element-button,
input[type="submit"],
button[type="submit"] {
    max-width: 100%;
    min-width: 0;
    height: auto;
    white-space: normal;
    text-align: center;
    text-wrap: balance;
}
.button > *, .wp-element-button > * { min-width: 0; }

/* Header: fixed grid areas keep the logo, menu and actions separate. */
.header-inner {
    min-height: var(--lcvop-header-height);
    grid-template-columns: minmax(120px, auto) minmax(0, 1fr) auto;
    gap: var(--lcvop-header-gap);
}
.site-branding {
    width: min(100%, var(--lcvop-logo-max-width));
    max-width: var(--lcvop-logo-max-width);
    overflow: hidden;
}
.custom-logo-link { max-width: 100%; }
.custom-logo {
    max-width: min(100%, var(--lcvop-logo-max-width));
    max-height: calc(var(--lcvop-header-height) - 18px);
}
.site-title {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.primary-navigation { min-width: 0; }
.primary-navigation .menu {
    justify-content: center;
    gap: clamp(10px, 1.45vw, 25px);
}
.primary-navigation a {
    padding-block: calc((var(--lcvop-header-height) - 24px) / 2);
    font-size: var(--lcvop-menu-font-size);
    line-height: 1.25;
}
.primary-navigation a::after { bottom: calc((var(--lcvop-header-height) - 24px) / 2 - 8px); }
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}
.header-book-button { flex: 0 1 auto; max-width: 220px; }
.mobile-nav-book-button { display: none; }
.menu-toggle { flex: 0 0 44px; }
.topbar-inner > *, .topbar-contact, .topbar-contact a, .topbar-address { min-width: 0; }
.topbar-contact span, .topbar-address span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
body.menu-open::before {
    content: "";
    position: fixed;
    z-index: 70;
    inset: 0;
    background: rgba(4, 11, 8, .52);
    backdrop-filter: blur(3px);
}

/* Hero and button groups are allowed to wrap before they can collide. */
.hero-inner {
    padding-top: calc(var(--lcvop-header-height) + 92px);
    padding-right: 42px;
}
.hero-content { width: min(790px, 100%); }
.hero-content h1 { max-width: 14ch; text-wrap: balance; }
.hero-text { max-width: 62ch; }
.hero-actions { align-items: stretch; }
.hero-actions .button { flex: 0 1 auto; }
.hero-scroll { right: 20px; }
.section-heading h2 { text-wrap: balance; }
.booking-panel { min-width: 0; }
.booking-panel-intro, .booking-panel-form { min-width: 0; overflow: hidden; }

/* VikBooking compatibility layer: forms wrap into new rows instead of overlapping. */
.has-vikbooking-theme-styles .lcvop-vikbooking-output,
.has-vikbooking-theme-styles .lcvop-vikbooking-output form,
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(.vbmodhorsearch, .vbo-search-mainview, .vbsearch, .vbo-search-form, .vbmodhorsearchmaindiv, .vbo-search-inpblock, .vbsearchinputdiv) {
    max-width: 100%;
    min-width: 0;
}
.has-vikbooking-theme-styles .booking-panel-form :where(.vbmodhorsearchmaindiv, .vbo-search-mainview form, .vbsearch form, .vbo-search-form, [class*="searchform" i]) {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: end !important;
    gap: 14px !important;
}
.has-vikbooking-theme-styles .booking-panel-form :where(.vbmodhorsearchmaindiv, .vbo-search-mainview form, .vbsearch form, .vbo-search-form, [class*="searchform" i]) > * {
    flex: 1 1 155px !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
}
.has-vikbooking-theme-styles .booking-panel-form :where(.vbmodhorsearchbookdiv, [class*="submit" i], button, input[type="submit"]) {
    flex: 0 1 auto !important;
}
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(button, input[type="submit"], .btn, .vbo-pref-color-btn, .vbo-pref-color-btn-secondary, .vbmodhorsearchbookdiv) {
    max-width: 100% !important;
    min-height: 50px !important;
    height: auto !important;
    padding: 12px 20px !important;
    white-space: normal !important;
    line-height: 1.25 !important;
    text-align: center !important;
}
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(.vbo-roomslist-room, .room_result, .vbrowcname, [class*="vbo-room-card"]) > * {
    min-width: 0;
}
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(.vblistroomname, .vbo-roomslist-room-name, .vbo-room-details-title, h2, h3, p) {
    overflow-wrap: anywhere;
}
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(table) { min-width: 680px; }
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(.vbo-search-mainview, .vbsearch, .vbmodhorsearch, .vbo-search-form) { overflow: visible !important; }

/* Shared dark-template corrections. */
.lcvop-template-dark { --lcvop-border: rgba(255,255,255,.13); }
.lcvop-template-dark .onepage-section:not(.onepage-section--dark) { background: var(--lcvop-bg); }
.lcvop-template-dark .onepage-section--surface { background: var(--lcvop-surface); }
.lcvop-template-dark :where(.feature-card, .stat-card, .testimonial-card, .content-card, .vikbooking-content, .contact-card, .post-card) {
    background: var(--lcvop-surface);
    color: var(--lcvop-text);
}
.lcvop-template-dark :where(input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], input[type="password"], input[type="url"], select, textarea) {
    color: var(--lcvop-text);
    background: color-mix(in srgb, var(--lcvop-surface) 84%, #fff 16%);
}
.lcvop-template-dark .site-header.is-scrolled { color: var(--lcvop-text); background: color-mix(in srgb, var(--lcvop-surface) 94%, transparent); }
.lcvop-template-dark .primary-navigation { color: var(--lcvop-text); }

/* 01 — Forest Luxury */
.lcvop-preset-forest-luxury .hero-content { position: relative; }
.lcvop-preset-forest-luxury .hero-content::before {
    content: "";
    position: absolute;
    top: -34px;
    bottom: -34px;
    left: -38px;
    width: 4px;
    border-radius: 99px;
    background: var(--lcvop-secondary);
}
.lcvop-preset-forest-luxury .booking-panel { border-radius: calc(var(--lcvop-card-radius) + 8px); }
.lcvop-preset-forest-luxury .feature-card:nth-child(2n) { transform: translateY(18px); }
.lcvop-preset-forest-luxury .feature-card:nth-child(2n):hover { transform: translateY(10px); }

/* 02 — Lake Blue */
.lcvop-preset-lake-blue .site-header {
    width: min(calc(100% - 32px), calc(var(--lcvop-container) + 56px));
    margin-inline: auto;
    border-radius: 0 0 22px 22px;
}
.lcvop-preset-lake-blue.home.has-transparent-header .site-header:not(.is-scrolled) {
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 54, 71, .42);
    backdrop-filter: blur(15px);
}
.lcvop-preset-lake-blue .hero-backdrop { background: linear-gradient(90deg, rgba(4, 38, 52, .72), rgba(10, 72, 91, .28), rgba(10, 72, 91, .08)); }
.lcvop-preset-lake-blue .hero-content h1 { letter-spacing: -.045em; }
.lcvop-preset-lake-blue .booking-panel { border-radius: 28px; }
.lcvop-preset-lake-blue .booking-panel-intro { background: linear-gradient(150deg, var(--lcvop-primary), color-mix(in srgb, var(--lcvop-primary) 66%, #000)); }
.lcvop-preset-lake-blue .feature-card { border-radius: 10px 34px 10px 34px; }
.lcvop-preset-lake-blue .gallery-item { border-radius: 50px 12px 50px 12px; }

/* 03 — Château Ivory */
.lcvop-preset-chateau-ivory.home.has-transparent-header .site-header:not(.is-scrolled) {
    color: var(--lcvop-heading);
    background: color-mix(in srgb, var(--lcvop-surface) 97%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--lcvop-secondary) 46%, transparent);
}
.lcvop-preset-chateau-ivory .site-topbar { background: var(--lcvop-primary); }
.lcvop-preset-chateau-ivory .primary-navigation a { font-family: var(--lcvop-heading-font); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.lcvop-preset-chateau-ivory .hero-inner { justify-content: center; text-align: center; }
.lcvop-preset-chateau-ivory .hero-content { width: min(960px, 100%); }
.lcvop-preset-chateau-ivory .hero-content h1, .lcvop-preset-chateau-ivory .hero-text { margin-inline: auto; }
.lcvop-preset-chateau-ivory .hero-actions { justify-content: center; }
.lcvop-preset-chateau-ivory .hero-backdrop { background: linear-gradient(rgba(24,17,12,.44), rgba(24,17,12,.48)); }
.lcvop-preset-chateau-ivory :where(.feature-card, .testimonial-card, .stat-card) { border-radius: 0; border-width: 1px 0 0; border-top-color: var(--lcvop-secondary); box-shadow: none; }
.lcvop-preset-chateau-ivory .section-kicker { font-family: var(--lcvop-heading-font); }

/* 04 — Botanical Sage */
.lcvop-preset-botanical-sage .hero-content {
    padding: clamp(28px, 4vw, 56px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 44px 8px 44px 8px;
    background: rgba(31, 64, 44, .30);
    backdrop-filter: blur(12px);
}
.lcvop-preset-botanical-sage .hero-content h1 { max-width: 12ch; }
.lcvop-preset-botanical-sage :where(.feature-card, .testimonial-card, .stat-card) { border-radius: 38px 10px 38px 10px; }
.lcvop-preset-botanical-sage .feature-icon { border-radius: 50% 42% 52% 45%; }
.lcvop-preset-botanical-sage .booking-panel { border-radius: 48px 12px 48px 12px; }
.lcvop-preset-botanical-sage .gallery-item:nth-child(odd) { border-radius: 42% 18% 35% 16%; }

/* 05 — Mediterranean Sun */
.lcvop-preset-mediterranean-sun.home.has-transparent-header .site-header:not(.is-scrolled) {
    color: var(--lcvop-heading);
    background: rgba(255,255,255,.94);
    border-bottom-color: transparent;
}
.lcvop-preset-mediterranean-sun .site-topbar { background: var(--lcvop-primary); }
.lcvop-preset-mediterranean-sun .hero-inner { align-items: flex-end; justify-content: center; text-align: center; padding-bottom: clamp(140px, 14vw, 210px); }
.lcvop-preset-mediterranean-sun .hero-content { width: min(980px, 100%); }
.lcvop-preset-mediterranean-sun .hero-content h1, .lcvop-preset-mediterranean-sun .hero-text { margin-inline: auto; }
.lcvop-preset-mediterranean-sun .hero-actions { justify-content: center; }
.lcvop-preset-mediterranean-sun .hero-backdrop { background: linear-gradient(to top, rgba(13,54,62,.78), rgba(13,54,62,.08) 75%); }
.lcvop-preset-mediterranean-sun .feature-card { border: 0; border-bottom: 6px solid var(--lcvop-secondary); box-shadow: 0 18px 45px rgba(30,90,96,.09); }
.lcvop-preset-mediterranean-sun .feature-card:nth-child(3n+2) { border-bottom-color: var(--lcvop-accent); }
.lcvop-preset-mediterranean-sun .button { text-transform: uppercase; letter-spacing: .045em; }

/* 06 — Natural Sand */
.lcvop-preset-natural-sand.home.has-transparent-header .site-header:not(.is-scrolled) {
    color: var(--lcvop-heading);
    background: var(--lcvop-surface);
    border-bottom: 3px solid var(--lcvop-secondary);
}
.lcvop-preset-natural-sand :where(.hero-badge, .button, .feature-icon, .booking-panel, .feature-card, .testimonial-card, .stat-card, .gallery-item, .contact-card) { border-radius: 0; }
.lcvop-preset-natural-sand .hero-content { padding-left: 28px; border-left: 8px solid var(--lcvop-secondary); }
.lcvop-preset-natural-sand .booking-panel { border: 3px solid var(--lcvop-primary); box-shadow: 16px 16px 0 color-mix(in srgb, var(--lcvop-secondary) 55%, transparent); }
.lcvop-preset-natural-sand .feature-card { border-width: 0 0 0 5px; border-left-color: var(--lcvop-accent); }
.lcvop-preset-natural-sand .section-kicker::before { height: 4px; }

/* 07 — Alpine Minimal */
.lcvop-preset-alpine-minimal.home.has-transparent-header .site-header:not(.is-scrolled) {
    color: var(--lcvop-heading);
    background: rgba(255,255,255,.96);
    border-bottom-color: var(--lcvop-border);
}
.lcvop-preset-alpine-minimal .site-topbar { display: none; }
.lcvop-preset-alpine-minimal.home.has-transparent-header .site-header { top: 0; }
.lcvop-preset-alpine-minimal :where(.feature-card, .testimonial-card, .stat-card, .booking-panel, .content-card, .contact-card) { box-shadow: none; }
.lcvop-preset-alpine-minimal .hero-content h1 { max-width: 11ch; font-weight: 500; letter-spacing: -.055em; }
.lcvop-preset-alpine-minimal .hero-badge { border-radius: 0; border-width: 0 0 1px; background: transparent; }
.lcvop-preset-alpine-minimal .feature-card { min-height: 240px; padding-left: 0; padding-right: 20px; border-width: 1px 0 0; border-radius: 0; background: transparent; }
.lcvop-preset-alpine-minimal .feature-icon { width: 44px; height: 44px; border-radius: 50%; }
.lcvop-preset-alpine-minimal .section-kicker { letter-spacing: .24em; }

/* 08 — Modern Dark */
.lcvop-preset-modern-dark .site-topbar, .lcvop-preset-modern-dark .site-footer { background: #080c0b; }
.lcvop-preset-modern-dark .site-header { border-bottom-color: rgba(255,255,255,.12); }
.lcvop-preset-modern-dark.home.has-transparent-header .site-header:not(.is-scrolled) { background: rgba(7,11,10,.68); backdrop-filter: blur(14px); }
.lcvop-preset-modern-dark .hero-content h1 { font-weight: 800; text-transform: uppercase; letter-spacing: -.06em; }
.lcvop-preset-modern-dark .hero-badge, .lcvop-preset-modern-dark .button, .lcvop-preset-modern-dark :where(.feature-card, .testimonial-card, .stat-card, .booking-panel, .contact-card) { border-radius: 6px; }
.lcvop-preset-modern-dark :where(.feature-card, .testimonial-card, .stat-card) { box-shadow: none; border-color: rgba(255,255,255,.12); }
.lcvop-preset-modern-dark .feature-card:hover { border-color: var(--lcvop-secondary); }
.lcvop-preset-modern-dark .booking-panel-intro { background: #090d0c; }

/* 09 — Midnight Lake */
.lcvop-preset-midnight-lake .site-topbar { background: #04101a; }
.lcvop-preset-midnight-lake.home.has-transparent-header .site-header:not(.is-scrolled) { background: rgba(4,20,31,.42); backdrop-filter: blur(18px); }
.lcvop-preset-midnight-lake .hero-backdrop { background: radial-gradient(circle at 76% 22%, rgba(77,163,199,.25), transparent 34%), linear-gradient(90deg, rgba(2,14,24,.88), rgba(4,25,40,.50), rgba(4,25,40,.16)); }
.lcvop-preset-midnight-lake .hero-content { padding: clamp(28px, 4vw, 52px); border-left: 2px solid var(--lcvop-secondary); background: linear-gradient(90deg, rgba(4,20,31,.60), transparent); }
.lcvop-preset-midnight-lake :where(.feature-card, .testimonial-card, .stat-card, .contact-card) { border-color: rgba(77,163,199,.22); box-shadow: inset 0 1px rgba(255,255,255,.04), 0 22px 70px rgba(0,0,0,.24); }
.lcvop-preset-midnight-lake .booking-panel { border-color: rgba(77,163,199,.25); background: rgba(16,39,53,.96); }
.lcvop-preset-midnight-lake .booking-panel-form { background: var(--lcvop-surface); }
.lcvop-preset-midnight-lake .gallery-section { background: #04101a; }

/* 10 — Burgundy Estate */
.lcvop-preset-burgundy-estate .site-topbar, .lcvop-preset-burgundy-estate .site-footer { background: #11080b; }
.lcvop-preset-burgundy-estate.home.has-transparent-header .site-header:not(.is-scrolled) { background: rgba(28,10,16,.62); border-bottom-color: rgba(198,161,91,.30); }
.lcvop-preset-burgundy-estate .primary-navigation a { font-family: var(--lcvop-heading-font); letter-spacing: .06em; text-transform: uppercase; }
.lcvop-preset-burgundy-estate .hero-inner { justify-content: center; text-align: center; }
.lcvop-preset-burgundy-estate .hero-content { width: min(980px, 100%); padding: 44px; border: 1px solid rgba(198,161,91,.44); }
.lcvop-preset-burgundy-estate .hero-content h1, .lcvop-preset-burgundy-estate .hero-text { margin-inline: auto; }
.lcvop-preset-burgundy-estate .hero-actions { justify-content: center; }
.lcvop-preset-burgundy-estate :where(.feature-card, .testimonial-card, .stat-card, .booking-panel, .contact-card) { border-radius: 0; border-color: rgba(198,161,91,.26); }
.lcvop-preset-burgundy-estate .feature-card::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(198,161,91,.18); pointer-events: none; }
.lcvop-preset-burgundy-estate .section-kicker { font-family: var(--lcvop-heading-font); color: var(--lcvop-secondary); }

/* Compact navigation can be activated by JS at any width when the menu is too long. */
html.lcvop-nav-compact .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
}
html.lcvop-nav-compact .menu-toggle { display: inline-flex; }
html.lcvop-nav-compact .primary-navigation {
    position: fixed;
    z-index: 80;
    inset: 0 0 0 auto;
    width: min(430px, 92vw);
    padding: calc(var(--lcvop-header-height) + 45px) 32px 38px;
    overflow-x: hidden;
    overflow-y: auto;
    color: var(--lcvop-heading);
    background: var(--lcvop-surface);
    box-shadow: -20px 0 70px rgba(0,0,0,.22);
    transform: translateX(102%);
    transition: transform 320ms cubic-bezier(.4,0,.2,1);
}
html.lcvop-nav-compact .primary-navigation.is-open { transform: translateX(0); }
html.lcvop-nav-compact .primary-navigation .menu { flex-direction: column; align-items: stretch; gap: 0; }
html.lcvop-nav-compact .primary-navigation a { padding: 15px 0; border-bottom: 1px solid var(--lcvop-border); font-family: var(--lcvop-heading-font); font-size: clamp(1.2rem, 4vw, 1.55rem); white-space: normal; }
html.lcvop-nav-compact .primary-navigation a::after { display: none; }
html.lcvop-nav-compact .primary-navigation .sub-menu { position: static; min-width: 0; padding: 4px 0 4px 18px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
html.lcvop-nav-compact .primary-navigation .sub-menu a { font-family: var(--lcvop-body-font); font-size: 1rem; }
html.lcvop-nav-compact .mobile-nav-book-button { display: flex; width: 100%; margin-top: 24px; color: #fff; }
html.lcvop-nav-compact .site-branding { width: min(100%, var(--lcvop-logo-max-width)); }

@media (max-width: 1240px) {
    .header-inner { grid-template-columns: minmax(0, 1fr) auto; }
    .menu-toggle { display: inline-flex; }
    .primary-navigation {
        position: fixed;
        z-index: 80;
        inset: 0 0 0 auto;
        width: min(430px, 92vw);
        padding: calc(var(--lcvop-header-height) + 45px) 32px 38px;
        overflow-x: hidden;
        overflow-y: auto;
        color: var(--lcvop-heading);
        background: var(--lcvop-surface);
        box-shadow: -20px 0 70px rgba(0,0,0,.22);
        transform: translateX(102%);
        transition: transform 320ms cubic-bezier(.4,0,.2,1);
    }
    .primary-navigation.is-open { transform: translateX(0); }
    .primary-navigation .menu { flex-direction: column; align-items: stretch; gap: 0; }
    .primary-navigation a { padding: 15px 0; border-bottom: 1px solid var(--lcvop-border); font-family: var(--lcvop-heading-font); font-size: clamp(1.2rem, 4vw, 1.55rem); white-space: normal; }
    .primary-navigation a::after { display: none; }
    .primary-navigation .sub-menu { position: static; min-width: 0; padding: 4px 0 4px 18px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .primary-navigation .sub-menu a { font-family: var(--lcvop-body-font); font-size: 1rem; }
    .mobile-nav-book-button { display: flex; width: 100%; margin-top: 24px; color: #fff; }
    .header-book-button { display: inline-flex; }
    .no-mobile-header-cta .header-book-button { display: none; }
    .booking-panel-intro { grid-template-columns: minmax(0, 1fr) minmax(180px, auto); }
}

@media (max-width: 782px) {
    .hero-inner { padding-top: calc(var(--lcvop-header-height) + 58px); padding-right: 0; }
    .hero-content h1 { max-width: 16ch; }
    .lcvop-preset-chateau-ivory.home.has-transparent-header .site-header,
    .lcvop-preset-mediterranean-sun.home.has-transparent-header .site-header,
    .lcvop-preset-natural-sand.home.has-transparent-header .site-header,
    .lcvop-preset-alpine-minimal.home.has-transparent-header .site-header { top: 0; }
    .lcvop-preset-lake-blue .site-header { width: calc(100% - 16px); }
    .lcvop-preset-forest-luxury .feature-card:nth-child(2n) { transform: none; }
    .has-vikbooking-theme-styles .booking-panel-form :where(.vbmodhorsearchmaindiv, .vbo-search-mainview form, .vbsearch form, .vbo-search-form, [class*="searchform" i]) > * {
        flex-basis: calc(50% - 8px) !important;
    }
}

@media (max-width: 620px) {
    .site-branding { max-width: min(52vw, var(--lcvop-logo-max-width)); }
    .header-actions { gap: 7px; }
    .header-book-button { display: none !important; }
    .hero-inner { align-items: center; padding-top: calc(var(--lcvop-header-height) + 66px); padding-bottom: 105px; }
    .hero-content { width: 100%; padding-inline: 0; }
    .hero-content h1 { max-width: 100%; font-size: clamp(2.35rem, 12.2vw, 3.8rem); }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .hero-actions .button { width: 100%; }
    .lcvop-preset-forest-luxury .hero-content::before { display: none; }
    .lcvop-preset-botanical-sage .hero-content { padding: 24px 20px; border-radius: 24px 6px 24px 6px; }
    .lcvop-preset-natural-sand .hero-content { padding-left: 18px; }
    .lcvop-preset-burgundy-estate .hero-content { padding: 26px 18px; }
    .booking-panel { overflow: visible; }
    .booking-panel-intro, .booking-panel-form { overflow: visible; }
    .has-vikbooking-theme-styles .booking-panel-form :where(.vbmodhorsearchmaindiv, .vbo-search-mainview form, .vbsearch form, .vbo-search-form, [class*="searchform" i]) > * {
        flex: 1 1 100% !important;
        width: 100% !important;
    }
    .has-vikbooking-theme-styles .booking-panel-form :where(button, input[type="submit"], .btn, .vbmodhorsearchbookdiv) { width: 100% !important; }
    .faq-item summary { grid-template-columns: minmax(0, 1fr) auto; }
}

/* Prevent the off-canvas menu from expanding the document canvas while closed. */
html, body { overflow-x: clip; }

/* Keep the closed drawer inside the viewport; this avoids horizontal scrolling. */
html.lcvop-nav-compact .primary-navigation,
@media (max-width: 1240px) {
}
html.lcvop-nav-compact .primary-navigation {
    transform: none;
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: clip-path 320ms cubic-bezier(.4,0,.2,1), opacity 180ms ease, visibility 0s linear 320ms;
}
html.lcvop-nav-compact .primary-navigation.is-open {
    clip-path: inset(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}
.lcvop-preset-lake-blue.home.has-transparent-header .site-header:not(.is-scrolled),
.lcvop-preset-lake-blue .site-header.is-scrolled {
    left: max(16px, calc((100vw - (var(--lcvop-container) + 56px)) / 2));
    right: max(16px, calc((100vw - (var(--lcvop-container) + 56px)) / 2));
    width: auto;
    margin: 0;
    transform: none;
}

@media (max-width: 1240px) {
    .primary-navigation {
        transform: none;
        clip-path: inset(0 0 0 100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: clip-path 320ms cubic-bezier(.4,0,.2,1), opacity 180ms ease, visibility 0s linear 320ms;
    }
    .primary-navigation.is-open {
        clip-path: inset(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }
}
@media (max-width: 620px) {
    .lcvop-preset-lake-blue.home.has-transparent-header .site-header:not(.is-scrolled),
    .lcvop-preset-lake-blue .site-header.is-scrolled { left: 8px; right: 8px; }
}

/* The drawer CTA must never occupy a desktop navigation row. */
.primary-navigation .mobile-nav-book-button { display: none; }
html.lcvop-nav-compact .primary-navigation .mobile-nav-book-button { display: flex; }
@media (max-width: 1240px) {
    .primary-navigation .mobile-nav-book-button { display: flex; }
}

/* ================================================================
   Version 1.2.0 — responsive desktop, phone and optional PWA layer
   ================================================================ */

:root {
    --lcvop-safe-top: env(safe-area-inset-top, 0px);
    --lcvop-safe-right: env(safe-area-inset-right, 0px);
    --lcvop-safe-bottom: env(safe-area-inset-bottom, 0px);
    --lcvop-safe-left: env(safe-area-inset-left, 0px);
    --lcvop-mobile-dock-height: 68px;
}

@supports (min-height: 100dvh) {
    .site-shell { min-height: 100dvh; }
    .hero-section,
    .hero-inner { min-height: max(var(--hero-height, 88vh), 680px); min-height: max(var(--hero-height, 88dvh), 680px); }
}

.site-topbar,
.site-header,
.site-footer,
.lcvop-mobile-dock {
    padding-right: var(--lcvop-safe-right);
    padding-left: var(--lcvop-safe-left);
}

:where(a, button, input, select, textarea, summary) {
    -webkit-tap-highlight-color: color-mix(in srgb, var(--lcvop-secondary) 28%, transparent);
}

:where(button, .button, a, input, select, textarea, summary):focus-visible {
    outline: 3px solid color-mix(in srgb, var(--lcvop-secondary) 78%, #fff);
    outline-offset: 3px;
}

/* A real scroll container around wide VikBooking calendars and tables. */
.has-vikbooking-theme-styles .lcvop-vikbooking-output {
    overflow-wrap: anywhere;
}
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(.vbo-results-container, .vbo-roomslist, .vbo-availcalendars-cont, .vbo-booking-details-container, .vbo-table-responsive, .table-responsive) {
    max-width: 100%;
}
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(.vbo-table-responsive, .table-responsive),
.has-vikbooking-theme-styles .lcvop-vikbooking-output:has(> table) {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
}
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(input, select, textarea, button) {
    max-width: 100% !important;
}
.has-vikbooking-theme-styles .lcvop-vikbooking-output :where(.ui-datepicker, .flatpickr-calendar, .vbo-datepicker-container) {
    max-width: calc(100vw - 24px) !important;
    z-index: 100000 !important;
}

/* Install control. It is revealed only when the browser can install the app. */
.lcvop-pwa-install {
    position: fixed;
    z-index: 89;
    right: max(18px, calc(18px + var(--lcvop-safe-right)));
    bottom: max(18px, calc(18px + var(--lcvop-safe-bottom)));
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    max-width: min(260px, calc(100vw - 36px));
    padding: 11px 18px;
    border: 1px solid color-mix(in srgb, var(--lcvop-secondary) 52%, transparent);
    border-radius: 999px;
    color: #fff;
    background: color-mix(in srgb, var(--lcvop-primary) 94%, #000);
    box-shadow: 0 18px 48px rgba(0,0,0,.25);
    font-weight: 800;
    line-height: 1.2;
}
.lcvop-pwa-install:hover { color: #fff; transform: translateY(-2px); }
.lcvop-pwa-install[hidden],
.lcvop-pwa-help[hidden],
.lcvop-pwa-help-backdrop[hidden] { display: none !important; }

.lcvop-pwa-help-backdrop {
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(4, 11, 8, .64);
    backdrop-filter: blur(5px);
}
.lcvop-pwa-help {
    position: fixed;
    z-index: 1001;
    left: 50%;
    bottom: max(22px, calc(22px + var(--lcvop-safe-bottom)));
    width: min(520px, calc(100vw - 28px));
    padding: 34px 30px 30px;
    border: 1px solid var(--lcvop-border);
    border-radius: max(18px, var(--lcvop-card-radius));
    color: var(--lcvop-text);
    background: var(--lcvop-surface);
    box-shadow: 0 30px 100px rgba(0,0,0,.36);
    transform: translateX(-50%);
    text-align: center;
}
.lcvop-pwa-help h2 { font-size: clamp(1.65rem, 6vw, 2.35rem); }
.lcvop-pwa-help p { margin-bottom: 0; }
.lcvop-pwa-help-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    background: var(--lcvop-primary);
}
.lcvop-pwa-help-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--lcvop-border);
    border-radius: 50%;
    color: var(--lcvop-heading);
    background: transparent;
}
body.pwa-help-open { overflow: hidden; }

/* Phone app dock. Hidden on desktop, available in the browser and PWA. */
.lcvop-mobile-dock { display: none; }

body.is-offline::after {
    content: "Offline";
    position: fixed;
    z-index: 1200;
    top: max(10px, calc(10px + var(--lcvop-safe-top)));
    left: 50%;
    padding: 7px 13px;
    border-radius: 999px;
    color: #fff;
    background: #8b2f36;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    transform: translateX(-50%);
}

@media (display-mode: standalone) {
    body { overscroll-behavior-y: none; }
    .site-topbar { padding-top: var(--lcvop-safe-top); }
    .home.has-transparent-header .site-header { top: calc(38px + var(--lcvop-safe-top)); }
    .home.has-transparent-header .site-header.is-scrolled,
    .has-sticky-header .site-header { top: var(--lcvop-safe-top); }
    .lcvop-pwa-install { display: none !important; }
}

@media (max-width: 980px) {
    :root { --lcvop-section-space: clamp(62px, 10vw, 96px); }
    body { font-size: 16px; }
    h1 { font-size: clamp(2.45rem, 9vw, 5.1rem); }
    h2 { font-size: clamp(2rem, 7vw, 3.6rem); }
    .lcvop-container { width: min(calc(100% - 30px), var(--lcvop-container)); }
    .topbar-address { max-width: 45vw; }
    .hero-content { width: min(760px, 100%); }
    .booking-panel-intro { grid-template-columns: 1fr; }
    .booking-panel-intro .button { justify-self: start; }
    .gallery-grid { gap: 10px; }
}

@media (max-width: 782px) {
    html { scroll-padding-top: calc(var(--lcvop-header-height) + 16px); }
    body.has-lcvop-mobile-dock { padding-bottom: calc(var(--lcvop-mobile-dock-height) + var(--lcvop-safe-bottom)); }
    body.has-lcvop-mobile-dock .site-footer { margin-bottom: 0; }
    .lcvop-container { width: min(calc(100% - 24px), var(--lcvop-container)); }
    .site-topbar { display: none; }
    .home.has-transparent-header .site-header,
    .admin-bar.home.has-transparent-header .site-header { top: 0; }
    .home.has-transparent-header .site-header.is-scrolled,
    .admin-bar.home.has-transparent-header .site-header.is-scrolled { top: 0; }
    .header-inner { min-height: clamp(68px, var(--lcvop-header-height), 88px); }
    .custom-logo { max-height: min(58px, calc(var(--lcvop-header-height) - 16px)); }
    .primary-navigation,
    html.lcvop-nav-compact .primary-navigation {
        width: min(440px, 94vw);
        padding-top: calc(var(--lcvop-header-height) + var(--lcvop-safe-top) + 28px);
        padding-right: calc(24px + var(--lcvop-safe-right));
        padding-bottom: calc(30px + var(--lcvop-safe-bottom));
        padding-left: calc(24px + var(--lcvop-safe-left));
    }
    .hero-section,
    .hero-inner { min-height: max(680px, 92svh); }
    .hero-inner { padding-top: calc(var(--lcvop-header-height) + 48px); padding-bottom: 112px; }
    .hero-badge { max-width: 100%; white-space: normal; }
    .hero-text { font-size: 1.03rem; }
    .hero-scroll { display: none; }
    .booking-panel { margin-top: -58px; }
    .booking-panel-intro,
    .booking-panel-form { padding: clamp(22px, 6vw, 34px); }
    .content-card,
    .vikbooking-content { width: min(calc(100% - 16px), var(--lcvop-container)); }
    .has-vikbooking-theme-styles .lcvop-vikbooking-output :where(input, select, textarea, button) {
        min-height: 48px !important;
        font-size: 16px !important;
    }
    .has-vikbooking-theme-styles .lcvop-vikbooking-output :where(table) { min-width: 620px; }

    .lcvop-mobile-dock {
        position: fixed;
        z-index: 88;
        right: 0;
        bottom: 0;
        left: 0;
        min-height: calc(var(--lcvop-mobile-dock-height) + var(--lcvop-safe-bottom));
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: start;
        padding-top: 7px;
        padding-bottom: var(--lcvop-safe-bottom);
        border-top: 1px solid color-mix(in srgb, var(--lcvop-border) 85%, transparent);
        color: var(--lcvop-text);
        background: color-mix(in srgb, var(--lcvop-surface) 94%, transparent);
        box-shadow: 0 -12px 38px rgba(0,0,0,.13);
        backdrop-filter: blur(18px);
        transition: transform 220ms ease, opacity 220ms ease;
    }
    .lcvop-mobile-dock a {
        min-width: 0;
        min-height: 54px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 4px;
        color: inherit;
        font-size: .68rem;
        font-weight: 800;
        line-height: 1;
        text-decoration: none;
    }
    .lcvop-mobile-dock .lcvop-icon { width: 21px; height: 21px; }
    .lcvop-mobile-dock a.is-primary .lcvop-icon {
        width: 34px;
        height: 34px;
        margin-top: -22px;
        padding: 8px;
        border-radius: 50%;
        color: #fff;
        background: var(--lcvop-primary);
        box-shadow: 0 9px 24px color-mix(in srgb, var(--lcvop-primary) 38%, transparent);
    }
    .lcvop-mobile-dock a.is-active { color: var(--lcvop-primary); }
    .lcvop-template-dark .lcvop-mobile-dock a.is-active { color: var(--lcvop-secondary); }
    body.is-form-focused .lcvop-mobile-dock { opacity: 0; pointer-events: none; transform: translateY(110%); }
    body.has-lcvop-mobile-dock .lcvop-pwa-install {
        bottom: calc(var(--lcvop-mobile-dock-height) + var(--lcvop-safe-bottom) + 12px);
    }
}

@media (max-width: 620px) {
    :root { --lcvop-section-space: 66px; }
    body { line-height: 1.62; }
    h1 { font-size: clamp(2.25rem, 12vw, 3.65rem); }
    h2 { font-size: clamp(1.9rem, 10vw, 3rem); }
    .lcvop-container { width: min(calc(100% - 20px), var(--lcvop-container)); }
    .site-title { font-size: clamp(1.1rem, 5.8vw, 1.5rem); }
    .menu-toggle { width: 46px; height: 46px; }
    .hero-inner { padding-right: 0; }
    .hero-content h1 { text-wrap: pretty; }
    .hero-actions { gap: 10px; }
    .hero-actions .button { min-height: 52px; }
    .section-heading { margin-bottom: 34px; }
    .section-lead { font-size: 1rem; }
    .booking-panel { border-radius: min(24px, var(--lcvop-card-radius)); }
    .booking-panel-intro h2 { font-size: clamp(1.75rem, 9vw, 2.5rem); }
    .feature-grid,
    .testimonials-grid,
    .stats-grid { gap: 14px; }
    .feature-card,
    .testimonial-card,
    .stat-card,
    .contact-card { padding: 24px 20px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 145px; }
    .gallery-grid > :first-child { grid-column: 1 / -1; grid-row: span 2; }
    .footer-main { gap: 30px; padding-top: 58px; padding-bottom: 48px; }
    .footer-bottom .lcvop-container { min-height: 80px; }
    .lcvop-pwa-install { right: 10px; max-width: calc(100vw - 20px); }
    .lcvop-pwa-help { padding: 30px 22px 26px; }
}

@media (max-height: 560px) and (orientation: landscape) {
    .hero-section,
    .hero-inner { min-height: 620px; }
    .hero-inner { align-items: center; padding-top: calc(var(--lcvop-header-height) + 26px); padding-bottom: 72px; }
    .hero-badge { margin-bottom: 12px; }
    .hero-content h1 { margin-bottom: 14px; font-size: clamp(2.15rem, 7vw, 3.6rem); }
    .hero-text { margin-bottom: 18px; }
    .lcvop-mobile-dock { display: none; }
    body.has-lcvop-mobile-dock { padding-bottom: 0; }
}

@media (hover: none) and (pointer: coarse) {
    .button:hover,
    .wp-element-button:hover,
    input[type="submit"]:hover,
    button[type="submit"]:hover,
    .feature-card:hover,
    .gallery-item:hover img { transform: none; }
}

/* Keep hero content aligned with every other section on wide screens. */
.hero-inner.lcvop-container { width: min(calc(100% - 40px), var(--lcvop-container)); }
@media (max-width: 980px) {
    .hero-inner.lcvop-container { width: min(calc(100% - 30px), var(--lcvop-container)); }
}
@media (max-width: 782px) {
    .hero-inner.lcvop-container { width: min(calc(100% - 24px), var(--lcvop-container)); }
}
@media (max-width: 620px) {
    .hero-inner.lcvop-container { width: min(calc(100% - 20px), var(--lcvop-container)); }
}

/* Version 1.3.0: official branding and completely editable content imagery. */
.topbar-right { display: flex; align-items: center; justify-content: flex-end; gap: 22px; min-width: 0; }
.topbar-message { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.lcvop-brand-link { display: inline-flex; align-items: center; max-width: 100%; }
.lcvop-brand-logo { width: auto; height: auto; object-fit: contain; }
.site-branding .lcvop-brand-logo--header { max-height: calc(var(--lcvop-header-height) - 12px); }
.footer-brand .lcvop-brand-logo--footer { width: min(220px, 100%); max-height: none; filter: none; }
.footer-description { max-width: 390px; margin-top: 18px; }
.footer-description > *:last-child { margin-bottom: 0; }

.hero-section {
    background-image: var(--hero-desktop-image, radial-gradient(circle at 80% 20%, rgba(217,179,108,.25), transparent 34%)), linear-gradient(135deg, #183b2b, #0d2118);
    background-position: var(--hero-position, center center);
}
.hero-brand-mark { width: min(var(--hero-brand-width, 190px), 42vw); margin-bottom: 24px; padding: 10px; border-radius: 50%; background: rgba(255,255,255,.9); box-shadow: 0 18px 45px rgba(0,0,0,.2); }
.hero-brand-mark .custom-logo-link { display: block; }
.hero-brand-mark .lcvop-brand-logo { display: block; width: 100%; max-width: none; max-height: none; }

.onepage-section.has-section-background,
.site-footer.has-section-background {
    background-image: linear-gradient(color-mix(in srgb, var(--lcvop-bg) 91%, transparent), color-mix(in srgb, var(--lcvop-bg) 91%, transparent)), var(--lcvop-section-image);
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
}
.onepage-section--surface.has-section-background {
    background-image: linear-gradient(color-mix(in srgb, var(--lcvop-surface) 91%, transparent), color-mix(in srgb, var(--lcvop-surface) 91%, transparent)), var(--lcvop-section-image);
}
.onepage-section--dark.has-section-background,
.gallery-section.has-section-background,
.contact-section.has-section-background {
    background-image: linear-gradient(rgba(8,18,14,.82), rgba(8,18,14,.88)), var(--lcvop-section-image);
}
.site-footer.has-section-background {
    background-image: linear-gradient(rgba(7,15,11,.90), rgba(7,15,11,.94)), var(--lcvop-section-image);
}

.feature-card.has-feature-image { padding-top: clamp(26px, 3.2vw, 40px); }
.feature-image { margin: calc(clamp(26px, 3.2vw, 40px) * -1) calc(clamp(26px, 3.2vw, 40px) * -1) 28px; overflow: hidden; aspect-ratio: 16 / 10; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms ease; }
.feature-card:hover .feature-image img { transform: scale(1.04); }
.feature-copy > *:last-child { margin-bottom: 0; }
.feature-link { position: relative; z-index: 2; margin-top: 22px; }

.gallery-mosaic { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: repeat(3, minmax(160px, 19vw)); max-height: none; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2), .gallery-item:nth-child(7) { grid-column: span 2; }
.gallery-item:nth-child(n+6) { display: block; }
.gallery-item { position: relative; min-height: 0; }
.gallery-item figcaption { position: absolute; right: 12px; bottom: 12px; left: 12px; padding: 9px 12px; border-radius: 10px; color: #fff; background: rgba(0,0,0,.55); font-size: .8rem; backdrop-filter: blur(8px); }

.testimonial-avatar { width: 64px; height: 64px; margin-bottom: 18px; overflow: hidden; border: 3px solid color-mix(in srgb, var(--lcvop-secondary) 55%, transparent); border-radius: 50%; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card footer { display: flex; flex-direction: column; gap: 4px; }
.testimonial-card footer strong { color: var(--lcvop-heading); }
.testimonial-card footer span { font-size: .72rem; font-weight: 600; letter-spacing: .04em; opacity: .72; text-transform: none; }

@media (max-width: 980px) {
    .hero-section { background-image: var(--hero-mobile-image, var(--hero-desktop-image)); background-position: var(--hero-mobile-position, center center); }
    .gallery-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; grid-auto-rows: minmax(190px, 34vw); }
    .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
    .gallery-item:nth-child(2), .gallery-item:nth-child(7) { grid-column: auto; }
}

@media (max-width: 620px) {
    .topbar-right { display: none; }
    .site-branding .lcvop-brand-logo--header { max-height: min(64px, calc(var(--lcvop-header-height) - 8px)); }
    .hero-brand-mark { width: min(var(--hero-brand-width, 160px), 44vw); }
    .gallery-mosaic { display: grid; grid-template-columns: 1fr; grid-auto-rows: minmax(220px, 68vw); }
    .gallery-item:first-child, .gallery-item:nth-child(2), .gallery-item:nth-child(7) { grid-column: auto; grid-row: auto; }
    .feature-image { aspect-ratio: 16 / 9; }
}

.lcvop-brand-logo--header-light { display: none; }
.home.has-transparent-header .site-header:not(.is-scrolled) .lcvop-brand-logo--header-dark { display: none; }
.home.has-transparent-header .site-header:not(.is-scrolled) .lcvop-brand-logo--header-light { display: block; }
