/*!
 * Villa Kingfisher · Shared Styles v3.0
 * Exact nav/footer/FAB match met gallery-redesign.html
 */

/* ─── TOKENS ──────────────────────────────────── */
:root {
  --ink:     #0A2540;
  --navy:    #1A3A52;
  --gold:    #8FA6BC;
  --gold-ink: #41576E;
  --sage:    #5A7B6F;
  --mute:    #62736C;
  --cream:   #F1F4F7;
  --cream-2: #E7ECF1;
  --paper:   #FFFFFF;
  --line:    rgba(10,37,64,.10);

  --f-serif: 'Playfair Display', Georgia, serif;
  --f-sans:  'Inter', system-ui, sans-serif;

  --gap: clamp(24px, 5vw, 84px);

  /* nav height — desktop: logo row + rule + menu */
  --nav-h: 118px;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans); font-weight: 300;
  line-height: 1.7; color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── HEADING LINE BALANCE (site-wide) ───────── */
/* Balances multi-line headings so no single word is left orphaned on the last line */
h1, h2, h3, h4,
[class*="__title"], .vk-sect-title, .vk-cta__title, .vk-hero__title, .vk-hero__subtitle {
  text-wrap: balance;
}

/* ─── CONTAINER ──────────────────────────────── */
.vk-w        { max-width: 1400px; margin: 0 auto; padding: 0 var(--gap); }
.vk-w--mid   { max-width: 1000px; margin: 0 auto; padding: 0 var(--gap); }
.vk-w--narrow{ max-width: 760px;  margin: 0 auto; padding: 0 var(--gap); }

/* ─────────────────────────────────────────────────────────────────────
   NAV  (exact match gallery-redesign.html)
   ───────────────────────────────────────────────────────────────────── */
.villa-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding-top: 28px;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(9,38,64,.06);
  transition: padding .35s ease, box-shadow .4s ease;
}
.villa-nav.scrolled {
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(9,38,64,.08);
  padding-top: 4px;
}

/* Logo row */
.villa-nav__logo-row {
  text-align: center;
  padding-bottom: 13px;
  position: relative;
}
.villa-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.villa-nav__logo-icon {
  width: 46px; height: 46px;
  flex-shrink: 0; opacity: 0.92;
  transition: width .35s ease, height .35s ease, opacity 0.3s;
}
.villa-nav__logo:hover .villa-nav__logo-icon { opacity: 1; }
.villa-nav__logo-icon svg circle,
.villa-nav__logo-icon svg path { stroke: #092640; }
.villa-nav__logo-text {
  display: flex; flex-direction: column;
  gap: 5px; text-align: left;
}
.villa-nav__logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #092640; white-space: nowrap; line-height: 1;
  transition: font-size .35s ease;
}
.villa-nav__logo-sub {
  font-size: 8px; letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(9,38,64,0.5);
  white-space: nowrap; font-weight: 300; margin-top: 1px;
}

/* Gold rule */
.villa-nav__rule {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(143,166,188,.5) 18%, rgba(143,166,188,.5) 82%, transparent 100%);
}

/* Menu row */
.villa-nav__menu-row {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 0;
}
.nav-link {
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(9,38,64,0.62);
  text-decoration: none;
  padding: 0 20px;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: #092640; }
.villa-nav__sep {
  width: 1px; height: 10px;
  background: rgba(143,166,188,0.45);
  flex-shrink: 0;
}
.nav-link-inquire {
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #41576E;
  text-decoration: none;
  padding: 0 20px;
  transition: opacity 0.2s;
}
.nav-link-inquire:hover { opacity: 0.7; }

/* Hamburger toggle */
.villa-nav__toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 8px;
  position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
}
.villa-nav__toggle-bar {
  display: block; width: 24px; height: 1.5px;
  background: #092640; margin: 5px 0;
  transition: all 0.3s;
}
.villa-nav__toggle.is-open .villa-nav__toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.villa-nav__toggle.is-open .villa-nav__toggle-bar:nth-child(2) { opacity: 0; }
.villa-nav__toggle.is-open .villa-nav__toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  :root { --nav-h: 74px; }

  .villa-nav {
    padding-top: 0;
    background: #ffffff;
  }
  .villa-nav.scrolled { background: #ffffff; }
  .villa-nav__logo-row { display: flex; align-items: center; justify-content: space-between; text-align: left; padding: 12px 20px; }
  .villa-nav__logo-icon { width: 36px; height: 36px; }
  .villa-nav__logo-title { font-size: 20px; }
  .villa-nav__rule { display: none; }
  .villa-nav__menu-row {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 12px 0 18px;
    background: #ffffff;
    border-top: 1px solid rgba(9,38,64,0.08);
  }
  .villa-nav__menu-row.open { display: flex; }
  .villa-nav__sep { display: none; }
  .nav-link { color: rgba(9,38,64,0.7); }
  .nav-link, .nav-link-inquire { padding: 4px 0; font-size: 10px; }
  .villa-nav__toggle { display: block; position: static; transform: none; flex: none; }
}

/* ─────────────────────────────────────────────────────────────────────
   FABs  (exact match gallery-redesign.html vk-fabB)
   ───────────────────────────────────────────────────────────────────── */
.fab-group {
  position: fixed;
  right: clamp(16px, env(safe-area-inset-right, 0px) + 16px, 32px);
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 11px;
}

.reserve-fab, .whatsapp-fab {
  position: relative;
  background: linear-gradient(160deg, #0c2c4c 0%, #092640 62%, #071c30 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 14px 34px rgba(7,20,32,.34), 0 4px 12px rgba(7,20,32,.22);
  transition: border-color .55s cubic-bezier(.22,1,.36,1), box-shadow .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1), color .45s ease;
  text-decoration: none;
  overflow: hidden;
}

.reserve-fab {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: .34em;
  text-transform: uppercase; font-weight: 400;
  padding: 14px 26px;
  border-radius: 100px;
  white-space: nowrap;
}
/* shimmer */
.reserve-fab::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 42%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(143,166,188,.26), transparent);
  transform: skewX(-18deg); pointer-events: none;
}

.whatsapp-fab {
  color: #ffffff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
/* pulse dot */
.whatsapp-fab::after {
  content: ""; position: absolute; top: 9px; right: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 2px #071c30, 0 0 0 0 rgba(37,211,102,.7);
}

.reserve-fab:hover, .whatsapp-fab:hover {
  border-color: rgba(143,166,188,.95);
  transform: translateY(-3px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 0 0 4px rgba(143,166,188,.14), 0 22px 50px rgba(7,20,32,.42), 0 6px 16px rgba(7,20,32,.28);
}
.reserve-fab:hover { color: #D6E1EC; letter-spacing: .40em; }
.whatsapp-fab:hover { color: #D6E1EC; }

@media (prefers-reduced-motion: no-preference) {
  .fab-group { animation: vkFabIn 1s cubic-bezier(.22,1,.36,1) .6s both; }
  @keyframes vkFabIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
  .reserve-fab, .whatsapp-fab { animation: vkFabGlow 4.6s ease-in-out 1.6s infinite; }
  @keyframes vkFabGlow {
    0%,100% { box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 0 0 0 rgba(143,166,188,0), 0 14px 34px rgba(7,20,32,.34), 0 4px 12px rgba(7,20,32,.22); }
    50%      { box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 0 0 4px rgba(143,166,188,.10), 0 14px 34px rgba(7,20,32,.34), 0 4px 12px rgba(7,20,32,.22); }
  }
  .reserve-fab:hover, .whatsapp-fab:hover { animation: none; }
  .reserve-fab::after { animation: vkFabShine 6.5s ease-in-out 2.4s infinite; }
  @keyframes vkFabShine { 0% { left: -60%; } 18%,100% { left: 160%; } }
  .whatsapp-fab::after { animation: vkFabPulse 2.8s ease-out 2s infinite; }
  @keyframes vkFabPulse { 0% { box-shadow: 0 0 0 2px #071c30, 0 0 0 0 rgba(37,211,102,.6); } 70%,100% { box-shadow: 0 0 0 2px #071c30, 0 0 0 7px rgba(37,211,102,0); } }
}

@media (max-width: 480px) {
  .reserve-fab { padding: 12px 18px; font-size: 9px; }
  .whatsapp-fab { width: 44px; height: 44px; }
  .fab-group { gap: 8px; right: 16px; bottom: 16px; }
}

/* ─────────────────────────────────────────────────────────────────────
   FOOTER  (exact match gallery-redesign.html)
   ───────────────────────────────────────────────────────────────────── */
:root {
  --vk-bg: #0A2540;
  --vk-text: #ffffff;
  --vk-text-dim: rgba(255,255,255,.58);
  --vk-text-dimmer: rgba(255,255,255,.35);
  --vk-accent: #8FA6BC;
  --vk-rule: rgba(143,166,188,.15);
}
.vk-footer { background-color: var(--vk-bg); color: var(--vk-text); }
.vk-footer-container { max-width: 1400px; margin: 0 auto; padding: clamp(64px,9vh,88px) clamp(28px,6vw,84px) clamp(40px,5vh,56px); }
.vk-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(32px,5vw,80px); margin-bottom: 52px; }
.vk-footer-title { font-size: 11px; letter-spacing: .38em; text-transform: uppercase; color: var(--vk-accent); font-weight: 300; font-family: 'Inter', sans-serif; margin: 0 0 18px; }
.vk-footer-description { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.78; color: var(--vk-text-dim); font-weight: 300; margin: 0; max-width: 320px; }
.vk-footer-nav { display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; list-style: none; }
.vk-footer-nav a { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--vk-text-dim); text-decoration: none; font-weight: 300; transition: color .3s; }
.vk-footer-nav a:hover { color: #fff; }
.vk-footer-address a { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--vk-text-dim); text-decoration: none; font-weight: 300; transition: color .3s; }
.vk-footer-address a:hover { color: #fff; }
.vk-footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: var(--vk-text-dim); font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.65; font-weight: 300; }
.vk-footer-icon { width: 16px; height: 16px; flex: 0 0 16px; fill: currentColor; margin-top: 3px; opacity: .6; }
.vk-social { display: flex; gap: 16px; margin-top: 22px; }
.vk-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(143,166,188,.25); color: rgba(255,255,255,.55); transition: color .3s, border-color .3s; text-decoration: none; }
.vk-social a:hover { color: var(--vk-accent); border-color: rgba(143,166,188,.6); }
.vk-social-icon { width: 16px; height: 16px; fill: currentColor; }
.vk-footer-divider { height: 1px; background: var(--vk-rule); margin-bottom: 28px; }
.vk-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.vk-footer-copyright, .vk-footer-copyright p { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--vk-text-dimmer); font-weight: 300; letter-spacing: .04em; }
.vk-footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.vk-footer-legal a { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--vk-text-dimmer); text-decoration: none; font-weight: 300; letter-spacing: .04em; transition: color .3s; }
.vk-footer-legal a:hover { color: var(--vk-text-dim); }

@media (max-width: 768px) {
  .vk-footer-grid { grid-template-columns: 1fr 1fr; }
  .vk-footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .vk-footer-grid { grid-template-columns: 1fr; }
}

/* ─── INNER PAGE HERO ─────────────────────────── */
.vk-hero {
  position: relative; width: 100%;
  height: 100vh; height: 100svh; min-height: 580px;
  overflow: hidden;
  background: #050d16;
}
.vk-hero__bg { position: absolute; inset: 0; }
.vk-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  display: block;
}
@media (prefers-reduced-motion: no-preference) {
  .vk-hero__bg img { animation: vkKenBurns 20s cubic-bezier(.1,0,.18,1) forwards; }
  @keyframes vkKenBurns { from { transform: scale(1); } to { transform: scale(1.08); } }
}
.vk-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(6,12,20,.42) 0%, rgba(6,12,20,.18) 38%, rgba(6,12,20,.82) 100%);
}
.vk-hero__content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; color: #fff;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 var(--gap) clamp(56px,7vh,88px);
}
.vk-hero__badge {
  display: flex; flex-direction: column; align-items: flex-end; gap: 5px;
  padding-bottom: 21px; flex-shrink: 0;
}
.vk-hero__badge-score {
  font-family: var(--f-serif);
  font-size: 32px; font-weight: 300; color: #fff; line-height: 1;
}
.vk-hero__badge-score span { font-size: .42em; opacity: .5; }
.vk-hero__badge-exceptional {
  font-family: var(--f-serif);
  font-size: 32px; font-weight: 300; color: #fff;
  letter-spacing: -.01em; margin-left: 7px;
}
.vk-hero__badge-label { font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.55); }
@media (max-width: 620px) { .vk-hero__badge { display: none; } }
.vk-hero__quote {
  display: flex; flex-direction: column; align-items: flex-end;
  justify-content: flex-end; padding-bottom: 21px; flex-shrink: 0;
  max-width: 220px; text-align: right;
}
.vk-hero__quote p {
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  font-size: clamp(13px, 1.2vw, 16px); line-height: 1.65;
  color: rgba(255,255,255,.72); margin: 0;
}
@media (max-width: 620px) { .vk-hero__quote { display: none; } }
@font-face {
  font-family: 'DomestosSans';
  src: url('/wp-content/themes/villa-kingfisher/assets/fonts/domestos-sans-black.ttf') format('truetype');
  font-weight: 900; font-display: swap;
}
.vk-bdc-logo {
  font-family: 'DomestosSans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 900; font-size: 13px; letter-spacing: -.01em;
  text-transform: none;
  color: rgba(255,255,255,.9);
}
.vk-bdc-dot { font-size: 7px; color: #70C2EF; vertical-align: middle; }
.vk-hero__left {
  display: flex; flex-direction: column; gap: 13px; padding-bottom: 21px;
}
.vk-hero__eyebrow { font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: rgba(255,255,255,.82); font-weight: 300; }
.vk-hero__title   { font-family: var(--f-serif); font-size: clamp(44px,7vw,96px); font-weight: 300; line-height: 1.04; letter-spacing: -.025em; margin: 0; text-shadow: 0 2px 32px rgba(0,0,0,.18); }
.vk-hero__sub     { font-family: var(--f-serif); font-style: italic; font-size: clamp(15px,1.6vw,20px); font-weight: 300; color: rgba(255,255,255,.72); line-height: 1.5; }
.vk-hero__tagline { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.65); font-weight: 300; }
/* Hero facts tagline retired site-wide: the CTA + benefits row now carries this,
   the second uppercase line made the hero too busy. */
.vk-hero__tagline, .vk-home-hero__tagline { display: none; }
/* legacy compat */
.vk-hero__rule    { display: none; }
.vk-hero__subtitle{ font-family: var(--f-serif); font-style: italic; font-size: clamp(15px,1.6vw,20px); font-weight: 300; color: rgba(255,255,255,.72); line-height: 1.5; }

/* ─── HERO PRIMARY CTA + DIRECT-BOOKING BENEFITS ─────────── */
.vk-hero-cta { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; margin-top: 12px; }
.vk-hero-cta__btn {
  display: inline-flex; align-items: center;
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 500;
  color: #fff; background: var(--ink); text-decoration: none;
  padding: 15px 32px; border-radius: 2px;
  box-shadow: 0 10px 34px rgba(0,0,0,.22);
  transition: background .3s, transform .25s, box-shadow .3s;
}
.vk-hero-cta__btn:hover { background: var(--navy); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,.28); }
.vk-hero-cta__benefits { display: flex; gap: 18px; flex-wrap: wrap; }
.vk-hero-cta__price { font-size: 12.5px; letter-spacing: .02em; color: rgba(255,255,255,.92); font-weight: 400; }
.vk-hero-cta__price span { color: rgba(255,255,255,.6); font-weight: 300; }
.vk-hero-cta__benefit {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; letter-spacing: .04em; font-weight: 300;
  color: rgba(255,255,255,.85);
}
.vk-hero-cta__benefit::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex: none;
}
@media (max-width: 620px) {
  .vk-hero-cta__btn { padding: 14px 26px; }
  .vk-hero-cta__benefits { gap: 7px 16px; }
}

/* ─── A11Y: visible keyboard focus ───────────────────────── */
/* ─── A11Y: keyboard focus + skip link ───────────────────── */
.vk-skip {
  position: fixed; top: 8px; left: 8px; z-index: 10000;
  background: var(--ink); color: #fff; padding: 11px 20px; border-radius: 2px;
  font-family: var(--f-sans); font-size: 12px; letter-spacing: .08em; font-weight: 400;
  text-decoration: none; transform: translateY(-160%); transition: transform .22s ease;
}
.vk-skip:focus { transform: translateY(0); outline: 2px solid var(--gold); outline-offset: 2px; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
#lodgify-book-now-box :focus-visible { outline: none; }

/* ─── DISCOVER (centred cue, arrow below) ────────────────── */
.vk-hero-discover {
  position: absolute; bottom: clamp(48px,7vh,80px); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  background: none; border: 0; padding: 6px 16px; cursor: pointer;
  font-family: var(--f-sans); font-weight: 300;
  font-size: 9px; letter-spacing: .38em; text-transform: uppercase;
  color: rgba(255,255,255,.6); transition: color .3s; z-index: 3;
}
.vk-hero-discover:hover { color: var(--gold); }
/* On tablet/mobile the benefits row wraps and reaches centre, so drop the cue
   to its own band at the very bottom to avoid overlapping the text. */
@media (max-width: 1024px) { .vk-hero-discover { bottom: 14px; } }
.vk-hero-discover::after {
  content: ''; display: block; width: 10px; height: 10px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
@media (prefers-reduced-motion: no-preference) {
  .vk-hero-discover::after { animation: vkDiscoverBounce 1.8s ease-in-out infinite; }
  @keyframes vkDiscoverBounce {
    0%,100% { transform: translateY(0)   rotate(45deg); opacity: .65; }
    50%      { transform: translateY(5px) rotate(45deg); opacity: 1; }
  }
}

/* ─── SECTION WRAPPERS ───────────────────────── */
.vk-sect        { padding: clamp(64px,10vh,120px) 0; }
.vk-sect--cream { background: var(--cream); }
.vk-sect--dark  { background: var(--ink); color: rgba(240,236,228,.85); }
.vk-sect--paper { background: var(--paper); }

/* ─── EYEBROW ────────────────────────────────── */
.vk-ey { font-size: 10px; letter-spacing: .36em; text-transform: uppercase; color: var(--gold-ink); font-weight: 300; display: block; }

/* ─── BUTTONS ────────────────────────────────── */
.vk-link {
  display: inline-block; font-size: 10px; letter-spacing: .36em;
  text-transform: uppercase; font-weight: 400;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid rgba(10,37,64,.24); padding-bottom: 4px;
  transition: color .3s, border-color .3s;
}
.vk-link:hover            { color: var(--gold); border-color: rgba(143,166,188,.55); }
.vk-link--light           { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.24); }
.vk-link--light:hover     { color: var(--gold); border-color: rgba(143,166,188,.55); }
.vk-link--gold            { color: var(--gold); border-color: rgba(143,166,188,.4); }
.vk-link--gold:hover      { color: #fff; border-color: rgba(255,255,255,.38); }

.vk-btn {
  display: inline-block; font-family: var(--f-sans); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  color: #fff; background: var(--ink); text-decoration: none;
  padding: 14px 32px; border-radius: 2px;
  transition: background .3s, transform .2s;
}
.vk-btn:hover { background: var(--navy); transform: translateY(-1px); color: #fff; }

/* ─── REVEAL ANIMATION ───────────────────────── */
.vk-r {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.22,1,.36,1), transform 1.1s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.vk-r.on { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .vk-r { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ─── GOLD RULE ──────────────────────────────── */
.vk-rule {
  width: 64px; height: 1px;
  background: linear-gradient(90deg, rgba(143,166,188,0), var(--gold), rgba(143,166,188,0));
  display: block;
}

/* ── MOBILE FULL-SCREEN OVERLAY ─────────────────────────── */
.vk-mob-overlay {
  position: fixed; inset: 0;
  background: rgba(7,16,28,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .42s cubic-bezier(.22,1,.36,1);
}
.vk-mob-overlay.open { opacity: 1; pointer-events: all; }
.vk-mob-overlay__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; text-align: center;
  transform: translateY(20px);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.vk-mob-overlay.open .vk-mob-overlay__inner { transform: translateY(0); }
.vk-mob-link {
  font-family: var(--f-serif); font-size: clamp(28px,6vw,46px);
  font-weight: 300; color: rgba(255,255,255,.82);
  text-decoration: none; letter-spacing: .02em;
  padding: 8px 0; display: block; transition: color .2s;
}
.vk-mob-link:hover, .vk-mob-link.active { color: #8FA6BC; }
.vk-mob-cta {
  font-family: var(--f-sans) !important;
  font-size: 11px; letter-spacing: .38em;
  text-transform: uppercase; color: #8FA6BC;
  text-decoration: none; display: block; padding: 8px 0;
}
.vk-mob-overlay__rule { width: 40px; height: 1px; background: rgba(143,166,188,.35); margin: 10px auto; }
.vk-mob-overlay__sub  { font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: rgba(255,255,255,.22); margin-top: 20px; }
@media (min-width: 769px) { .vk-mob-overlay { display: none !important; } }

/* ─── SHARED PAGE CTA ───────────────────────── */
.vk-cta {
  position: relative;
  background: var(--ink);
  background-size: cover;
  background-position: center;
  min-height: clamp(460px, 64vh, 720px);
  display: flex; flex-direction: column; align-items: stretch; justify-content: flex-end;
  padding: clamp(64px,9vh,104px) 0 clamp(48px,7vh,80px);
  text-align: left;
  overflow: hidden;
}
.vk-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(5,10,18,.84) 0%, rgba(5,10,18,.44) 52%, rgba(5,10,18,.14) 100%);
  z-index: 0;
}
.vk-cta .vk-w { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; width: 100%; }
.vk-cta .vk-btn { background: rgba(10,37,64,.35); color: #fff; border: 1px solid rgba(255,255,255,.55); backdrop-filter: blur(2px); }
.vk-cta .vk-btn:hover { background: rgba(143,166,188,.28); border-color: var(--gold); color: #fff; transform: translateY(-1px); }
.vk-cta__eyebrow {
  display: block; font-size: 9px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.vk-cta__title {
  font-family: var(--f-serif); font-size: clamp(32px,4.5vw,62px);
  font-weight: 300; line-height: 1.1; color: #fff;
  letter-spacing: -.025em; margin-bottom: 24px; max-width: 620px;
}
.vk-cta__title::after {
  content: ''; display: block; width: 46px; height: 1px;
  background: var(--gold); margin-top: 26px;
}
.vk-cta__facts {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.42); margin-bottom: 40px;
}
.vk-cta__row {
  display: flex; align-items: center; justify-content: flex-start;
  gap: clamp(24px,4vw,56px); flex-wrap: wrap;
}
.vk-cta__score {
  font-family: var(--f-serif); font-size: 28px; font-weight: 300; color: #fff;
  display: flex; flex-direction: row; align-items: baseline; gap: 12px;
}
.vk-cta__score-label {
  font-family: var(--f-sans); font-size: 9px; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(255,255,255,.45); font-style: normal;
}
/* ─── SHARED PAGE CTA ───────────────────────── */

/* ── SECTION HEADINGS ───────────────────────────────────── */
.vk-sect-title {
  font-family: var(--f-serif); font-size: clamp(26px,3.2vw,44px);
  font-weight: 300; color: var(--ink); line-height: 1.18;
  letter-spacing: -.01em;
}
.vk-sect-body {
  font-size: 15px; font-weight: 300; color: var(--sage); line-height: 1.85;
}

/* ── MOBILE NAV TOGGLE (keep existing bars but show on ≤768) */
@media (max-width: 768px) {
  .villa-nav__toggle { z-index: 9999; }
  .villa-nav__toggle.is-open .villa-nav__toggle-bar { background: #092640; }
}

/* ─── ABOUT · REFERENCE (collapsed, for AI / SEO) ──────────── */
.vk-about { background: var(--ink); color: rgba(240,236,228,.7); }
/* cap content to the site container width, background stays full-width */
.vk-about > .vk-w { max-width: 1400px; padding: 0 clamp(28px,6vw,84px); }
.vk-about__details { margin: 0; }
.vk-about__summary {
  list-style: none; cursor: pointer; outline: none;
  display: flex; align-items: center; gap: 18px;
  padding: clamp(26px,4vh,40px) 0;
}
.vk-about__summary::-webkit-details-marker { display: none; }
.vk-about__summary-ey { font-size: 10px; letter-spacing: .36em; text-transform: uppercase; color: var(--gold); font-weight: 300; }
.vk-about__summary-title { font-family: var(--f-serif); font-size: clamp(19px,2.2vw,28px); font-weight: 300; color: #fff; margin-right: auto; letter-spacing: -.01em; }
.vk-about__icon { position: relative; width: 16px; height: 16px; flex: none; }
.vk-about__icon::before, .vk-about__icon::after { content: ''; position: absolute; background: var(--gold); transition: transform .35s cubic-bezier(.2,0,.2,1), opacity .35s; }
.vk-about__icon::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.vk-about__icon::after  { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.vk-about__details[open] .vk-about__icon::after { opacity: 0; transform: translateX(-50%) scaleY(0); }
.vk-about__content { padding-bottom: clamp(48px,7vh,88px); }
.vk-about__content h2 { font-family: var(--f-serif); font-size: clamp(22px,2.4vw,32px); font-weight: 300; color: #fff; line-height: 1.25; margin: 0 0 16px; letter-spacing: -.01em; }
.vk-about__content h3 { font-family: var(--f-serif); font-size: 18px; font-weight: 400; color: rgba(240,236,228,.92); margin: 0 0 6px; }
.vk-about__content p { font-size: 15px; font-weight: 300; color: rgba(240,236,228,.62); line-height: 1.8; margin: 0 0 16px; }
.vk-about__ey { font-size: 10px; letter-spacing: .36em; text-transform: uppercase; color: var(--gold); font-weight: 300; margin: 0 0 12px; display: block; }
.vk-about__lead { color: rgba(240,236,228,.9); font-size: 16px; }
.vk-about__divider { border: 0; border-top: 1px solid rgba(255,255,255,.1); margin: clamp(32px,5vh,52px) 0; }
.vk-about__amenities { list-style: none; padding: 0; margin: 4px 0 0; display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 10px 36px; }
.vk-about__amenities li { font-size: 14px; font-weight: 300; color: rgba(240,236,228,.62); padding-left: 18px; position: relative; }
.vk-about__amenities li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.vk-about__rate { padding: 24px 28px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
.vk-about__rate p { margin: 0; }
.vk-about__price { font-family: var(--f-serif); font-size: 22px; font-weight: 300; color: #fff; display: block; margin-bottom: 8px; }
.vk-about__reviews { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 16px; }
.vk-about__reviews blockquote { margin: 0; padding: 22px 24px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); font-family: var(--f-serif); font-style: italic; font-size: 16px; font-weight: 300; color: rgba(240,236,228,.9); line-height: 1.5; }
.vk-about__reviews cite { display: block; margin-top: 12px; font-style: normal; font-family: var(--f-sans); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(143,166,188,.7); }
.vk-about__guides { list-style: none; padding: 0; margin: 4px 0 0; }
.vk-about__guides li { padding: 13px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; font-weight: 300; color: rgba(240,236,228,.62); }
.vk-about__guides li:first-child { border-top: 0; }
.vk-about__guides a { color: rgba(240,236,228,.92); text-decoration: none; border-bottom: 1px solid rgba(143,166,188,.4); padding-bottom: 1px; }
.vk-about__guides a:hover { color: var(--gold); }
.vk-about__content a { color: var(--gold); }
.vk-about__faq-item { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); }
.vk-about__faq-item:first-of-type { border-top: 0; padding-top: 4px; }
.vk-about__faq-item p { margin: 0; }

/* ─── GUIDE OPT-IN ──────────────────────────────── */
.vk-optin { padding: clamp(76px,12vh,150px) 0; }
/* Hero-less conversion page: clear the fixed nav, fill the viewport, centre the teaser */
.vk-optin--page { min-height: 100vh; display: flex; align-items: center; padding-top: calc(var(--nav-h) + clamp(40px,7vh,88px)); padding-bottom: clamp(56px,9vh,120px); }
.vk-optin--page .vk-w { width: 100%; }
.vk-optin__inner { max-width: 660px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.vk-optin__title { font-family: var(--f-serif); font-size: clamp(28px,3.6vw,46px); font-weight: 300; color: var(--ink); line-height: 1.18; margin: 12px 0 20px; }
.vk-optin__lead { font-size: 15.5px; font-weight: 300; color: var(--sage); line-height: 1.85; margin-bottom: 36px; max-width: 580px; }
.vk-optin__form { display: flex; gap: 10px; width: 100%; max-width: 500px; }
.vk-optin__input { flex: 1 1 auto; min-width: 0; font-family: var(--f-sans); font-size: 15px; font-weight: 300; color: var(--ink); padding: 15px 18px; border: 1px solid var(--line); background: var(--paper); border-radius: 1px; transition: border-color .25s; }
.vk-optin__input::placeholder { color: var(--mute); }
.vk-optin__input:focus { outline: none; border-color: var(--gold-ink); }
.vk-optin__btn { flex: 0 0 auto; font-family: var(--f-sans); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; font-weight: 500; color: #fff; background: var(--ink); border: none; padding: 0 26px; border-radius: 1px; cursor: pointer; transition: background .25s; }
.vk-optin__btn:hover { background: var(--navy); }
.vk-optin__note { font-size: 11.5px; font-weight: 300; color: var(--mute); margin-top: 16px; }
.vk-optin__done { font-family: var(--f-serif); font-size: clamp(19px,2vw,24px); font-weight: 300; color: var(--gold-ink); line-height: 1.55; margin-top: 4px; }
@media (max-width: 520px) {
  .vk-optin__form { flex-direction: column; }
  .vk-optin__btn { padding: 15px 26px; }
}

/* ─── GUIDE CONVERSION LAYOUT (photo + teaser + contents + opt-in) ─── */
.vk-guide { padding-top: calc(var(--nav-h) + clamp(36px,6vh,76px)); padding-bottom: clamp(56px,9vh,110px); }
.vk-guide__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(40px,5vw,84px); align-items: center; }
.vk-guide__media { aspect-ratio: 4/5; overflow: hidden; border-radius: 1px; }
.vk-guide__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vk-guide__body { display: flex; flex-direction: column; }
.vk-guide__title { font-family: var(--f-serif); font-size: clamp(30px,4vw,52px); font-weight: 300; color: var(--ink); line-height: 1.12; margin: 12px 0 20px; }
.vk-guide__lead { font-size: 16px; font-weight: 300; color: var(--sage); line-height: 1.85; margin-bottom: 30px; max-width: 54ch; }
.vk-guide__inside { margin-bottom: 34px; }
.vk-guide__inside-lbl { display: block; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 6px; }
.vk-guide__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.vk-guide__list li { font-family: var(--f-serif); font-size: clamp(16px,1.5vw,18px); font-weight: 300; color: var(--ink); padding: 12px 0 12px 22px; border-bottom: 1px solid var(--line); position: relative; }
.vk-guide__list li::before { content: ''; position: absolute; left: 2px; top: 21px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.vk-guide__plus { font-family: var(--f-serif); font-style: italic; font-size: 14.5px; font-weight: 300; color: var(--sage); line-height: 1.7; margin-top: 16px; max-width: 52ch; }
@media (max-width: 860px) {
  .vk-guide__grid { grid-template-columns: 1fr; gap: clamp(28px,5vw,40px); }
  .vk-guide__media { aspect-ratio: 16/10; }
}
