:root {
  --vf-blue: #064861;
  --vf-blue-dark: #04384d;
  --vf-sand: #f4eadf;
  --vf-cream: #fbf6ef;
  --vf-coral: #df6546;
  --vf-sky: #35bddb;
  --vf-ink: #14313b;
  --vf-muted: #6a777b;
  --vf-white: #ffffff;
  --vf-max: 1180px;
  --vf-radius: 28px;
  --vf-radius-lg: 42px;
  --vf-shadow: 0 26px 80px rgba(4, 56, 77, .16);
  --vf-serif: Georgia, "Times New Roman", serif;
  --vf-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--vf-cream);
  color: var(--vf-ink);
  font-family: var(--vf-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body:has(.vf-site) {
  overflow-x: hidden;
}

.vf-site,
.vf-site * {
  box-sizing: border-box;
}

.vf-site {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--vf-cream);
  color: var(--vf-ink);
}

.vf-site img {
  display: block;
  max-width: 100%;
}

.vf-site a {
  color: inherit;
  text-decoration: none;
}

.vf-container {
  width: min(calc(100% - 44px), var(--vf-max));
  margin-inline: auto;
}

.vf-section {
  position: relative;
  padding: clamp(76px, 10vw, 150px) 0;
}

.vf-kicker {
  margin: 0 0 18px;
  color: var(--vf-coral);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.vf-kicker--light {
  color: var(--vf-sand);
}

.vf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .03em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.vf-btn:hover,
.vf-btn:focus-visible {
  transform: translateY(-2px);
}

.vf-btn--light {
  background: var(--vf-sand);
  color: var(--vf-blue-dark);
}

.vf-btn--ghost {
  color: var(--vf-white);
  border: 1px solid rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.vf-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 26px 0 clamp(58px, 8vw, 96px);
  color: var(--vf-white);
  background-image: var(--vf-hero-image);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.vf-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(3, 43, 58, .82), rgba(3, 43, 58, 0));
  z-index: -1;
}

.vf-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 82% 12%, rgba(53, 189, 219, .26), transparent 34%),
    linear-gradient(90deg, rgba(3, 45, 62, .78) 0%, rgba(3, 45, 62, .34) 44%, rgba(3, 45, 62, .08) 100%);
}

.vf-nav {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(18px, 3vw, 34px) clamp(22px, 5vw, 68px);
}

.vf-nav__brand img {
  width: clamp(170px, 18vw, 290px);
  height: auto;
}

.vf-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(4, 56, 77, .28);
  backdrop-filter: blur(16px);
}

.vf-nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 700;
}

.vf-nav__links a:hover,
.vf-nav__links a:focus-visible {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.vf-hero__content {
  width: min(calc(100% - 44px), 980px);
  margin: 0 auto;
  padding-right: min(18vw, 160px);
}

.vf-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--vf-serif);
  font-weight: 400;
  font-size: clamp(58px, 8.6vw, 128px);
  line-height: .88;
  letter-spacing: -.045em;
}

.vf-hero__content > p:not(.vf-kicker) {
  max-width: 630px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.vf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.vf-scroll {
  position: absolute;
  right: clamp(26px, 5vw, 72px);
  bottom: clamp(26px, 5vw, 56px);
  width: 46px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 14px;
  opacity: .92;
}

.vf-scroll span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--vf-white);
  animation: vf-scroll-dot 1.8s ease-in-out infinite;
}

@keyframes vf-scroll-dot {
  0% { transform: translateY(0); opacity: .35; }
  45% { transform: translateY(26px); opacity: 1; }
  100% { transform: translateY(0); opacity: .35; }
}

.vf-intro {
  background: linear-gradient(180deg, var(--vf-cream) 0%, #fff 100%);
}

.vf-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
}

.vf-intro h2,
.vf-section-head h2,
.vf-services h2,
.vf-location h2,
.vf-external h2,
.vf-contact h2 {
  margin: 0;
  font-family: var(--vf-serif);
  font-size: clamp(42px, 5.8vw, 86px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  color: var(--vf-blue-dark);
}

.vf-intro__copy > p:not(.vf-kicker),
.vf-section-head > p,
.vf-services p,
.vf-location p,
.vf-external p,
.vf-contact__copy p {
  margin: 28px 0 0;
  max-width: 700px;
  color: var(--vf-muted);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.75;
}

.vf-intro__media {
  position: relative;
  margin: 0;
  border-radius: var(--vf-radius-lg);
  overflow: hidden;
  box-shadow: var(--vf-shadow);
  aspect-ratio: 4 / 5;
}

.vf-intro__media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: calc(var(--vf-radius-lg) - 16px);
  z-index: 1;
  pointer-events: none;
}

.vf-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vf-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 580px;
}

.vf-stat {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(6, 72, 97, .07);
  color: var(--vf-blue-dark);
  font-weight: 800;
}

.vf-spaces {
  background: var(--vf-blue-dark);
  color: var(--vf-white);
}

.vf-spaces::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(53, 189, 219, .22), transparent 26%),
    radial-gradient(circle at 88% 58%, rgba(223, 101, 70, .18), transparent 28%);
  pointer-events: none;
}

.vf-spaces .vf-section-head,
.vf-feature-grid {
  position: relative;
  z-index: 1;
}

.vf-section-head {
  max-width: 980px;
}

.vf-section-head--center {
  text-align: center;
}

.vf-section-head--center p {
  margin-inline: auto;
}

.vf-spaces .vf-section-head h2,
.vf-spaces .vf-section-head p {
  color: var(--vf-cream);
}

.vf-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(38px, 6vw, 76px);
}

.vf-feature-card {
  min-height: 100%;
  border-radius: var(--vf-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
}

.vf-feature-card--large {
  grid-column: span 2;
}

.vf-feature-card figure {
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.vf-feature-card--large figure {
  aspect-ratio: 16 / 9;
}

.vf-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.vf-feature-card:hover img {
  transform: scale(1.035);
}

.vf-feature-card div {
  padding: 28px;
}

.vf-feature-card h3 {
  margin: 0;
  color: var(--vf-cream);
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.1;
  letter-spacing: -.03em;
}

.vf-feature-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  font-size: 15px;
}

.vf-services {
  background: #fff;
}

.vf-services__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: start;
}

.vf-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vf-service-list li {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 18px 18px 52px;
  border-radius: 22px;
  background: var(--vf-cream);
  color: var(--vf-blue-dark);
  font-weight: 800;
}

.vf-service-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--vf-sky);
  box-shadow: 0 0 0 7px rgba(53, 189, 219, .15);
}

.vf-gallery-section {
  background: var(--vf-cream);
  padding-bottom: clamp(44px, 6vw, 80px);
}

.vf-gallery {
  width: min(calc(100% - 28px), 1500px);
  margin: clamp(36px, 6vw, 70px) auto 0;
  columns: 4 260px;
  column-gap: 14px;
}

.vf-gallery__item {
  all: unset;
  display: block;
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
  cursor: zoom-in;
  border-radius: 24px;
  overflow: hidden;
  background: #e8ded2;
  box-shadow: 0 14px 40px rgba(4, 56, 77, .12);
}

.vf-gallery__item img {
  width: 100%;
  height: auto;
  transition: transform .8s ease, filter .8s ease;
}

.vf-gallery__item:hover img,
.vf-gallery__item:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.vf-location {
  padding: clamp(90px, 12vw, 170px) 0;
  background: linear-gradient(135deg, rgba(4, 56, 77, .94), rgba(4, 56, 77, .78)), url('../images/photo-08.webp') center / cover fixed;
}

.vf-location__panel {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--vf-radius-lg);
  background: rgba(251, 246, 239, .94);
  box-shadow: var(--vf-shadow);
}

.vf-external {
  background: #fff;
}

.vf-external__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.vf-platforms {
  display: grid;
  gap: 14px;
}

.vf-platform {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 26px;
  border: 1px solid rgba(6, 72, 97, .12);
  border-radius: 26px;
  background: var(--vf-cream);
  color: var(--vf-blue-dark);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.vf-platform:hover,
.vf-platform:focus-visible {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: var(--vf-shadow);
}

.vf-platform span {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.vf-platform em {
  font-style: normal;
  color: var(--vf-coral);
  font-weight: 800;
  font-size: 13px;
}

.vf-contact {
  background: var(--vf-blue-dark);
  color: var(--vf-white);
}

.vf-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.05fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.vf-contact h2,
.vf-contact__copy p {
  color: var(--vf-cream);
}

.vf-contact__copy p {
  color: rgba(251, 246, 239, .76);
}

.vf-contact-links {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.vf-contact-links a {
  color: var(--vf-cream);
  font-weight: 800;
}

.vf-form-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--vf-radius-lg);
  background: var(--vf-cream);
  color: var(--vf-ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .26);
}

.vf-form-card .wpforms-container {
  margin: 0 !important;
}

.vf-form-card .wpforms-field {
  padding: 10px 0 !important;
}

.vf-form-card .wpforms-field-label,
.vf-form-card label {
  color: var(--vf-blue-dark) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.vf-form-card input[type="text"],
.vf-form-card input[type="email"],
.vf-form-card input[type="tel"],
.vf-form-card input[type="number"],
.vf-form-card textarea,
.vf-form-card select {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 52px !important;
  border: 1px solid rgba(6, 72, 97, .16) !important;
  border-radius: 16px !important;
  background: #fff !important;
  color: var(--vf-ink) !important;
  box-shadow: none !important;
  padding: 13px 15px !important;
}

.vf-form-card textarea {
  min-height: 130px !important;
}

.vf-form-card button[type="submit"],
.vf-form-card .wpforms-submit {
  min-height: 54px !important;
  padding: 0 26px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--vf-blue-dark) !important;
  color: #fff !important;
  font-weight: 900 !important;
  letter-spacing: .02em !important;
  box-shadow: none !important;
}

.vf-footer {
  padding: 42px 0;
  background: var(--vf-cream);
}

.vf-footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.vf-footer img {
  width: min(240px, 55vw);
}

.vf-footer__codes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  color: var(--vf-muted);
  font-size: 13px;
  font-weight: 700;
}

.vf-footer__codes span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(6, 72, 97, .07);
}

.vf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(3, 31, 41, .92);
}

.vf-lightbox.is-open {
  display: grid;
}

.vf-lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .42);
}

.vf-lightbox button {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--vf-cream);
  color: var(--vf-blue-dark);
  font-size: 24px;
  cursor: pointer;
}

.vf-default-page {
  min-height: 100vh;
  padding: 80px 24px;
  background: var(--vf-cream);
}

.vf-default-page__inner {
  width: min(100%, 900px);
  margin: 0 auto;
}

@media (max-width: 980px) {
  .vf-nav__links {
    display: none;
  }

  .vf-hero__content {
    padding-right: 0;
  }

  .vf-intro__grid,
  .vf-services__grid,
  .vf-external__grid,
  .vf-contact__grid {
    grid-template-columns: 1fr;
  }

  .vf-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vf-feature-card--large {
    grid-column: span 2;
  }

  .vf-location {
    background-attachment: scroll;
  }
}

@media (max-width: 700px) {
  .vf-container {
    width: min(calc(100% - 30px), var(--vf-max));
  }

  .vf-section {
    padding: 66px 0;
  }

  .vf-hero {
    min-height: 92svh;
    padding-bottom: 54px;
    background-position: center;
  }

  .vf-nav {
    padding: 18px 16px;
  }

  .vf-nav__brand img {
    width: 176px;
  }

  .vf-hero__content {
    width: min(calc(100% - 30px), 980px);
  }

  .vf-hero h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .vf-hero__content > p:not(.vf-kicker) {
    font-size: 17px;
  }

  .vf-scroll {
    display: none;
  }

  .vf-stats,
  .vf-feature-grid,
  .vf-service-list {
    grid-template-columns: 1fr;
  }

  .vf-feature-card--large {
    grid-column: auto;
  }

  .vf-feature-card figure,
  .vf-feature-card--large figure {
    aspect-ratio: 4 / 3;
  }

  .vf-gallery {
    columns: 2 150px;
    width: min(calc(100% - 18px), 1500px);
    column-gap: 9px;
  }

  .vf-gallery__item {
    margin-bottom: 9px;
    border-radius: 16px;
  }

  .vf-location__panel,
  .vf-form-card {
    border-radius: 28px;
  }

  .vf-footer__grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .vf-footer__codes {
    justify-content: flex-start;
  }
}

/* v1.1 refinements */
.vf-nav {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  transition: padding .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.vf-nav.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(4, 56, 77, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 50px rgba(3, 31, 41, .22);
  backdrop-filter: blur(20px);
}

body.admin-bar .vf-nav {
  top: 32px;
}

.vf-nav.is-scrolled .vf-nav__brand img {
  width: clamp(150px, 14vw, 230px);
}

.vf-btn--dark {
  background: var(--vf-blue-dark);
  color: #fff;
  border: 1px solid rgba(4, 56, 77, .14);
}

.vf-bedrooms {
  position: relative;
  z-index: 1;
  margin-top: clamp(56px, 8vw, 110px);
}

.vf-bedrooms__head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .95fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.vf-bedrooms__head h2 {
  margin: 0;
  font-family: var(--vf-serif);
  color: var(--vf-cream);
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.vf-bedrooms__head p:not(.vf-kicker) {
  margin: 0;
  color: rgba(251, 246, 239, .72);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
}

.vf-bedroom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vf-bedroom-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 430px;
  background: #062f41;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .20);
}

.vf-bedroom-card figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

.vf-bedroom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s ease;
}

.vf-bedroom-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 56, 77, .05) 0%, rgba(4, 56, 77, .18) 34%, rgba(3, 31, 41, .85) 100%);
}

.vf-bedroom-card div {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 24px;
}

.vf-bedroom-card span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(251, 246, 239, .92);
  color: var(--vf-blue-dark);
  font-size: 12px;
  font-weight: 900;
}

.vf-bedroom-card h3 {
  margin: 0;
  color: #fff;
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.vf-bedroom-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .74);
  line-height: 1.58;
  font-size: 14px;
}

.vf-bedroom-card:hover img {
  transform: scale(1.04);
}

.vf-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  columns: unset;
  column-gap: unset;
  width: min(calc(100% - 28px), 1460px);
}

.vf-gallery__item {
  margin: 0;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  position: relative;
}

.vf-gallery__item--hero {
  grid-column: span 3;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 560px;
}

.vf-gallery__item:nth-child(2),
.vf-gallery__item:nth-child(3),
.vf-gallery__item:nth-child(6),
.vf-gallery__item:nth-child(9) {
  grid-column: span 2;
}

.vf-gallery__item:nth-child(4),
.vf-gallery__item:nth-child(5),
.vf-gallery__item:nth-child(7),
.vf-gallery__item:nth-child(8),
.vf-gallery__item:nth-child(10),
.vf-gallery__item:nth-child(11),
.vf-gallery__item:nth-child(12) {
  grid-column: span 1;
}

.vf-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vf-gallery__item.is-extra {
  display: none;
}

.vf-gallery.is-expanded .vf-gallery__item.is-extra {
  display: block;
}

.vf-gallery.is-expanded .vf-gallery__item.is-extra:nth-child(3n) {
  grid-column: span 2;
}

.vf-gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.vf-gallery-more.is-hidden {
  display: none;
}

.vf-location {
  background: linear-gradient(135deg, rgba(4, 56, 77, .94), rgba(4, 56, 77, .78)), url('../images/photo-08.webp') center / cover fixed;
}

.vf-location__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: stretch;
}

.vf-map-card {
  min-height: 440px;
  border-radius: var(--vf-radius-lg);
  overflow: hidden;
  background: var(--vf-cream);
  box-shadow: var(--vf-shadow);
}

.vf-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
}

.vf-location-details {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 16px;
  margin-top: 16px;
}

.vf-location-card {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 32px;
  background: rgba(251, 246, 239, .96);
  color: var(--vf-ink);
  box-shadow: 0 18px 55px rgba(3, 31, 41, .16);
}

.vf-location-card--dark {
  background: rgba(4, 56, 77, .88);
  color: var(--vf-cream);
  border: 1px solid rgba(255, 255, 255, .15);
}

.vf-location-card h3 {
  margin: 0 0 18px;
  color: inherit;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -.035em;
}

.vf-location-card p,
.vf-location-card li {
  color: inherit;
  line-height: 1.65;
}

.vf-location-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vf-location-card li {
  position: relative;
  padding-left: 26px;
}

.vf-location-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--vf-coral);
}

.vf-external {
  background:
    radial-gradient(circle at 12% 18%, rgba(53, 189, 219, .12), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--vf-cream) 100%);
}

.vf-platforms {
  gap: 12px;
}

.vf-platform {
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(12px);
}

.vf-platform--contact {
  background: var(--vf-blue-dark);
  color: #fff;
}

.vf-platform--contact em {
  color: var(--vf-sand);
}

.vf-lightbox {
  grid-template-rows: 1fr auto;
  gap: 16px;
}

.vf-lightbox__frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.vf-lightbox .vf-lightbox__close,
.vf-lightbox .vf-lightbox__prev,
.vf-lightbox .vf-lightbox__next {
  border: 0;
  border-radius: 999px;
  background: rgba(251, 246, 239, .94);
  color: var(--vf-blue-dark);
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

.vf-lightbox .vf-lightbox__close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  font-size: 24px;
}

.vf-lightbox .vf-lightbox__prev,
.vf-lightbox .vf-lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 34px;
  line-height: 1;
}

.vf-lightbox .vf-lightbox__prev {
  left: 22px;
}

.vf-lightbox .vf-lightbox__next {
  right: 22px;
}

.vf-lightbox__count {
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
}

@media (max-width: 1100px) {
  .vf-bedroom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vf-gallery__item--hero {
    grid-column: span 2;
    min-height: 430px;
  }
}

@media (max-width: 980px) {
  .vf-nav__links {
    display: flex;
  }

  .vf-nav__links a:not(:last-child) {
    display: none;
  }

  .vf-location__grid,
  .vf-location-details,
  .vf-bedrooms__head {
    grid-template-columns: 1fr;
  }

  .vf-location {
    background-attachment: scroll;
  }
}

@media (max-width: 782px) {
  body.admin-bar .vf-nav {
    top: 46px;
  }
}

@media (max-width: 700px) {
  .vf-nav {
    padding: 14px 14px;
  }

  .vf-nav__brand img,
  .vf-nav.is-scrolled .vf-nav__brand img {
    width: 154px;
  }

  .vf-nav__links {
    padding: 6px;
  }

  .vf-nav__links a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .vf-bedroom-grid,
  .vf-gallery {
    grid-template-columns: 1fr;
  }

  .vf-bedroom-card {
    min-height: 360px;
  }

  .vf-gallery__item,
  .vf-gallery__item--hero,
  .vf-gallery__item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .vf-gallery__item--hero {
    min-height: 380px;
  }

  .vf-map-card,
  .vf-map-card iframe {
    min-height: 340px;
  }

  .vf-lightbox .vf-lightbox__prev,
  .vf-lightbox .vf-lightbox__next {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .vf-lightbox .vf-lightbox__prev {
    left: 10px;
  }

  .vf-lightbox .vf-lightbox__next {
    right: 10px;
  }
}

/* v1.2 refinements */
.vf-nav {
  z-index: 10000;
  left: 0;
  right: 0;
  transform: translateZ(0);
}

.vf-hero,
.vf-section,
.vf-footer {
  scroll-margin-top: 96px;
}

.vf-feature-grid {
  gap: clamp(18px, 2vw, 26px);
}

.vf-feature-card,
.vf-feature-card--large {
  position: relative;
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  background: #062f41;
  border: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .20);
}

.vf-feature-card figure,
.vf-feature-card--large figure {
  position: absolute;
  inset: 0;
  margin: 0;
  aspect-ratio: auto;
}

.vf-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s ease;
}

.vf-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 56, 77, .04) 0%, rgba(4, 56, 77, .18) 34%, rgba(3, 31, 41, .87) 100%);
}

.vf-feature-card div {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 24px;
}

.vf-feature-card div span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(251, 246, 239, .92);
  color: var(--vf-blue-dark);
  font-size: 12px;
  font-weight: 900;
}

.vf-feature-card h3 {
  color: #fff;
  font-size: clamp(23px, 2.2vw, 34px);
}

.vf-feature-card p {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.62;
}

.vf-feature-card:hover img {
  transform: scale(1.04);
}

.vf-bedrooms__head {
  display: block;
  max-width: 980px;
  margin-bottom: clamp(30px, 5vw, 60px);
}

.vf-bedrooms__head h2 {
  max-width: 820px;
}

.vf-bedrooms__head p:not(.vf-kicker) {
  max-width: 720px;
  margin-top: 24px;
}

.vf-gallery-section .vf-gallery {
  gap: clamp(18px, 2.2vw, 28px);
  width: min(calc(100% - 44px), 1460px);
}

.vf-gallery__item {
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(4, 56, 77, .13);
}

.vf-gallery__item--hero {
  min-height: 590px;
}

.vf-platform--contact {
  background: linear-gradient(135deg, var(--vf-coral), #c94e32);
  color: #fff;
  border-color: rgba(223, 101, 70, .32);
}

.vf-platform--contact:hover,
.vf-platform--contact:focus-visible {
  background: linear-gradient(135deg, #e87458, var(--vf-coral));
  color: #fff;
}

.vf-platform--contact em {
  color: rgba(255, 255, 255, .88);
}

.vf-lightbox {
  z-index: 100000;
}

@media (max-width: 980px) {
  .vf-feature-card,
  .vf-feature-card--large {
    min-height: 380px;
  }
}

@media (max-width: 700px) {
  .vf-gallery-section .vf-gallery {
    width: min(calc(100% - 30px), 1460px);
    gap: 14px;
  }

  .vf-gallery__item,
  .vf-gallery__item--hero {
    border-radius: 22px;
  }
}

/* v1.3 fixes */
.vf-site {
  overflow-x: clip;
  overflow-y: visible;
}

.vf-nav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 2147483000;
  pointer-events: auto;
}

.vf-hero .vf-btn--light {
  background: var(--vf-coral);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: 0 18px 44px rgba(3, 31, 41, .26);
}

.vf-hero .vf-btn--light:hover,
.vf-hero .vf-btn--light:focus-visible {
  background: #e87458;
  color: #fff;
}

.vf-services-more {
  display: none;
  margin-top: 20px;
}

.vf-services-more.is-hidden {
  display: none !important;
}

@media (max-width: 700px) {
  .vf-service-list:not(.is-expanded) .is-service-extra {
    display: none;
  }

  .vf-services-more {
    display: flex;
    justify-content: center;
  }

  .vf-gallery:not(.is-expanded) .vf-gallery__item.is-mobile-extra {
    display: none;
  }

  .vf-gallery.is-expanded .vf-gallery__item.is-mobile-extra {
    display: block;
  }

  .vf-gallery__item,
  .vf-gallery__item--hero,
  .vf-gallery__item:nth-child(n) {
    min-height: 240px;
  }

  .vf-gallery__item--hero {
    min-height: 340px;
  }
}

/* v1.4 mobile UX refinements */
.vf-nav__contact {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--vf-coral);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .02em;
  box-shadow: 0 12px 34px rgba(3, 31, 41, .22);
}

html.vf-lightbox-open,
body.vf-lightbox-open {
  overflow: hidden !important;
  overscroll-behavior: none;
}

.vf-lightbox__zone {
  display: none;
}

@supports (height: 100dvh) {
  .vf-hero {
    min-height: 100dvh;
  }
}

@media (max-width: 700px) {
  .vf-hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: 92px;
    padding-bottom: max(44px, env(safe-area-inset-bottom));
    align-items: end;
  }

  .vf-nav {
    gap: 12px;
    padding: calc(12px + env(safe-area-inset-top)) 14px 12px;
    background: linear-gradient(180deg, rgba(3, 31, 41, .72), rgba(3, 31, 41, .12) 82%, transparent);
  }

  .vf-nav.is-scrolled {
    background: rgba(3, 31, 41, .78);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(3, 31, 41, .18);
  }

  .vf-nav__links {
    display: none;
  }

  .vf-nav__contact {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .vf-nav__brand img {
    width: min(52vw, 178px);
  }

  .vf-hero__content {
    padding-right: 0;
    padding-bottom: 10px;
  }

  .vf-hero h1 {
    max-width: 92vw;
    font-size: clamp(50px, 15.6vw, 76px);
  }

  .vf-hero__actions {
    gap: 10px;
  }

  .vf-hero__actions .vf-btn {
    min-height: 48px;
    padding-inline: 18px;
  }

  .vf-lightbox {
    display: none;
    padding: 0;
    background: #031f29;
    touch-action: pan-y;
  }

  .vf-lightbox.is-open {
    display: grid;
    grid-template-rows: 1fr;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .vf-lightbox__frame {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: grid;
    place-items: center;
    padding: calc(64px + env(safe-area-inset-top)) 0 calc(52px + env(safe-area-inset-bottom));
    z-index: 1;
  }

  .vf-lightbox img {
    width: 100vw;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
  }

  .vf-lightbox .vf-lightbox__close {
    top: calc(14px + env(safe-area-inset-top));
    right: 14px;
    z-index: 6;
    width: 46px;
    height: 46px;
    background: rgba(251, 246, 239, .92);
    backdrop-filter: blur(14px);
  }

  .vf-lightbox .vf-lightbox__prev,
  .vf-lightbox .vf-lightbox__next {
    display: none;
  }

  .vf-lightbox__zone {
    display: block;
    position: fixed;
    top: 72px;
    bottom: 48px;
    z-index: 5;
    width: 34vw;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: transparent;
    -webkit-tap-highlight-color: transparent;
  }

  .vf-lightbox__zone--prev {
    left: 0;
  }

  .vf-lightbox__zone--next {
    right: 0;
  }

  .vf-lightbox__count {
    position: fixed;
    left: 50%;
    bottom: calc(16px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 6;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(3, 31, 41, .56);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, .86);
  }
}


/* v1.5 gallery mobile fixes */
.vf-lightbox {
  z-index: 2147483600 !important;
  isolation: isolate;
}

.vf-lightbox.is-open {
  position: fixed !important;
  inset: 0 !important;
}

.vf-lightbox .vf-lightbox__close,
.vf-lightbox .vf-lightbox__prev,
.vf-lightbox .vf-lightbox__next,
.vf-lightbox__count,
.vf-lightbox__hint {
  z-index: 2147483641 !important;
}

.vf-lightbox__hint {
  display: none;
}

@media (max-width: 700px) {
  .vf-lightbox {
    z-index: 2147483600 !important;
    background: #031f29;
  }

  .vf-lightbox.is-open {
    display: block;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
  }

  .vf-lightbox__frame {
    z-index: 2147483601 !important;
    padding: calc(58px + env(safe-area-inset-top)) 0 calc(58px + env(safe-area-inset-bottom));
  }

  .vf-lightbox img {
    will-change: transform, opacity;
    touch-action: none;
  }

  .vf-lightbox .vf-lightbox__close {
    position: fixed !important;
    top: calc(14px + env(safe-area-inset-top)) !important;
    right: 14px !important;
    z-index: 2147483642 !important;
    display: grid !important;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(251, 246, 239, .96);
    color: var(--vf-blue-dark);
    font-size: 28px;
    line-height: 1;
    box-shadow: 0 16px 45px rgba(0, 0, 0, .34);
  }

  .vf-lightbox .vf-lightbox__prev,
  .vf-lightbox .vf-lightbox__next {
    display: grid !important;
    place-items: center;
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 2147483641 !important;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(251, 246, 239, .78);
    color: var(--vf-blue-dark);
    font-size: 32px;
    line-height: 1;
    box-shadow: 0 14px 42px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
  }

  .vf-lightbox .vf-lightbox__prev {
    left: max(12px, env(safe-area-inset-left));
  }

  .vf-lightbox .vf-lightbox__next {
    right: max(12px, env(safe-area-inset-right));
  }

  .vf-lightbox__zone {
    z-index: 2147483620 !important;
    top: calc(64px + env(safe-area-inset-top));
    bottom: calc(58px + env(safe-area-inset-bottom));
    width: 38vw;
  }

  .vf-lightbox__hint {
    display: block;
    position: fixed;
    left: 50%;
    bottom: calc(52px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(251, 246, 239, .12);
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    pointer-events: none;
    backdrop-filter: blur(12px);
  }

  .vf-lightbox__count {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}
