/*
Theme Name: Villa Thalassa
Theme URI: https://example.com/villa-thalassa
Author: Custom build from Figma "Luxury Villa Website Design"
Author URI: https://example.com
Description: Editorial-luxury single-villa theme (ACF-driven). Every section of the one-page site — hero, estate story, the villa's spaces, experiences, gallery, location and the reservation enquiry — is managed in the WordPress admin via the free Advanced Custom Fields plugin. Each image accepts either a media upload or a pasted URL. Warm Aegean palette, Playfair Display + Jost typography, sharp editorial edges, scroll-reveal motion.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thalassa
Tags: hotel, hospitality, villa, editorial, one-page, custom-colors, full-width-template, translation-ready
*/

/* ============================================================
   DESIGN TOKENS  (ported from the Figma theme.css)
   ============================================================ */
:root {
	--vt-background: #FAF8F5;
	--vt-foreground: #2C2825;
	--vt-card: #F5F0E8;
	--vt-secondary: #EDE8DF;
	--vt-muted: #E8E1D5;
	--vt-muted-foreground: #7A7268;
	--vt-text: #4A4540;
	--vt-accent: #C4B49A;
	--vt-border: rgba(44, 40, 37, 0.12);
	--vt-light: #FAF8F5;
	--vt-dark-scrim: rgba(20, 16, 12, 0.55);

	--vt-serif: 'Playfair Display', Georgia, serif;
	--vt-sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--vt-nav-h: 5rem;
	--vt-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
	--vt-max: 1440px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--vt-sans);
	font-weight: 300;
	background-color: var(--vt-background);
	color: var(--vt-foreground);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
::selection { background-color: var(--vt-accent); color: var(--vt-foreground); }
body::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; scrollbar-width: none; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.vt-container { max-width: var(--vt-max); margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }
@media (min-width: 768px) { .vt-container { padding-left: 5rem; padding-right: 5rem; } }

.vt-section { padding-top: 8rem; padding-bottom: 8rem; }
@media (min-width: 768px) { .vt-section { padding-top: 10rem; padding-bottom: 10rem; } }
.vt-bg-cream { background-color: var(--vt-background); }
.vt-bg-card  { background-color: var(--vt-card); }
.vt-bg-sec   { background-color: var(--vt-secondary); }

.vt-eyebrow {
	font-family: var(--vt-sans);
	font-size: 0.6rem;
	font-weight: 400;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--vt-muted-foreground);
}
.vt-rule { width: 40px; height: 1px; background-color: var(--vt-accent); }

.vt-fade { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--vt-ease), transform 1s var(--vt-ease); }
.vt-fade.is-visible { opacity: 1; transform: translateY(0); }

.vt-serif { font-family: var(--vt-serif); }
.vt-h2 {
	font-family: var(--vt-serif);
	font-size: clamp(2.2rem, 4vw, 3.6rem);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: -0.01em;
	color: var(--vt-foreground);
}
.vt-h2 em, .vt-serif em { font-style: italic; }

/* ============================================================
   NAV
   ============================================================ */
.vt-nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 50;
	transition: background-color 0.7s var(--vt-ease), backdrop-filter 0.7s var(--vt-ease), border-color 0.7s var(--vt-ease);
	background-color: transparent;
	border-bottom: 1px solid transparent;
}
.vt-nav.is-scrolled {
	background-color: rgba(250, 248, 245, 0.96);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(44, 40, 37, 0.08);
}
.vt-nav__inner {
	max-width: var(--vt-max); margin: 0 auto; height: var(--vt-nav-h);
	padding-left: 2rem; padding-right: 2rem;
	display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .vt-nav__inner { padding-left: 4rem; padding-right: 4rem; } }
.vt-brand { display: flex; flex-direction: column; line-height: 1; text-align: left; background: none; border: none; padding: 0; }
.vt-brand__name { font-family: var(--vt-serif); font-size: 1.1rem; font-weight: 500; letter-spacing: 0.12em; color: var(--vt-light); transition: color 0.5s var(--vt-ease); }
.vt-brand__loc  { font-family: var(--vt-sans); font-size: 0.6rem; font-weight: 300; letter-spacing: 0.3em; color: rgba(250,248,245,0.7); margin-top: 2px; transition: color 0.5s var(--vt-ease); text-transform: uppercase; }
.vt-nav.is-scrolled .vt-brand__name { color: var(--vt-foreground); }
.vt-nav.is-scrolled .vt-brand__loc { color: var(--vt-muted-foreground); }

.vt-nav__links { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 768px) { .vt-nav__links { display: flex; } }
.vt-nav__link { font-family: var(--vt-sans); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--vt-light); background: none; border: none; transition: opacity 0.4s var(--vt-ease), color 0.5s var(--vt-ease); }
.vt-nav__link:hover { opacity: 0.6; }
.vt-nav.is-scrolled .vt-nav__link { color: var(--vt-foreground); }
.vt-nav__cta { font-family: var(--vt-sans); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--vt-foreground); background-color: var(--vt-light); border: none; padding: 0.65rem 1.6rem; transition: all 0.4s var(--vt-ease); }
.vt-nav.is-scrolled .vt-nav__cta { color: var(--vt-light); background-color: var(--vt-foreground); }
.vt-nav__cta:hover { opacity: 0.85; }

.vt-burger { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; background: none; border: none; }
@media (min-width: 768px) { .vt-burger { display: none; } }
.vt-burger span { display: block; width: 24px; height: 1px; background-color: var(--vt-light); transition: transform 0.3s var(--vt-ease); }
.vt-nav.is-scrolled .vt-burger span { background-color: var(--vt-foreground); }

.vt-mobile { position: fixed; inset: 0; z-index: 40; display: flex; flex-direction: column; justify-content: center; align-items: center; background-color: var(--vt-background); opacity: 0; pointer-events: none; transform: translateY(-16px); transition: opacity 0.5s var(--vt-ease), transform 0.5s var(--vt-ease); }
.vt-mobile.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.vt-mobile__links { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.vt-mobile__link { font-family: var(--vt-serif); font-size: 2rem; font-weight: 400; color: var(--vt-foreground); background: none; border: none; }
.vt-mobile__cta { font-family: var(--vt-sans); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--vt-light); background-color: var(--vt-foreground); border: none; padding: 1rem 2.5rem; margin-top: 1rem; }
@media (min-width: 768px) { .vt-mobile { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.vt-hero { position: relative; width: 100%; overflow: hidden; height: 100svh; min-height: 600px; }
.vt-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #1c1a17; opacity: 0; transition: opacity 1s ease; }
.vt-hero__img.is-loaded { opacity: 1; }
.vt-hero__scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20,16,12,0.28) 0%, rgba(20,16,12,0.12) 40%, rgba(20,16,12,0.55) 100%); }
.vt-hero__body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 2rem 6rem; }
@media (min-width: 768px) { .vt-hero__body { padding: 0 5rem 8rem; } }
.vt-hero__eyebrow { font-family: var(--vt-sans); font-size: 0.65rem; font-weight: 300; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(250,248,245,0.7); margin-bottom: 1.5rem; }
.vt-hero__title { font-family: var(--vt-serif); font-size: clamp(2.8rem, 6.5vw, 5.5rem); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; color: var(--vt-light); max-width: 48rem; }
.vt-hero__text { font-family: var(--vt-sans); font-size: 0.88rem; font-weight: 300; line-height: 1.75; letter-spacing: 0.04em; color: rgba(250,248,245,0.75); margin-top: 1.5rem; max-width: 24rem; }
.vt-hero__actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.vt-btn-solid { font-family: var(--vt-sans); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--vt-foreground); background-color: var(--vt-light); border: none; padding: 0.9rem 2.2rem; transition: opacity 0.3s var(--vt-ease); }
.vt-btn-solid:hover { opacity: 0.75; }
.vt-btn-ghost-light { font-family: var(--vt-sans); font-size: 0.68rem; font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,248,245,0.8); background: none; border: none; transition: opacity 0.3s var(--vt-ease); }
.vt-btn-ghost-light:hover { opacity: 0.6; }
.vt-hero__scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--vt-light)); opacity: 0.6; animation: vt-pulse 2.4s ease-in-out infinite; }
@keyframes vt-pulse { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.7; } }

/* ============================================================
   ABOUT
   ============================================================ */
.vt-about__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 768px) { .vt-about__grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.vt-about__media { position: relative; overflow: hidden; background: var(--vt-muted); }
.vt-about__media img { width: 100%; object-fit: cover; height: clamp(400px, 70vh, 740px); }
.vt-about__caption { position: absolute; bottom: 0; left: 0; padding: 1rem 1.5rem; background: linear-gradient(to top, rgba(20,16,12,0.5), transparent); }
.vt-about__caption p { font-family: var(--vt-sans); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(250,248,245,0.7); }
.vt-about__text { display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .vt-about__text { padding-top: 4rem; } }
.vt-about__title { font-family: var(--vt-serif); font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 400; line-height: 1.18; letter-spacing: -0.01em; color: var(--vt-foreground); margin-bottom: 2.5rem; }
.vt-about__p { font-family: var(--vt-sans); font-size: 0.94rem; font-weight: 300; line-height: 1.85; letter-spacing: 0.02em; color: var(--vt-text); margin-bottom: 1.5rem; }
.vt-stats { display: flex; flex-wrap: wrap; gap: 3rem; margin-top: 1rem; }
.vt-stat__value { font-family: var(--vt-serif); font-size: 1.8rem; font-weight: 400; color: var(--vt-foreground); }
.vt-stat__label { font-family: var(--vt-sans); font-size: 0.65rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--vt-muted-foreground); margin-top: 4px; }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.vt-quote { padding-top: 7rem; padding-bottom: 7rem; background-color: var(--vt-secondary); }
@media (min-width: 768px) { .vt-quote { padding-top: 9rem; padding-bottom: 9rem; } }
.vt-quote__inner { max-width: 900px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem; text-align: center; }
@media (min-width: 768px) { .vt-quote__inner { padding-left: 5rem; padding-right: 5rem; } }
.vt-quote__text { font-family: var(--vt-serif); font-size: clamp(1.5rem, 3.5vw, 2.9rem); font-style: italic; font-weight: 400; line-height: 1.45; letter-spacing: -0.01em; color: var(--vt-foreground); }
.vt-quote__source { font-family: var(--vt-sans); font-size: 0.65rem; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--vt-muted-foreground); margin-top: 2rem; }

/* ============================================================
   SPACES (THE VILLA)
   ============================================================ */
.vt-spaces__head { display: flex; flex-direction: column; margin-bottom: 5rem; }
@media (min-width: 768px) { .vt-spaces__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.vt-spaces__intro { font-family: var(--vt-sans); font-size: 0.84rem; font-weight: 300; line-height: 1.8; letter-spacing: 0.02em; color: var(--vt-muted-foreground); max-width: 20rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .vt-spaces__intro { margin-top: 0; } }
.vt-spaces__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .vt-spaces__grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.vt-space__media { position: relative; overflow: hidden; background: var(--vt-muted); aspect-ratio: 3/4; cursor: default; }
.vt-space__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--vt-ease); }
.vt-space__card:hover .vt-space__media img { transform: scale(1.04); }
.vt-space__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,16,12,0.45) 0%, transparent 50%); transition: background 0.5s ease; }
.vt-space__card:hover .vt-space__scrim { background: linear-gradient(to top, rgba(20,16,12,0.65) 0%, transparent 55%); }
.vt-space__cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.75rem; }
.vt-space__size { font-family: var(--vt-sans); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(250,248,245,0.65); margin-bottom: 6px; }
.vt-space__name { font-family: var(--vt-serif); font-size: 1.3rem; font-weight: 400; color: var(--vt-light); line-height: 1.25; }
.vt-space__tagline { font-family: var(--vt-sans); font-size: 0.8rem; font-weight: 300; line-height: 1.65; letter-spacing: 0.02em; color: rgba(250,248,245,0.8); margin-top: 0.75rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.5s ease, opacity 0.4s ease; }
.vt-space__card:hover .vt-space__tagline { max-height: 80px; opacity: 1; }
.vt-space__desc { font-family: var(--vt-sans); font-size: 0.82rem; font-weight: 300; line-height: 1.7; letter-spacing: 0.02em; color: var(--vt-text); margin-top: 1.25rem; padding: 0 0.25rem; }
.vt-spaces__cta { margin-top: 4rem; display: flex; justify-content: center; }
.vt-btn-outline { font-family: var(--vt-sans); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--vt-foreground); background: none; border: 1px solid rgba(44,40,37,0.3); padding: 0.9rem 2.4rem; transition: opacity 0.3s var(--vt-ease); }
.vt-btn-outline:hover { opacity: 0.6; }

/* ============================================================
   EXPERIENCES
   ============================================================ */
.vt-exp__head { margin-bottom: 5rem; }
.vt-exp__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .vt-exp__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
.vt-exp__card { position: relative; overflow: hidden; background: var(--vt-muted); height: clamp(300px, 35vw, 480px); }
.vt-exp__card.is-span { height: clamp(280px, 42vw, 560px); }
@media (min-width: 768px) { .vt-exp__card.is-span { grid-column: span 2; } }
.vt-exp__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--vt-ease); }
.vt-exp__card:hover img { transform: scale(1.05); }
.vt-exp__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,16,12,0.72) 0%, rgba(20,16,12,0.1) 55%, transparent 100%); }
.vt-exp__body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; max-width: 460px; }
@media (min-width: 768px) { .vt-exp__body { padding: 3rem; } }
.vt-exp__card.is-span .vt-exp__body { max-width: 680px; }
.vt-exp__label { font-family: var(--vt-sans); font-size: 0.58rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(250,248,245,0.55); margin-bottom: 10px; }
.vt-exp__title { font-family: var(--vt-serif); font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 400; color: var(--vt-light); line-height: 1.2; margin-bottom: 12px; }
.vt-exp__card.is-span .vt-exp__title { font-size: clamp(1.5rem, 2.8vw, 2.4rem); }
.vt-exp__copy { font-family: var(--vt-sans); font-size: 0.82rem; font-weight: 300; line-height: 1.72; letter-spacing: 0.02em; color: rgba(250,248,245,0.78); }

/* ============================================================
   GALLERY
   ============================================================ */
.vt-gallery__head { margin-bottom: 4rem; }

/* Masonry: CSS columns, so every photo keeps its own height.
   One column on phones, two on tablets, three on desktop. */
.vt-gallery__masonry { column-count: 1; column-gap: 0.75rem; }
@media (min-width: 600px) { .vt-gallery__masonry { column-count: 2; } }
@media (min-width: 1024px) { .vt-gallery__masonry { column-count: 3; column-gap: 1rem; } }

.vt-gallery__item { position: relative; display: block; width: 100%; padding: 0; border: none; background: var(--vt-muted); overflow: hidden; cursor: pointer; break-inside: avoid; -webkit-column-break-inside: avoid; margin: 0 0 0.75rem; }
@media (min-width: 1024px) { .vt-gallery__item { margin-bottom: 1rem; } }
.vt-gallery__item img { display: block; width: 100%; height: auto; transition: transform 0.8s var(--vt-ease); }
.vt-gallery__item:hover img { transform: scale(1.04); }
.vt-gallery__item:focus-visible { outline: 2px solid var(--vt-light); outline-offset: 3px; }
.vt-gallery__hover { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(20,16,12,0.2); opacity: 0; transition: opacity 0.4s ease; }
.vt-gallery__item:hover .vt-gallery__hover,
.vt-gallery__item:focus-visible .vt-gallery__hover { opacity: 1; }
.vt-gallery__hover span { font-family: var(--vt-sans); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(250,248,245,0.9); }

.vt-lightbox { position: fixed; inset: 0; z-index: 60; display: none; align-items: center; justify-content: center; padding: 1rem; background-color: rgba(20,16,12,0.94); }
@media (min-width: 768px) { .vt-lightbox { padding: 3rem 4.5rem; } }
.vt-lightbox.is-open { display: flex; }
.vt-lightbox__figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 1rem; max-height: 100%; }
.vt-lightbox img { max-width: 100%; max-height: calc(100vh - 9rem); object-fit: contain; box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.vt-lightbox__caption { display: flex; align-items: center; gap: 1rem; font-family: var(--vt-sans); font-size: 0.7rem; font-weight: 300; letter-spacing: 0.08em; color: rgba(250,248,245,0.7); text-align: center; }
.vt-lightbox__count { letter-spacing: 0.2em; opacity: 0.6; white-space: nowrap; }
.vt-lightbox__close { position: absolute; top: 1.5rem; right: 2rem; font-family: var(--vt-sans); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--vt-light); background: none; border: none; opacity: 0.6; cursor: pointer; transition: opacity 0.3s ease; }
.vt-lightbox__close:hover { opacity: 1; }
.vt-lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; font-size: 2rem; line-height: 1; color: var(--vt-light); background: none; border: none; opacity: 0.5; cursor: pointer; transition: opacity 0.3s ease; }
.vt-lightbox__nav:hover { opacity: 1; }
.vt-lightbox__nav--prev { left: 0.25rem; }
.vt-lightbox__nav--next { right: 0.25rem; }
@media (min-width: 768px) { .vt-lightbox__nav--prev { left: 1rem; } .vt-lightbox__nav--next { right: 1rem; } }

/* ============================================================
   LOCATION
   ============================================================ */
.vt-loc__grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .vt-loc__grid { grid-template-columns: 4fr 6fr; gap: 6rem; } }
.vt-loc__title { font-family: var(--vt-serif); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 400; line-height: 1.14; letter-spacing: -0.01em; color: var(--vt-foreground); margin-bottom: 2rem; }
.vt-loc__p { font-family: var(--vt-sans); font-size: 0.94rem; font-weight: 300; line-height: 1.85; letter-spacing: 0.02em; color: var(--vt-text); margin-bottom: 1.5rem; }
.vt-loc__dists { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; }
.vt-loc__place { font-family: var(--vt-sans); font-size: 0.65rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--vt-muted-foreground); margin-bottom: 4px; }
.vt-loc__dist { font-family: var(--vt-serif); font-size: 1.25rem; font-weight: 400; color: var(--vt-foreground); }
.vt-loc__media { position: relative; overflow: hidden; background: var(--vt-muted); }
.vt-loc__media img { width: 100%; object-fit: cover; height: clamp(380px, 65vh, 680px); }
.vt-loc__coords { position: absolute; top: 1.5rem; left: 1.5rem; background-color: rgba(250,248,245,0.92); padding: 1rem 1.4rem; backdrop-filter: blur(8px); }
.vt-loc__coords-l { font-family: var(--vt-sans); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--vt-muted-foreground); margin-bottom: 4px; }
.vt-loc__coords-v { font-family: var(--vt-serif); font-size: 0.95rem; font-weight: 400; color: var(--vt-foreground); }

/* ============================================================
   AVAILABILITY (booking)
   ============================================================ */
.vt-avail { position: relative; overflow: hidden; min-height: 80vh; }
.vt-avail__bg { position: absolute; inset: 0; background: #1c150f; }
.vt-avail__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.vt-avail__bg-scrim { position: absolute; inset: 0; background-color: rgba(20,14,10,0.55); }
.vt-avail__inner { position: relative; z-index: 10; display: flex; align-items: center; justify-content: center; min-height: 80vh; padding: 6rem 2rem; }
@media (min-width: 768px) { .vt-avail__inner { padding: 6rem 5rem; } }
.vt-avail__box { width: 100%; max-width: 42rem; }
.vt-avail__eyebrow { font-family: var(--vt-sans); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(250,248,245,0.55); margin-bottom: 1.5rem; }
.vt-avail__title { font-family: var(--vt-serif); font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; color: var(--vt-light); margin-bottom: 1rem; }
.vt-avail__text { font-family: var(--vt-sans); font-size: 0.88rem; font-weight: 300; line-height: 1.8; letter-spacing: 0.02em; color: rgba(250,248,245,0.65); margin-bottom: 3rem; }
.vt-avail__form { display: flex; flex-direction: column; gap: 1rem; }
.vt-avail__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .vt-avail__row { grid-template-columns: 1fr 1fr; } }
.vt-input { font-family: var(--vt-sans); font-size: 0.84rem; font-weight: 300; letter-spacing: 0.04em; color: var(--vt-light); background-color: rgba(250,248,245,0.1); border: 1px solid rgba(250,248,245,0.2); padding: 1rem 1.2rem; outline: none; width: 100%; transition: border-color 0.2s ease; }
.vt-input::placeholder { color: rgba(250,248,245,0.4); }
.vt-input:focus { border-color: rgba(250,248,245,0.55); }
select.vt-input option { color: #2C2825; }
.vt-avail__submit { margin-top: 0.5rem; align-self: flex-start; font-family: var(--vt-sans); font-size: 0.7rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--vt-foreground); background-color: var(--vt-light); border: none; padding: 1.05rem 2.8rem; transition: opacity 0.3s var(--vt-ease); }
.vt-avail__submit:hover { opacity: 0.75; }
.vt-avail__thanks { text-align: center; }
.vt-avail__thanks h2 { font-family: var(--vt-serif); font-style: italic; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; line-height: 1.15; color: var(--vt-light); }
.vt-avail__thanks p { font-family: var(--vt-sans); font-size: 0.9rem; font-weight: 300; line-height: 1.8; letter-spacing: 0.03em; color: rgba(250,248,245,0.7); margin-top: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.vt-footer { padding-top: 5rem; padding-bottom: 5rem; background-color: var(--vt-foreground); border-top: 1px solid rgba(250,248,245,0.08); }
@media (min-width: 768px) { .vt-footer { padding-top: 7rem; padding-bottom: 7rem; } }
.vt-footer__top { display: grid; grid-template-columns: 1fr; gap: 4rem; margin-bottom: 5rem; }
@media (min-width: 768px) { .vt-footer__top { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.vt-footer__brand-name { font-family: var(--vt-serif); font-size: 1.2rem; font-weight: 500; letter-spacing: 0.1em; color: var(--vt-light); margin-bottom: 6px; }
.vt-footer__brand-loc { font-family: var(--vt-sans); font-size: 0.6rem; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(250,248,245,0.4); margin-bottom: 1.5rem; }
.vt-footer__tagline { font-family: var(--vt-sans); font-size: 0.82rem; font-weight: 300; line-height: 1.8; letter-spacing: 0.02em; color: rgba(250,248,245,0.5); max-width: 260px; }
.vt-footer__h { font-family: var(--vt-sans); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(250,248,245,0.3); margin-bottom: 1.5rem; }
.vt-footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.vt-footer__link { font-family: var(--vt-sans); font-size: 0.84rem; font-weight: 300; letter-spacing: 0.04em; color: rgba(250,248,245,0.65); background: none; border: none; text-align: left; padding: 0; transition: opacity 0.2s ease; }
.vt-footer__link:hover { opacity: 0.6; }
.vt-footer__cl { font-family: var(--vt-sans); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,248,245,0.3); margin-bottom: 2px; }
.vt-footer__cv { font-family: var(--vt-sans); font-size: 0.84rem; font-weight: 300; letter-spacing: 0.02em; color: rgba(250,248,245,0.6); margin-bottom: 0.75rem; }
.vt-footer__divider { height: 1px; background-color: rgba(250,248,245,0.08); margin-bottom: 2rem; }
.vt-footer__bottom { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .vt-footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.vt-footer__copy { font-family: var(--vt-sans); font-size: 0.68rem; font-weight: 300; letter-spacing: 0.06em; color: rgba(250,248,245,0.25); }
.vt-footer__legal { display: flex; gap: 2rem; }
.vt-footer__legal a { font-family: var(--vt-sans); font-size: 0.65rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,248,245,0.3); transition: opacity 0.2s ease; }
.vt-footer__legal a:hover { opacity: 0.6; }

/* WP admin bar offset + ACF notice */
.admin-bar .vt-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .vt-nav { top: 46px; } }
.vt-acf-notice code { background: #f0efe9; padding: 1px 5px; }
