:root {
  --vf-black: #070707;
  --vf-ink: #0d0d0e;
  --vf-surface: #141415;
  --vf-surface-raised: #1b1b1d;
  --vf-surface-soft: #222225;
  --vf-gold: #c1a15e;
  --vf-gold-light: #ddc88d;
  --vf-gold-dark: #8f6c2a;
  --vf-gold-deep: #65491b;
  --vf-gold-gradient: linear-gradient(135deg, #d2b675 0%, #c1a15e 52%, #95712f 100%);
  --vf-white: #fffdf7;
  --vf-text: #d5d2ca;
  --vf-muted: #9f9c94;
  --vf-line: rgba(193, 161, 94, 0.22);
  --vf-line-strong: rgba(193, 161, 94, 0.48);
  --vf-radius-sm: 12px;
  --vf-radius: 20px;
  --vf-radius-lg: 30px;
  --vf-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  --vf-display-size: clamp(2.65rem, 4.8vw, 4.4rem);
  --vf-page-title-size: clamp(2.55rem, 4.7vw, 4.25rem);
  --vf-section-title-size: clamp(2rem, 3.2vw, 2.8rem);
  --vf-card-title-size: clamp(1.3rem, 2vw, 1.75rem);
}

html {
  scroll-behavior: smooth;
  background: var(--vf-black);
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(193, 161, 94, 0.07), transparent 28rem),
    var(--vf-black) !important;
  color: var(--vf-text) !important;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--vf-gold);
  color: var(--vf-black);
}

.page {
  overflow: clip;
  background: transparent;
}

/* Branded page transition */
.preloader {
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(193, 161, 94, 0.12), transparent 18rem),
    #070707 !important;
  color: var(--vf-white);
  transition: opacity 320ms ease, visibility 320ms ease;
}

.preloader::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(193, 161, 94, 0.18);
  border-radius: 24px;
  content: "";
  pointer-events: none;
}

.preloader-body {
  display: grid;
  min-width: 230px;
  place-items: center;
  gap: 18px;
  text-align: center;
}

.preloader-logo {
  width: 142px;
  height: 80px;
  object-fit: contain;
}

.preloader .cssload-jumping {
  display: flex;
  width: auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}

.preloader .cssload-jumping span {
  width: 10px;
  height: 10px;
  margin: 0;
  border: 1px solid rgba(221, 200, 141, 0.55);
  background: var(--vf-gold);
  box-shadow: 0 0 16px rgba(193, 161, 94, 0.28);
  animation: vf-loader-pulse 1.05s ease-in-out infinite;
}

.preloader .cssload-jumping span:nth-child(1) {
  animation-delay: -0.4s;
}

.preloader .cssload-jumping span:nth-child(2) {
  animation-delay: -0.3s;
}

.preloader .cssload-jumping span:nth-child(3) {
  animation-delay: -0.2s;
}

.preloader .cssload-jumping span:nth-child(4) {
  animation-delay: -0.1s;
}

.preloader .cssload-jumping span:nth-child(5) {
  animation-delay: 0s;
}

.preloader-copy {
  position: static !important;
  right: auto !important;
  margin: 0 !important;
  color: var(--vf-gold-light) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes vf-loader-pulse {
  0%,
  100% {
    opacity: 0.28;
    transform: translateY(0) scale(0.68);
  }

  50% {
    opacity: 1;
    background: var(--vf-gold-light);
    box-shadow: 0 0 22px rgba(221, 200, 141, 0.55);
    transform: translateY(-7px) scale(1);
  }
}

.container {
  width: min(100% - 32px, 1200px);
  max-width: 1200px;
}

h1,
h2,
h3,
h4,
h5,
h6,
[class^="heading-"] {
  color: var(--vf-white) !important;
  font-family: "Playfair Display", serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  text-transform: none !important;
}

h1 {
  font-size: var(--vf-display-size);
  line-height: 1.06;
}

h2 {
  font-size: var(--vf-section-title-size);
  line-height: 1.16;
}

h3 {
  font-size: var(--vf-card-title-size);
  line-height: 1.22;
}

p,
.text-gray-800 {
  color: var(--vf-text) !important;
}

p.big,
.big {
  color: #e4e1da !important;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

a {
  color: var(--vf-gold-light);
  transition: color 180ms ease;
}

a:hover,
a:focus {
  color: var(--vf-white);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--vf-gold-light) !important;
  outline-offset: 3px;
}

img {
  max-width: 100%;
}

.section-lg {
  padding-top: clamp(74px, 9vw, 126px) !important;
  padding-bottom: clamp(74px, 9vw, 126px) !important;
}

.section-md {
  padding-top: clamp(58px, 7vw, 92px) !important;
  padding-bottom: clamp(58px, 7vw, 92px) !important;
}

.bg-default {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.018), transparent 45%),
    var(--vf-ink) !important;
  color: var(--vf-text) !important;
}

.bg-gray-100 {
  background:
    radial-gradient(circle at 85% 20%, rgba(193, 161, 94, 0.08), transparent 26rem),
    var(--vf-surface) !important;
  color: var(--vf-text) !important;
}

.vf-section-kicker {
  margin: 0 0 10px !important;
  color: var(--vf-gold) !important;
  font-size: 0.78rem;
  font-weight: 800 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.divider,
.divider-lg,
.heading-decorate .divider {
  display: block !important;
  width: 70px !important;
  height: 3px !important;
  margin: 18px 0 24px !important;
  border: 0 !important;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--vf-gold-dark), var(--vf-gold-light), var(--vf-gold)) !important;
  box-shadow: 0 0 18px rgba(193, 161, 94, 0.25);
}

.divider::before,
.divider::after,
.divider-lg::before,
.divider-lg::after,
.heading-decorate .divider::before,
.heading-decorate .divider::after {
  display: none !important;
  content: none !important;
}

.text-center .divider,
.text-center .divider-lg,
.text-center .heading-decorate .divider {
  margin-right: auto !important;
  margin-left: auto !important;
}

.block-lg {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

/* Shared buttons */
.button {
  min-height: 50px;
}

.button.button-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 14px 30px !important;
  border: 1px solid var(--vf-gold) !important;
  border-radius: 999px !important;
  background: var(--vf-gold-gradient) !important;
  box-shadow: 0 10px 28px rgba(193, 161, 94, 0.2) !important;
  color: #17130a !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease !important;
}

.button.button-primary:hover,
.button.button-primary:focus {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 15px 34px rgba(193, 161, 94, 0.28) !important;
}

/* Header and navigation */
.rd-navbar,
.rd-navbar-classic,
.rd-navbar-main-outer,
.rd-navbar-panel,
.rd-navbar-nav-wrap {
  background: rgba(7, 7, 7, 0.97) !important;
}

.rd-navbar {
  border-bottom: 1px solid rgba(193, 161, 94, 0.13);
}

.rd-navbar-aside-outer {
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: #0c0c0d !important;
}

.rd-navbar-aside {
  min-height: 46px;
}

.header-info,
.header-info-item {
  display: flex;
  align-items: center;
}

.header-info {
  gap: 28px;
}

.header-info-item {
  gap: 9px;
  color: #dedbd4 !important;
  font-size: 0.8rem;
  line-height: 1.25;
  text-decoration: none;
}

.header-info-item > span:first-child {
  color: var(--vf-gold);
  font-size: 1.05rem;
}

.header-info-item small {
  display: block;
  margin-bottom: 2px;
  color: var(--vf-muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-socials,
.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-socials .icon,
.footer-socials .icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(193, 161, 94, 0.24);
  border-radius: 50%;
  color: var(--vf-gold-light) !important;
  font-size: 0.85rem;
  text-decoration: none;
}

.header-socials .icon:hover,
.footer-socials .icon:hover {
  border-color: var(--vf-gold);
  background: rgba(193, 161, 94, 0.1);
  color: var(--vf-white) !important;
}

.rd-navbar-main {
  min-height: 92px;
}

.rd-navbar-main-element {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.rd-navbar-brand .brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.rd-navbar-brand .vf-logo {
  width: 152px !important;
  height: 86px !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
}

.vf-logo {
  filter: drop-shadow(0 5px 12px rgba(193, 161, 94, 0.18));
}

.rd-navbar-nav {
  gap: clamp(12px, 2vw, 30px);
}

.rd-navbar-nav > li > a.rd-nav-link {
  position: relative;
  padding: 12px 2px !important;
  color: #efede7 !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
}

.rd-navbar-nav > li > a.rd-nav-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--vf-gold-dark), var(--vf-gold-light));
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.rd-navbar-nav > li > a.rd-nav-link::before {
  display: none !important;
  content: none !important;
}

.rd-navbar-nav > li > a.rd-nav-link:hover,
.rd-navbar-nav > li.active > a.rd-nav-link {
  color: var(--vf-gold-light) !important;
}

.rd-navbar-nav > li > a.rd-nav-link:hover::after,
.rd-navbar-nav > li.active > a.rd-nav-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.navbar-book-button {
  flex: 0 0 auto;
}

.navbar-book-button .button {
  min-height: 44px;
  padding: 11px 24px !important;
}

.rd-navbar.rd-navbar-stuck {
  border-bottom-color: rgba(193, 161, 94, 0.34) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45) !important;
}

.rd-navbar-toggle span,
.rd-navbar-toggle span::before,
.rd-navbar-toggle span::after,
.rd-navbar-collapse-toggle span,
.rd-navbar-collapse-toggle span::before,
.rd-navbar-collapse-toggle span::after {
  background: var(--vf-gold-light) !important;
}

/* Home hero */
.swiper-slider-1 {
  min-height: min(760px, calc(100vh - 138px));
  background: var(--vf-black);
}

.swiper-slider-1 .swiper-slide,
.swiper-slider-1 .slide-bg {
  min-height: min(760px, calc(100vh - 138px));
}

.swiper-slider-1 .slide-bg {
  filter: saturate(0.72) contrast(1.08);
}

.swiper-slider-1 .swiper-slide::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.86) 0%, rgba(4, 4, 4, 0.48) 48%, rgba(4, 4, 4, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 4, 4, 0.36), transparent 45%);
  content: "";
  pointer-events: none;
}

.swiper-slide-caption {
  z-index: 2;
}

.slider-caption-box {
  width: min(680px, 100%);
  max-width: 100%;
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid rgba(193, 161, 94, 0.35);
  border-radius: var(--vf-radius-lg);
  background: linear-gradient(145deg, rgba(8, 8, 8, 0.88), rgba(18, 18, 19, 0.72));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
}

.slider-caption-box h1,
.slider-caption-box h2 {
  margin-bottom: 20px;
  color: var(--vf-white) !important;
  font-size: var(--vf-display-size) !important;
  line-height: 1.06;
}

.slider-caption-box .divider {
  margin: 15px 0 20px !important;
}

.slider-caption-box .lead {
  display: block !important;
  max-width: 56ch;
  margin-bottom: 28px;
  color: #e0ddd7 !important;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.75;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--vf-gold) !important;
}

.swiper-button-prev line,
.swiper-button-prev polyline,
.swiper-button-next line,
.swiper-button-next polyline {
  stroke: var(--vf-gold-light);
}

.swiper-pagination .swiper-pagination-bullet {
  border-color: rgba(193, 161, 94, 0.7);
}

.swiper-pagination .swiper-pagination-bullet::before {
  background: var(--vf-gold);
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination .swiper-pagination-bullet:hover {
  border-color: var(--vf-gold);
}

.swiper-counter {
  border-color: rgba(193, 161, 94, 0.7);
  color: var(--vf-gold-light);
}

/* Content imagery and cards */
.block-parallax-element,
.box-images-classic,
.box-images,
.quote-with-image,
.block-image,
.box-video {
  position: relative;
}

.block-parallax-element img,
.box-image-item img,
.box-images-item img,
.quote-img img,
.block-image img,
.box-video > img {
  width: 100% !important;
  height: auto !important;
  border-radius: var(--vf-radius) !important;
  object-fit: cover;
  box-shadow: var(--vf-shadow);
}

.block-parallax-element img {
  max-width: 470px;
  aspect-ratio: 4 / 5;
}

.box-image-item img {
  aspect-ratio: 3 / 4;
}

.box-images-item img {
  aspect-ratio: 5 / 3;
}

.block-image img,
.box-video > img {
  aspect-ratio: 3 / 2;
}

.block-parallax-element::after,
.box-images-classic::after,
.quote-with-image::after {
  position: absolute;
  z-index: -1;
  border: 1px solid var(--vf-line-strong);
  border-radius: var(--vf-radius);
  content: "";
}

.block-parallax-element::after {
  inset: 26px -16px -18px 30px;
}

.box-images-classic::after {
  inset: 24px -15px -16px 22px;
}

.quote-with-image::after {
  inset: 18px -12px -12px 18px;
}

.prev-element,
.next-element {
  background: var(--vf-gold-gradient) !important;
  box-shadow: 0 10px 30px rgba(193, 161, 94, 0.24);
}

.signature-services-section {
  border-top: 1px solid var(--vf-line);
  border-bottom: 1px solid var(--vf-line);
}

.team-minimal {
  overflow: hidden;
  border: 1px solid rgba(193, 161, 94, 0.18);
  border-radius: var(--vf-radius);
  background: var(--vf-surface-raised) !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.team-minimal figure {
  overflow: hidden;
}

.team-minimal figure img {
  width: 100%;
  object-fit: cover;
  transition: transform 350ms ease, filter 350ms ease;
}

.team-minimal:hover figure img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.team-minimal-caption {
  min-height: 92px;
  padding: 22px 16px !important;
  background: linear-gradient(180deg, #19191b, #101011) !important;
  text-align: center;
}

.team-minimal-caption h4,
.team-minimal-caption p,
.team-minimal-caption a {
  color: var(--vf-white) !important;
}

.team-minimal-caption h4::after {
  display: block;
  width: 34px;
  height: 2px;
  margin: 10px auto 0;
  border-radius: 99px;
  background: var(--vf-gold);
  content: "";
}

.quote-caption {
  border-color: var(--vf-gold) !important;
  background: var(--vf-gold-gradient) !important;
}

.quote-caption .quote-text {
  color: #151109 !important;
}

.quote-corporate {
  min-height: 100%;
  padding: 30px !important;
  border: 1px solid rgba(193, 161, 94, 0.2);
  border-radius: var(--vf-radius) !important;
  background: linear-gradient(145deg, #1a1a1c, #101011) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24) !important;
}

.quote-corporate h4,
.quote-corporate p {
  color: var(--vf-white) !important;
}

.quote-body-mark path {
  fill: var(--vf-gold) !important;
}

.box-video {
  overflow: hidden;
  border-radius: var(--vf-radius);
}

.button-play {
  border-color: var(--vf-gold) !important;
  background: var(--vf-gold) !important;
  color: #111 !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.vf-value-grid {
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}

.vf-value-card {
  min-height: 100%;
  padding: clamp(25px, 4vw, 38px);
  border: 1px solid var(--vf-line);
  border-radius: var(--vf-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent), var(--vf-surface);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.vf-value-card > .icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid var(--vf-line-strong);
  border-radius: 50%;
  background: rgba(193, 161, 94, 0.08);
  color: var(--vf-gold-light);
  font-size: 1.45rem;
}

.vf-value-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.vf-value-card p {
  margin: 0;
}

.about-promise-card {
  display: grid;
  align-items: center;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--vf-line-strong);
  border-radius: var(--vf-radius-lg);
  background:
    radial-gradient(circle at 90% 15%, rgba(193, 161, 94, 0.13), transparent 22rem),
    var(--vf-surface-raised);
  box-shadow: var(--vf-shadow);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: clamp(38px, 7vw, 90px);
}

.about-promise-card .button {
  margin-top: 15px;
}

.about-promise-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-promise-list li {
  position: relative;
  min-height: 64px;
  padding: 4px 0 18px 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-promise-list li + li {
  margin-top: 18px;
}

.about-promise-list li:last-child {
  padding-bottom: 4px;
  border-bottom: 0;
}

.about-promise-list .mdi {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--vf-line);
  border-radius: 50%;
  color: var(--vf-gold-light);
  font-size: 1.2rem;
}

.about-promise-list strong,
.about-promise-list small {
  display: block;
}

.about-promise-list strong {
  color: var(--vf-white);
  font-size: 0.98rem;
}

.about-promise-list small {
  margin-top: 4px;
  color: var(--vf-muted);
  line-height: 1.5;
}

/* Interior page mastheads */
.section-page-title {
  position: relative;
  display: flex;
  min-height: clamp(260px, 34vw, 430px);
  align-items: flex-end;
  padding: 64px 0 !important;
  overflow: hidden;
  background-position: center !important;
  background-size: cover !important;
}

.section-page-title::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.14) 72%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.46), transparent 55%);
  content: "";
}

.section-page-title .container {
  position: relative;
  z-index: 1;
}

.page-title {
  margin: 0;
  color: var(--vf-white) !important;
  font-size: var(--vf-page-title-size);
  line-height: 1.06;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.breadcrumbs-custom {
  padding: 16px 0 !important;
  border-top: 1px solid var(--vf-line);
  border-bottom: 1px solid var(--vf-line);
  background: #0b0b0c !important;
}

.breadcrumbs-custom-path {
  margin: 0;
}

.breadcrumbs-custom-path li,
.breadcrumbs-custom-path li a {
  color: var(--vf-muted) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs-custom-path li.active {
  color: var(--vf-gold-light) !important;
}

.breadcrumbs-custom-path li::after {
  color: var(--vf-gold) !important;
}

.parallax-content.section-filter-dark {
  background: rgba(5, 5, 5, 0.72);
}

/* Contact */
.contact-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(193, 161, 94, 0.08), transparent 25rem),
    var(--vf-ink) !important;
}

.contact-form-card,
.contact-details-card {
  height: 100%;
  border: 1px solid var(--vf-line);
  border-radius: var(--vf-radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent), var(--vf-surface);
  box-shadow: var(--vf-shadow);
}

.contact-form-card {
  padding: clamp(26px, 5vw, 52px);
}

.contact-details-card {
  margin: 0;
  padding: clamp(24px, 4vw, 38px) !important;
}

.contact-list > li {
  padding: 0 0 24px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-list > li + li {
  margin-top: 24px;
}

.contact-list > li:last-child {
  padding-bottom: 0 !important;
  border-bottom: 0;
}

.contact-list-title {
  margin-bottom: 10px !important;
  color: var(--vf-gold-light) !important;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700 !important;
}

.contact-list-content {
  color: var(--vf-text);
}

.contact-list-content .icon {
  color: var(--vf-gold) !important;
}

.contact-list-content a {
  color: var(--vf-white) !important;
}

.form-input {
  min-height: 54px !important;
  border: 1px solid rgba(193, 161, 94, 0.42) !important;
  border-radius: var(--vf-radius-sm) !important;
  background: #0d0d0e !important;
  color: var(--vf-white) !important;
}

.form-input:focus {
  border-color: var(--vf-gold-light) !important;
  box-shadow: 0 0 0 3px rgba(193, 161, 94, 0.14) !important;
}

.form-label {
  color: #bdb9af !important;
}

textarea.form-input {
  min-height: 150px !important;
  resize: vertical;
}

/* Gallery */
.gallery-intro {
  max-width: 760px;
  margin: 0 auto 52px;
}

.gallery-grid {
  column-count: 4;
  column-gap: 18px;
}

.gallery-item {
  position: relative;
  margin: 0 0 18px;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(193, 161, 94, 0.2);
  border-radius: 18px;
  background: var(--vf-surface);
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.25);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.72), transparent 45%);
  content: "";
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 320ms ease, transform 320ms ease;
}

.gallery-item:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.gallery-item:hover::after {
  opacity: 0.82;
}

.view-button {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  min-width: 72px;
  min-height: 42px;
  padding: 8px 15px;
  border: 1px solid rgba(221, 200, 141, 0.7);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.78);
  color: var(--vf-gold-light);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
  backdrop-filter: blur(8px);
}

.gallery-item:hover .view-button,
.gallery-item:focus-within .view-button {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-overlay {
  position: fixed;
  z-index: 100000;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 68px;
  background: rgba(3, 3, 3, 0.96);
  backdrop-filter: blur(12px);
}

.lightbox-image {
  max-width: min(1080px, 88vw);
  max-height: 80vh;
  border: 1px solid var(--vf-line-strong);
  border-radius: var(--vf-radius);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.62);
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--vf-line-strong);
  border-radius: 50%;
  background: rgba(15, 15, 16, 0.9);
  color: var(--vf-gold-light);
  cursor: pointer;
  font-size: 1.6rem;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  right: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
  pointer-events: auto;
}

/* FAQ */
.vf-faq-section {
  border-top: 1px solid var(--vf-line);
}

.vf-faq-grid {
  display: grid;
  max-width: 1040px;
  margin: 42px auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vf-faq-grid details {
  overflow: hidden;
  padding: 0 22px;
  border: 1px solid var(--vf-line);
  border-radius: 16px;
  background: var(--vf-surface);
  transition: border-color 180ms ease, background 180ms ease;
}

.vf-faq-grid details[open] {
  border-color: var(--vf-line-strong);
  background: var(--vf-surface-raised);
}

.vf-faq-grid summary {
  position: relative;
  min-height: 70px;
  padding: 21px 36px 21px 0;
  color: var(--vf-white);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.vf-faq-grid summary::-webkit-details-marker {
  display: none;
}

.vf-faq-grid summary::after {
  position: absolute;
  top: 16px;
  right: 0;
  color: var(--vf-gold);
  content: "+";
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
}

.vf-faq-grid details[open] summary::after {
  content: "−";
}

.vf-faq-grid details p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--vf-text) !important;
}

/* Map and footer */
.salon-map {
  height: 390px;
  overflow: hidden;
  border-top: 1px solid var(--vf-line);
  border-bottom: 1px solid var(--vf-line);
  background: var(--vf-black);
}

.salon-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) brightness(0.64) contrast(1.18);
  transition: filter 250ms ease;
}

.salon-map:hover iframe,
.salon-map:focus-within iframe {
  filter: grayscale(0.5) brightness(0.76) contrast(1.1);
}

.site-footer {
  padding: clamp(64px, 8vw, 100px) 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.035);
  background:
    radial-gradient(circle at 15% 20%, rgba(193, 161, 94, 0.09), transparent 25rem),
    #09090a !important;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.15fr 1fr;
  gap: clamp(28px, 4vw, 58px);
}

.footer-intro {
  max-width: 320px;
}

.footer-brand .vf-logo {
  width: 150px;
  height: 88px;
  object-fit: contain;
}

.footer-intro p {
  margin: 18px 0;
  color: #b7b3aa !important;
  font-size: 0.93rem;
}

.footer-book-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--vf-gold-light) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-book-link span {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.footer-book-link:hover span {
  transform: translateX(4px);
}

.footer-column h2 {
  margin: 20px 0 18px;
  color: var(--vf-gold-light) !important;
  font-family: "Lato", sans-serif !important;
  font-size: 0.76rem;
  font-weight: 900 !important;
  letter-spacing: 0.13em;
  text-transform: uppercase !important;
}

.footer-column address,
.footer-column p,
.footer-column a,
.footer-column dt,
.footer-column dd {
  color: #c4c1b8 !important;
  font-size: 0.9rem;
  font-style: normal;
}

.footer-column > a {
  color: var(--vf-gold) !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-hours {
  margin: 0;
}

.footer-hours > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-hours dt {
  color: var(--vf-white) !important;
  font-weight: 700;
}

.footer-hours dd {
  margin: 0;
  white-space: nowrap;
}

.footer-note {
  margin-top: 13px;
  color: var(--vf-muted) !important;
  font-size: 0.76rem !important;
  line-height: 1.55;
}

.footer-contact {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.footer-contact li + li {
  margin-top: 7px;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--vf-muted) !important;
  font-size: 0.78rem;
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
}

.footer-bottom nav a {
  color: #bbb7ad !important;
  font-size: 0.78rem;
}

/* Floating actions */
.whatsapp-button {
  position: fixed;
  z-index: 9998;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--vf-gold);
  border-radius: 50%;
  background: var(--vf-gold-gradient);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-button img {
  width: 28px;
  height: 28px;
  filter: brightness(0);
}

.whatsapp-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 42px rgba(193, 161, 94, 0.22);
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  padding: 7px 11px;
  border: 1px solid var(--vf-line);
  border-radius: 8px;
  background: var(--vf-surface-raised);
  color: var(--vf-white);
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 180ms ease;
}

.whatsapp-button:hover .whatsapp-tooltip,
.whatsapp-button:focus .whatsapp-tooltip {
  opacity: 1;
}

.fixed-book-now {
  display: none;
}

.ui-to-top {
  right: 92px !important;
  bottom: 31px !important;
  display: grid !important;
  width: 46px !important;
  height: 46px !important;
  place-items: center;
  border: 1px solid var(--vf-line-strong) !important;
  border-radius: 50% !important;
  background: var(--vf-surface-raised) !important;
  color: var(--vf-gold-light) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3) !important;
}

/* Booking modal */
body.booking-modal-open {
  overflow: hidden !important;
}

.booking-modal-overlay {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 2, 2, 0.88);
  backdrop-filter: blur(10px);
}

.booking-modal-frame {
  position: relative;            /* positioning context for the close button, no overflow clipping */
  animation: bookingModalIn 240ms ease both;
}

.booking-modal-box {
  /* The booking app is mobile-first, so on desktop it is presented as a
     phone-proportioned panel rather than stretched across the screen. */
  position: relative;
  width: min(470px, 94vw);
  height: min(900px, 92vh);
  overflow: hidden;
  border: 1px solid var(--vf-line-strong);
  border-radius: 32px;
  background: var(--vf-black);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.72);
}

.booking-modal-box.is-closing {
  animation: bookingModalOut 220ms ease both;
}

.booking-modal-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0b0c;
}

.close-booking-modal {
  position: absolute;
  z-index: 3;
  top: -8px;
  right: -60px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--vf-line-strong);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.9);
  color: var(--vf-gold-light);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  backdrop-filter: blur(8px);
}

@keyframes bookingModalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes bookingModalOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(18px) scale(0.985); }
}

/* Responsive */
@media (max-width: 1199.98px) {
  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-intro {
    max-width: 420px;
  }

  .gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 58px;
  }

  html.rd-navbar-fixed-linked .page {
    padding-top: 0;
  }

  .rd-navbar-main {
    min-height: 76px;
  }

  .rd-navbar-fixed {
    border-bottom: 0 !important;
  }

  .rd-navbar-fixed .rd-navbar-panel {
    height: 76px !important;
    padding: 0 12px !important;
    border-bottom: 1px solid var(--vf-line);
    background: rgba(7, 7, 7, 0.98) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
  }

  .rd-navbar-fixed .rd-navbar-brand {
    margin-left: 10px;
    line-height: 1;
  }

  .rd-navbar-fixed .rd-navbar-brand .vf-logo {
    width: 110px !important;
    height: 62px !important;
  }

  .rd-navbar-main-element {
    display: block;
  }

  .rd-navbar-fixed .rd-navbar-nav-wrap {
    top: 76px;
    bottom: 58px;
    width: 100vw;
    padding: 22px 18px 34px;
    border: 0;
    background:
      radial-gradient(circle at 10% 0%, rgba(193, 161, 94, 0.1), transparent 20rem),
      #090909 !important;
    box-shadow: none;
    color: var(--vf-white);
    transform: translateX(-101%);
  }

  .rd-navbar-fixed .rd-navbar-nav-wrap.active {
    transform: translateX(0);
  }

  .rd-navbar-fixed .rd-navbar-nav-wrap::-webkit-scrollbar {
    width: 5px;
  }

  .rd-navbar-fixed .rd-navbar-nav-wrap::-webkit-scrollbar-track {
    background: #090909;
  }

  .rd-navbar-fixed .rd-navbar-nav-wrap::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--vf-gold-dark);
  }

  .rd-navbar-fixed .rd-navbar-nav {
    width: min(100%, 520px);
    gap: 0;
    margin: 0 auto;
  }

  .rd-navbar-fixed .rd-nav-item,
  .rd-navbar-fixed .rd-nav-item + .rd-nav-item {
    margin: 0;
  }

  .rd-navbar-fixed .rd-nav-item > a.rd-nav-link {
    display: flex;
    min-height: 64px;
    align-items: center;
    padding: 16px 18px !important;
    border-bottom: 1px solid rgba(193, 161, 94, 0.16);
    background: transparent !important;
    color: #efede7 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.13em !important;
  }

  .rd-navbar-fixed .rd-nav-item > a.rd-nav-link::after {
    display: none;
  }

  .rd-navbar-fixed .rd-nav-item.active > a.rd-nav-link {
    border-left: 3px solid var(--vf-gold);
    background: linear-gradient(90deg, rgba(193, 161, 94, 0.18), rgba(193, 161, 94, 0.03)) !important;
    color: var(--vf-gold-light) !important;
  }

  .rd-navbar-fixed .rd-nav-item:not(.active):hover > a.rd-nav-link,
  .rd-navbar-fixed .rd-nav-item:not(.active).focus > a.rd-nav-link,
  .rd-navbar-fixed .rd-nav-item:not(.active) > a.rd-nav-link:focus {
    background: rgba(193, 161, 94, 0.055) !important;
    color: var(--vf-gold-light) !important;
  }

  .rd-navbar-fixed .rd-navbar-toggle,
  .rd-navbar-fixed .rd-navbar-collapse-toggle {
    appearance: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(193, 161, 94, 0.48);
    border-radius: 12px;
    background: rgba(193, 161, 94, 0.055);
    color: var(--vf-gold-light);
    line-height: 46px;
  }

  .rd-navbar-fixed .rd-navbar-toggle {
    flex: 0 0 46px;
  }

  .rd-navbar-fixed .rd-navbar-toggle span,
  .rd-navbar-fixed .rd-navbar-toggle span::before,
  .rd-navbar-fixed .rd-navbar-toggle span::after {
    width: 22px;
    height: 2px;
    border-radius: 99px;
  }

  .rd-navbar-fixed .rd-navbar-toggle span::before {
    top: -7px;
  }

  .rd-navbar-fixed .rd-navbar-toggle span::after {
    top: 7px;
  }

  .rd-navbar-fixed .rd-navbar-toggle.active span {
    background: transparent !important;
    transform: none;
  }

  .rd-navbar-fixed .rd-navbar-toggle.active span::before,
  .rd-navbar-fixed .rd-navbar-toggle.active span::after {
    top: 0;
    width: 22px;
    transform-origin: center;
  }

  .rd-navbar-fixed .rd-navbar-toggle.active span::before {
    transform: rotate(45deg);
  }

  .rd-navbar-fixed .rd-navbar-toggle.active span::after {
    transform: rotate(-45deg);
  }

  .rd-navbar-fixed [class*="rd-navbar-fixed-element"] {
    top: 15px;
  }

  .rd-navbar-fixed .rd-navbar-fixed-element-1 {
    right: 12px;
  }

  .rd-navbar-fixed .rd-navbar-collapse {
    top: 76px;
    right: 12px;
    width: min(360px, calc(100vw - 24px));
    padding: 20px;
    border: 1px solid var(--vf-line-strong);
    border-radius: 0 0 18px 18px;
    background: #111112 !important;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.52);
  }

  .rd-navbar-fixed .rd-navbar-collapse,
  .rd-navbar-fixed .rd-navbar-collapse a {
    color: var(--vf-white);
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  body.mobile-nav-open .whatsapp-button,
  body.mobile-nav-open .ui-to-top {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .navbar-book-button {
    display: none;
  }

  .header-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .header-socials {
    margin-top: 20px;
  }

  .swiper-slider-1,
  .swiper-slider-1 .swiper-slide,
  .swiper-slider-1 .slide-bg {
    min-height: 650px;
  }

  .slider-caption-box {
    width: min(640px, 100%);
  }

  .block-parallax-element::after,
  .box-images-classic::after,
  .quote-with-image::after {
    display: none;
  }

  .contact-details-card {
    height: auto;
  }

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

  .about-promise-card {
    grid-template-columns: 1fr;
  }

  .fixed-book-now {
    position: fixed;
    z-index: 9997;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 11px 18px;
    border-top: 1px solid var(--vf-gold-dark);
    background: var(--vf-gold-gradient);
    box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.38);
    text-align: center;
  }

  .fixed-book-now a {
    display: block;
    color: #151109 !important;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .whatsapp-button {
    right: 16px;
    bottom: 76px;
    width: 54px;
    height: 54px;
  }

  .ui-to-top {
    right: 80px !important;
    bottom: 80px !important;
  }

  .booking-modal-overlay {
    padding: 0;
  }

  .booking-modal-frame {
    width: 100vw;
    height: 100dvh;
  }

  .booking-modal-box {
    width: 100vw;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .close-booking-modal {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --vf-display-size: clamp(2.15rem, 8vw, 3.2rem);
    --vf-page-title-size: clamp(2.3rem, 8vw, 3.15rem);
    --vf-section-title-size: clamp(1.75rem, 6vw, 2.3rem);
    --vf-card-title-size: clamp(1.22rem, 4.5vw, 1.55rem);
  }

  .container {
    width: min(100% - 24px, 1200px);
  }

  .section-page-title {
    min-height: 260px;
    padding-bottom: 42px !important;
  }

  .swiper-slider-1 .swiper-slide::before {
    background: linear-gradient(90deg, rgba(4, 4, 4, 0.82), rgba(4, 4, 4, 0.4));
  }

  .slider-caption-box {
    width: 100%;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .slider-caption-box .lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-intro {
    max-width: none;
  }

  .footer-column {
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 38px;
  }

  .gallery-grid {
    column-count: 2;
    column-gap: 12px;
  }

  .gallery-item {
    margin-bottom: 12px;
    border-radius: 13px;
  }

  .view-button {
    right: 9px;
    bottom: 9px;
    min-width: 60px;
    min-height: 38px;
    opacity: 1;
    transform: none;
  }

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

  .salon-map {
    height: 320px;
  }

  .lightbox-overlay {
    padding: 68px 12px 24px;
  }

  .lightbox-nav {
    right: 10px;
    left: 10px;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 479.98px) {
  .gallery-grid {
    column-count: 1;
  }

  .footer-hours > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
