/* ================================================================
   WestVibe Child Theme � westvibe.css
   All brand colors consumed via CSS custom properties from :root.
   Variables are injected by westvibe-core plugin (class-brand-frontend.php).
   This file NEVER hardcodes brand colors except as fallback defaults.
   Prefix: .wv-
   ================================================================ */

/* -- Non-color theme variables (not managed by plugin) ---------------------- */
:root {
  --wv-font-luxury: "Mirage", "Made Mirage", "Giaza Pro", "Nectar Bold", "GFS Didot", "Playfair Display", Georgia, serif;
  --wv-font-display: var(--wv-font-luxury);
  --wv-font-body: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wv-transition: 0.3s ease;
  --wv-radius: 3px;
  --wv-radius-lg: 8px;

  /* -- West Vibe 2.0 Home palette (warm editorial) ----------------------- */
  --wv-home-ivory: #F7F1E6;
  --wv-home-cream: #EFE5D3;
  --wv-home-beige: #DFD2BC;
  --wv-home-espresso: #1B1713;
  --wv-home-warm-gold: #B88A3B;
  --wv-home-warm-brown: #7A5A32;
  --wv-home-muted: #6F675D;
  --wv-shadow-sm: 0 8px 22px rgba(17, 17, 17, 0.06);
  --wv-shadow-md: 0 18px 45px rgba(17, 17, 17, 0.10);
  --wv-shadow-lg: 0 28px 80px rgba(17, 17, 17, 0.14);
  --wv-luxury-border: 1px solid rgba(200, 164, 93, 0.24);
  --wv-card-bg: rgba(255, 255, 255, 0.88);
  --wv-card-bg-solid: var(--wv-white, #ffffff);
  --wv-z-header: 100;
  --wv-z-mobile-menu: 200;
  --wv-z-overlay: 10;
  --wv-z-content: 20;
}

/* -- Base reset ------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: var(--wv-scroll-behavior, smooth);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--wv-font-body);
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 164, 93, 0.08), transparent 32%),
    linear-gradient(180deg, var(--wv-white, #ffffff) 0%, var(--wv-ivory, #fbf7ef) 100%);
  color: var(--wv-text-dark, #111111);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: rgba(200, 164, 93, 0.28);
  color: var(--wv-text-dark, #111111);
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

/* -- Typography ------------------------------------------------------------ */
.wv-display {
  font-family: var(--wv-font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.wv-eyebrow {
  display: block;
  font-size: 0.6875rem; /* 11px */
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wv-gold, #c8a45d);
}

.wv-page-title {
  font-family: var(--wv-font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--wv-text-dark, #111111);
  margin: 0;
}

/* -- Layout helpers --------------------------------------------------------- */
.wv-container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.wv-container--wide {
  max-width: 1440px;
}

.wv-section {
  padding-block: clamp(64px, 9vw, 120px);
}

.wv-section--dark,
.wv-section--soft {
  background:
    radial-gradient(circle at top left, rgba(200, 164, 93, 0.08), transparent 34%),
    var(--wv-ivory, #fbf7ef);
  color: var(--wv-text-dark, #111111);
}
.wv-section--ivory { background-color: var(--wv-ivory, #fbf7ef); color: var(--wv-text-dark, #111111); }
.wv-section--white { background-color: var(--wv-white, #ffffff);  color: var(--wv-text-dark, #111111); }

.wv-section-cta {
  text-align: center;
  margin-top: 48px;
}

.wv-section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.wv-section-title {
  font-family: var(--wv-font-display);
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 700;
  margin: 12px 0 16px;
  color: var(--wv-text-white, #111111);
}

.wv-section-title--dark {
  color: var(--wv-text-dark, #050505);
}

.wv-section-desc {
  font-size: 1rem;
  color: var(--wv-muted, #6f685f);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.7;
}

/* -- Buttons --------------------------------------------------------------- */
.wv-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75em 1.875em;
  font-family: var(--wv-font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--wv-radius);
  cursor: pointer;
  transition:
    background var(--wv-transition),
    color var(--wv-transition),
    border-color var(--wv-transition),
    transform var(--wv-transition),
    box-shadow var(--wv-transition);
  white-space: nowrap;
  text-decoration: none;
}

.wv-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--wv-shadow-sm);
}

.wv-button:active {
  transform: translateY(0);
  box-shadow: none;
}

.wv-button--primary {
  background: linear-gradient(135deg, var(--wv-gold, #c8a45d), var(--wv-soft-gold, #ead8ae));
  color: var(--wv-text-dark, #111111);
  border-color: rgba(200, 164, 93, 0.55);
  box-shadow: 0 14px 30px rgba(200, 164, 93, 0.22);
}

.wv-button--primary:hover {
  background: linear-gradient(135deg, var(--wv-soft-gold, #ead8ae), var(--wv-gold, #c8a45d));
  color: var(--wv-text-dark, #111111);
  border-color: rgba(200, 164, 93, 0.75);
  box-shadow: 0 18px 45px rgba(200, 164, 93, 0.32);
}

.wv-button--ghost {
  background: rgba(255, 255, 255, 0.56);
  color: var(--wv-text-dark, #111111);
  border-color: rgba(200, 164, 93, 0.44);
  backdrop-filter: blur(10px);
}

.wv-button--ghost:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--wv-gold, #c8a45d);
  color: var(--wv-text-dark, #111111);
}

.wv-button--gold-ghost {
  background: transparent;
  color: var(--wv-gold, #c8a45d);
  border-color: var(--wv-gold, #c8a45d);
}

.wv-button--gold-ghost:hover {
  background: var(--wv-gold, #c8a45d);
  color: var(--wv-black, #050505);
}

/* -- Site Header ----------------------------------------------------------- */
.wv-site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: var(--wv-z-header);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(200, 164, 93, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.04);
  transition:
    background 360ms ease,
    box-shadow 360ms ease,
    border-color 360ms ease,
    backdrop-filter 360ms ease,
    -webkit-backdrop-filter 360ms ease,
    transform 360ms ease;
  will-change: transform;
}

/* Transparent state � over hero, at top of page */
.wv-site-header[data-transparent="1"]:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.wv-site-header[data-transparent="1"]:not(.is-scrolled)::after {
  opacity: 0;
}
/* Nav links white when transparent over hero */
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-nav-list a,
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-desktop-nav > ul a {
  color: rgba(255, 255, 255, 0.88);
}
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-nav-list a:hover,
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-desktop-nav > ul a:hover {
  color: #ffffff;
}
/* Lang switcher white when transparent */
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-lang-btn {
  color: rgba(255, 255, 255, 0.78);
}
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-lang-btn:hover,
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-lang-btn--active {
  color: #ffffff;
}

/* Decorative gold gradient line � bottom of header */
.wv-site-header::after {
  content: '';
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  right: clamp(24px, 5vw, 72px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 164, 93, .20) 20%,
    rgba(200, 164, 93, .46) 50%,
    rgba(200, 164, 93, .20) 80%,
    transparent 100%
  );
  opacity: 0.75;
  pointer-events: none;
}

.wv-site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(200, 164, 93, 0.26);
  box-shadow:
    0 18px 50px rgba(17, 17, 17, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.65);
}

.wv-site-header.is-scrolled::after {
  opacity: 1;
}

.wv-site-header.is-hidden {
  transform: translateY(-100%);
}

.wv-header-inner {
  width: min(100% - 48px, 1360px);
  height: 78px;
  margin-inline: auto;
  padding-inline: clamp(18px, 3vw, 32px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

/* -- Logo ------------------------------------------------------------------ */
.wv-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: max-content;
}

/* Subtle decorative line below logo */
.wv-logo::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0.22em;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wv-gold, #c8a45d), transparent);
  opacity: 0.55;
  transform: scaleX(0.72);
  transform-origin: center;
}

.wv-logo-img {
  height: clamp(38px, 4vw, 52px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(200, 164, 93, 0.14));
}

/* Dual logo: show light version by default (transparent state),
   switch to dark version when header is scrolled / solid. */
.wv-logo-img--dark {
  display: none;
}
.wv-site-header.is-scrolled .wv-logo-img--light {
  display: none;
}
.wv-site-header.is-scrolled .wv-logo-img--dark {
  display: block;
  filter: none;
}

.wv-logo-text {
  font-family: var(--wv-font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wv-gold, #c8a45d);
  text-shadow: 0 10px 28px rgba(200, 164, 93, 0.18);
}

/* -- Desktop navigation ---------------------------------------------------- */
.wv-desktop-nav {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.wv-nav-list,
.wv-desktop-nav > ul {
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3.2vw, 48px);
  padding: 0;
  margin: 0;
}

.wv-nav-list > li,
.wv-desktop-nav > ul > li {
  height: 100%;
  display: inline-flex;
  align-items: center;
}

.wv-nav-list a,
.wv-desktop-nav > ul a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: unset;
  line-height: 1;
  color: rgba(17, 17, 17, 0.78);
  font-family: var(--wv-font-body, 'Montserrat', sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    color 0.28s ease,
    opacity 0.28s ease,
    transform 0.28s ease;
}

/* Gold gradient underline � animated from center */
.wv-nav-list a::after,
.wv-desktop-nav > ul a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wv-gold, #c8a45d), transparent);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease;
}

.wv-nav-list a:hover,
.wv-desktop-nav > ul a:hover,
.wv-nav-list a:focus-visible,
.wv-desktop-nav > ul a:focus-visible {
  color: var(--wv-text-dark, #111111);
  opacity: 1;
  transform: translateY(-1px);
}

.wv-nav-list a:hover::after,
.wv-desktop-nav > ul a:hover::after,
.wv-nav-list a:focus-visible::after,
.wv-desktop-nav > ul a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

/* -- Header actions -------------------------------------------------------- */
.wv-header-actions {
  height: 100%;
  align-self: stretch;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: max-content;
}

/* CTA Book Appointment � premium pill */
.wv-header-actions .wv-button--primary {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 44px;
  min-width: 172px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 93, 0.58);
  background:
    linear-gradient(135deg, var(--wv-gold, #c8a45d), var(--wv-soft-gold, #ead8ae));
  color: var(--wv-text-dark, #111111);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow:
    0 14px 32px rgba(200, 164, 93, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  overflow: hidden;
}

/* Shine sweep on hover */
.wv-header-actions .wv-button--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, .42) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.wv-header-actions .wv-button--primary:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 164, 93, 0.82);
  box-shadow:
    0 18px 42px rgba(200, 164, 93, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.wv-header-actions .wv-button--primary:hover::before {
  transform: translateX(120%);
}

.wv-header-actions .wv-button--primary:active {
  transform: translateY(0);
}

/* -- Language switcher � pill chip ---------------------------------------- */
.wv-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 38px;
  padding: 4px;
  border: 1px solid rgba(200, 164, 93, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
  color: rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(10px);
}

.wv-lang-btn {
  min-width: 34px;
  height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease;
}

.wv-lang-btn:hover,
.wv-lang-btn--active {
  background: linear-gradient(135deg, rgba(200, 164, 93, .22), rgba(234, 216, 174, .42));
  color: var(--wv-text-dark, #111111);
  box-shadow: 0 8px 18px rgba(200, 164, 93, .14);
}

/* -- Hamburger toggle � luxury circle -------------------------------------- */
.wv-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 164, 93, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 10px 24px rgba(17, 17, 17, .06);
  cursor: pointer;
  padding: 0;
}

.wv-hamburger-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--wv-text-dark, #111111);
  border-radius: 2px;
  transition: transform var(--wv-transition), opacity var(--wv-transition);
  transform-origin: center;
}

.wv-menu-toggle.is-active .wv-hamburger-line:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.wv-menu-toggle.is-active .wv-hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.wv-menu-toggle.is-active .wv-hamburger-line:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* -- Mobile menu � fullscreen luxury overlay ------------------------------- */
.wv-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--wv-z-mobile-menu);
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 164, 93, .18), transparent 34%),
    linear-gradient(180deg, var(--wv-white, #ffffff), var(--wv-ivory, #fbf7ef));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.wv-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.wv-mobile-menu-inner {
  width: min(100% - 48px, 520px);
  padding: 48px 24px;
  border: 1px solid rgba(200, 164, 93, .22);
  border-radius: 32px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 28px 80px rgba(17, 17, 17, .12);
  backdrop-filter: blur(18px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.wv-mobile-nav-list,
.wv-mobile-nav > ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wv-mobile-nav-list a,
.wv-mobile-nav > ul a {
  font-family: var(--wv-font-display);
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 700;
  color: var(--wv-text-dark, #111111);
  letter-spacing: 0.02em;
  transition: color var(--wv-transition);
  display: block;
  padding: 0.12em 0;
  line-height: 1.2;
}

.wv-mobile-nav-list a:hover,
.wv-mobile-nav > ul a:hover {
  color: var(--wv-gold, #c8a45d);
}

body.wv-menu-open {
  overflow: hidden;
}

/* -- Hero ------------------------------------------------------------------ */
.wv-hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: var(--wv-ivory, #fbf7ef);
  margin-top: -60px; /* offset fixed header height */
}

.wv-hero-track {
  position: absolute;
  inset: 0;
}

.wv-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.wv-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Background media */
.wv-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wv-hero-media img,
.wv-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wv-hero-media video {
  pointer-events: none;
}

/* Light overlay */
.wv-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: var(--wv-z-overlay);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.42) 48%, rgba(251, 247, 239, 0.70) 100%);
  opacity: var(--wv-overlay-opacity, 0.64);
}

/* Content layer */
.wv-hero-content {
  position: absolute;
  inset: 0;
  z-index: var(--wv-z-content);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block-start: 120px;
}

.wv-hero-content .wv-eyebrow {
  margin-bottom: 18px;
}

.wv-hero-title {
  font-size: clamp(2.5rem, 6.5vw, 5.25rem);
  color: var(--wv-text-dark, #111111);
  text-shadow: 0 10px 35px rgba(255, 255, 255, 0.55);
  margin: 0 0 24px;
  max-width: 16ch;
}

.wv-hero-subtitle {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: rgba(17, 17, 17, 0.68);
  max-width: 50ch;
  margin: 0 0 40px;
  line-height: 1.65;
}

.wv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Fallback static hero */
.wv-hero-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    145deg,
    var(--wv-white, #ffffff) 0%,
    var(--wv-ivory, #fbf7ef) 100%
  );
}

.wv-hero-fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 65% 55% at 72% 50%,
    rgba(200, 164, 93, 0.12),
    transparent
  );
  pointer-events: none;
}

/* Pagination dots */
.wv-hero-pagination {
  position: absolute;
  bottom: 36px;
  inset-inline: 0;
  z-index: var(--wv-z-content);
  display: flex;
  justify-content: center;
  gap: 8px;
}

.wv-hero-dot {
  width: 28px;
  height: 2px;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: rgba(17, 17, 17, 0.24);
  cursor: pointer;
  transition: background var(--wv-transition), width var(--wv-transition);
}

.wv-hero-dot.is-active {
  background: var(--wv-gold, #c8a45d);
  width: 48px;
}

/* -- Services -------------------------------------------------------------- */
.wv-services-section {
  background:
    radial-gradient(circle at top left, rgba(200, 164, 93, 0.08), transparent 34%),
    var(--wv-ivory, #fbf7ef);
  color: var(--wv-text-dark, #111111);
}

.wv-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.wv-service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 247, 239, 0.88));
  border: 1px solid rgba(200, 164, 93, 0.22);
  border-radius: 22px;
  padding: 38px 30px;
  box-shadow: 0 16px 45px rgba(17, 17, 17, 0.07);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}

.wv-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 0%, rgba(200, 164, 93, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), transparent 55%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.wv-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--wv-gold, #c8a45d), transparent);
  opacity: 0.55;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.wv-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 164, 93, 0.52);
  box-shadow:
    0 24px 70px rgba(17, 17, 17, 0.12),
    0 0 0 1px rgba(200, 164, 93, 0.10);
}

.wv-service-card:hover::before {
  opacity: 1;
}

.wv-service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.wv-service-card--placeholder {
  opacity: 0.45;
  pointer-events: none;
}

.wv-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 164, 93, 0.18), rgba(234, 216, 174, 0.38));
  box-shadow: inset 0 0 0 1px rgba(200, 164, 93, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--wv-gold, #c8a45d);
  font-size: 1.125rem;
}

.wv-service-name {
  font-family: var(--wv-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wv-text-dark, #111111);
  margin: 0 0 10px;
}

.wv-service-desc {
  font-size: 0.9375rem;
  color: var(--wv-muted, #6f685f);
  line-height: 1.65;
  margin: 0 0 20px;
}

.wv-service-price {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--wv-gold, #c8a45d);
  letter-spacing: 0.04em;
}

/* -- Gallery --------------------------------------------------------------- */
.wv-gallery-section {
  background:
    radial-gradient(circle at top left, rgba(200, 164, 93, 0.08), transparent 34%),
    var(--wv-ivory, #fbf7ef);
  color: var(--wv-text-dark, #111111);
}

.wv-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 280px;
  gap: 12px;
}

.wv-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--wv-white, #ffffff);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(200, 164, 93, 0.18);
  margin: 0;
}

.wv-gallery-card--placeholder {
  pointer-events: none;
}

.wv-gallery-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--wv-ivory, #fbf7ef);
}

.wv-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.wv-gallery-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.03);
}

.wv-gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.52) 0%,
    rgba(17, 17, 17, 0.14) 48%,
    transparent 72%
  );
  opacity: 0;
  transition: opacity var(--wv-transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.wv-gallery-card:hover .wv-gallery-card__overlay {
  opacity: 1;
}

.wv-gallery-card::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(234, 216, 174, 0.55);
  border-radius: 16px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.wv-gallery-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.wv-gallery-card__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--wv-white, #ffffff);
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* -- Contact / CTA --------------------------------------------------------- */
.wv-cta-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 164, 93, 0.14), transparent 36%),
    linear-gradient(180deg, var(--wv-ivory, #fbf7ef), var(--wv-white, #ffffff));
  color: var(--wv-text-dark, #111111);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wv-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(200, 164, 93, 0.08),
    transparent
  );
  pointer-events: none;
}

.wv-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.wv-cta-eyebrow {
  color: var(--wv-gold, #c8a45d);
}

.wv-cta-title {
  font-family: var(--wv-font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--wv-text-dark, #111111);
  margin: 12px 0 20px;
  line-height: 1.15;
}

.wv-cta-desc {
  font-size: 1rem;
  color: var(--wv-muted, #6f685f);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 36px;
}

.wv-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.wv-cta-phone {
  margin-top: 24px;
  font-size: 0.9375rem;
  color: var(--wv-muted, #6f685f);
}

.wv-cta-phone a {
  color: var(--wv-gold, #c8a45d);
  transition: opacity var(--wv-transition);
}

.wv-cta-phone a:hover {
  opacity: 0.75;
}

/* -- Page header (for page.php) -------------------------------------------- */
.wv-page-header {
  padding-block: clamp(100px, 14vw, 160px) clamp(48px, 6vw, 72px);
  background:
    radial-gradient(circle at 70% 12%, rgba(200, 164, 93, 0.12), transparent 32%),
    linear-gradient(180deg, var(--wv-white, #ffffff), var(--wv-ivory, #fbf7ef));
  border-bottom: 1px solid rgba(200, 164, 93, 0.18);
}

.wv-page-content {
  max-width: 760px;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--wv-muted, #6f685f);
}

.wv-page-content h2,
.wv-page-content h3,
.wv-page-content h4 {
  font-family: var(--wv-font-display);
  color: var(--wv-text-dark, #111111);
  margin-top: 2em;
}

.wv-page-content a {
  color: var(--wv-gold, #c8a45d);
  text-decoration: underline;
  text-underline-offset: 3px;
}



/* -- Footer ---------------------------------------------------------------------------- */
.wv-footer-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--wv-footer-bg, #111);
  color: var(--wv-footer-text-color, #F8F0DD);
  border-top: 1px solid var(--wv-footer-line-color, rgba(210, 170, 92, .28));
}

.wv-footer-main__bg {
  position: absolute;
  inset: 0;
  background-image: var(--wv-footer-bg-image, none);
  background-position: var(--wv-footer-bg-position, center);
  background-size: var(--wv-footer-bg-size, cover);
  background-repeat: no-repeat;
  opacity: var(--wv-footer-bg-image-opacity, .55);
  pointer-events: none;
  z-index: 0;
}

.wv-footer-main__overlay {
  position: absolute;
  inset: 0;
  background: var(--wv-footer-overlay-color, #050505);
  opacity: var(--wv-footer-overlay-opacity, .62);
  pointer-events: none;
  z-index: 0;
}

.wv-footer-main__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 44px 0 22px;
}

.wv-footer-main--compact .wv-footer-main__inner {
  padding: 38px 0 20px;
}

/* Compact 3-col strip */
.wv-footer-compact {
  display: grid;
  grid-template-columns: minmax(200px, .9fr) minmax(280px, 1.2fr) minmax(240px, .9fr);
  gap: 36px;
  align-items: center;
}

/* Brand column */
.wv-footer-compact__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wv-footer-main__logo {
  display: inline-block;
  text-decoration: none;
}

.wv-footer-main__logo img {
  width: auto;
  max-width: 118px;
  max-height: 64px;
  object-fit: contain;
  display: block;
}

.wv-footer-main__logo-text {
  font-family: var(--wv-font-display, Georgia, serif);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  letter-spacing: .18em;
  color: var(--wv-footer-heading-color, #D2AA5C);
  line-height: 1;
}

.wv-footer-main__tagline {
  max-width: 260px;
  color: var(--wv-footer-muted-color, #C9BFAE);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
}

/* Statement column */
.wv-footer-compact__statement {
  font-family: var(--wv-font-display, Georgia, serif);
  color: var(--wv-footer-text-color, #F8F0DD);
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-align: center;
}

.wv-footer-compact__statement span {
  display: block;
}

.wv-footer-compact__statement em {
  display: block;
  color: var(--wv-footer-heading-color, #D2AA5C);
  font-style: italic;
}

/* Action column */
.wv-footer-compact__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  text-align: right;
}

/* Contact mini */
.wv-footer-main__contact-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--wv-footer-muted-color, #C9BFAE);
  font-size: .92rem;
  line-height: 1.55;
}

.wv-footer-main__contact-mini strong {
  display: block;
  color: var(--wv-footer-heading-color, #D2AA5C);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.wv-footer-main__contact-mini a {
  color: var(--wv-footer-muted-color, #C9BFAE);
  text-decoration: none;
  transition: color var(--wv-transition, .2s ease);
}

.wv-footer-main__contact-mini a:hover {
  color: var(--wv-footer-heading-color, #D2AA5C);
}

/* CTA button */
.wv-footer-main__cta {
  min-height: 40px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wv-footer-heading-color, #D2AA5C);
  color: #111;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--wv-transition, .2s ease), color var(--wv-transition, .2s ease);
}

.wv-footer-main__cta:hover {
  background: #b88a3b;
  color: #fff;
}

/* Social pills */
.wv-footer-main__social-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.wv-social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--wv-footer-line-color, rgba(210, 170, 92, .28));
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--wv-footer-muted-color, #C9BFAE);
  background: transparent;
  text-decoration: none;
  transition: background var(--wv-transition, .2s ease), color var(--wv-transition, .2s ease), border-color var(--wv-transition, .2s ease);
}

.wv-social-pill:hover {
  background: var(--wv-footer-heading-color, #D2AA5C);
  color: #111;
  border-color: var(--wv-footer-heading-color, #D2AA5C);
}

/* Optional grid (nav / services / contact-extended) */
.wv-footer-main__optional-grid {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--wv-footer-line-color, rgba(210, 170, 92, .28));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px;
}

.wv-footer-main__optional-grid:empty {
  display: none;
}

/* Column heading */
.wv-footer-main__heading {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--wv-footer-line-color, rgba(210, 170, 92, .28));
  color: var(--wv-footer-heading-color, #D2AA5C);
  font-family: var(--wv-font-nav, var(--wv-font-body, sans-serif));
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Links list */
.wv-footer-main__links {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.wv-footer-main__links li {
  list-style: none;
}

.wv-footer-main__links a,
.wv-footer-main__contact-value {
  color: var(--wv-footer-muted-color, #C9BFAE);
  font-size: .92rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color var(--wv-transition, .2s ease);
}

.wv-footer-main__links a:hover,
.wv-footer-main__contact-value:hover {
  color: var(--wv-footer-heading-color, #D2AA5C);
}

/* Contact extended */
.wv-footer-main__contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 14px;
}

.wv-footer-main__contact-label {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--wv-footer-heading-color, #D2AA5C);
}

.wv-footer-main__address {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--wv-footer-muted-color, #C9BFAE);
  font-size: .92rem;
}

.wv-footer-main__appt-note {
  display: block;
  margin-top: 4px;
  font-size: .75rem;
  font-style: italic;
  color: var(--wv-footer-muted-color, #C9BFAE);
  opacity: .8;
}

/* Bottom bar */
.wv-footer-main__bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--wv-footer-line-color, rgba(210, 170, 92, .28));
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--wv-footer-muted-color, #C9BFAE);
  font-size: .78rem;
}

.wv-footer-main__legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.wv-footer-main__legal li {
  list-style: none;
}

.wv-footer-main__legal a {
  font-size: .78rem;
  color: var(--wv-footer-muted-color, #C9BFAE);
  text-decoration: none;
  transition: color var(--wv-transition, .2s ease);
}

.wv-footer-main__legal a:hover {
  color: var(--wv-footer-heading-color, #D2AA5C);
}

/* Light mode overrides */
.wv-footer-main--light {
  background: var(--wv-footer-bg, var(--wv-home-cream, #F7F1E6));
  color: var(--wv-text-dark, #111);
}

.wv-footer-main--light .wv-footer-main__overlay {
  background: var(--wv-footer-overlay-color, #F7F1E6);
}

.wv-footer-main--light .wv-footer-compact__statement {
  color: var(--wv-text-dark, #111);
}

.wv-footer-main--light .wv-footer-main__tagline,
.wv-footer-main--light .wv-footer-main__contact-mini,
.wv-footer-main--light .wv-footer-main__contact-mini a,
.wv-footer-main--light .wv-footer-main__links a,
.wv-footer-main--light .wv-footer-main__contact-value,
.wv-footer-main--light .wv-footer-main__bottom,
.wv-footer-main--light .wv-footer-main__legal a,
.wv-footer-main--light .wv-footer-main__copyright {
  color: var(--wv-muted, #6F685F);
}

.wv-footer-main--light .wv-footer-main__links a:hover,
.wv-footer-main--light .wv-footer-main__contact-mini a:hover,
.wv-footer-main--light .wv-footer-main__legal a:hover {
  color: var(--wv-gold, #C8A45D);
}
/* -- Post archive (index.php) ---------------------------------------------- */
.wv-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.wv-post-card {
  background: var(--wv-white, #ffffff);
  border: 1px solid rgba(200, 164, 93, 0.18);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(17, 17, 17, 0.07);
  transition: transform var(--wv-transition), box-shadow var(--wv-transition);
}

.wv-post-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.12);
}

.wv-post-card__thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.wv-post-card:hover .wv-post-card__thumb img {
  transform: scale(1.04);
}

.wv-post-card__body {
  padding: 24px;
}

.wv-post-card__title {
  font-family: var(--wv-font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.wv-post-card__title a {
  color: var(--wv-text-dark, #111111);
  transition: color var(--wv-transition);
}

.wv-post-card__title a:hover {
  color: var(--wv-gold, #c8a45d);
}

.wv-post-card__excerpt {
  font-size: 0.9375rem;
  color: var(--wv-muted, #6f685f);
  line-height: 1.65;
  margin-bottom: 20px;
}

.wv-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* -- Animations / reveal --------------------------------------------------- */
@keyframes wvFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes wvFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

[data-wv-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-wv-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* -- Accessibility --------------------------------------------------------- */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--wv-gold, #c8a45d);
  outline-offset: 3px;
}

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

  .wv-hero-slide {
    transition: none !important;
  }

  [data-wv-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* -- Responsive � 1200px --------------------------------------------------- */
@media screen and (max-width: 1200px) {
  .wv-footer-compact {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .wv-footer-compact__statement {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }
}

/* -- Responsive � 1024px --------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .wv-header-inner,
  .wv-header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    height: 72px;
    width: min(100% - 32px, 1360px);
    padding-inline: 0;
  }

  .wv-desktop-nav {
    display: none;
  }

  .wv-lang-switcher {
    display: none; /* shown only in mobile menu on small screens */
  }

  .wv-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
  }

  .wv-header-actions .wv-button--primary {
    display: none; /* shown in mobile menu instead */
  }
}

/* -- Responsive � 768px ---------------------------------------------------- */
@media screen and (max-width: 768px) {
  .wv-hero-content {
    align-items: center;
    text-align: center;
  }

  .wv-hero-actions {
    justify-content: center;
  }

  .wv-hero-title {
    max-width: none;
  }

  .wv-services-grid {
    grid-template-columns: 1fr;
  }

  .wv-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .wv-footer-main__inner {
    width: min(100% - 32px, 640px);
    padding: 34px 0 18px;
  }

  .wv-footer-compact {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .wv-footer-compact__brand {
    align-items: center;
  }

  .wv-footer-compact__statement {
    font-size: clamp(2rem, 11vw, 3rem);
    text-align: center;
  }

  .wv-footer-compact__action {
    align-items: center;
    text-align: center;
  }

  .wv-footer-main__optional-grid {
    margin-top: 26px;
    padding-top: 24px;
    grid-template-columns: 1fr;
  }

  .wv-footer-main__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .wv-cta-desc {
    margin-inline: 0;
  }
}

/* -- Responsive � 480px ---------------------------------------------------- */
@media screen and (max-width: 480px) {
  .wv-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .wv-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .wv-button {
    width: 100%;
    justify-content: center;
  }
}

/* ---------------------------------------------------------------------------
   NEW BEM CLASSES  �  Phase 3 Visual Upgrade
   All classes prefixed .wv-  (BEM: block__element--modifier)
   --------------------------------------------------------------------------- */

/* -- Layout utility -------------------------------------------------------- */
.wv-container {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

/* -- Header shell � mirrors wv-header-inner grid layout -------------------- */
.wv-header-shell {
  width: min(100% - 48px, 1440px);
  height: 78px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

/* Logo text � consolidated; primary definition earlier in file */
.wv-logo-text {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-family: var(--wv-font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wv-gold, #c8a45d);
  text-shadow: 0 10px 28px rgba(200, 164, 93, 0.18);
}

/* Logo image � consolidated; primary definition earlier in file */
.wv-logo-img {
  height: clamp(38px, 4vw, 52px);
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(200, 164, 93, 0.14));
  transition: opacity 0.2s ease;
}

/* Transparent hero state � header floats over the hero, fully see-through */
.wv-site-header[data-transparent="1"]:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom-color: transparent;
}

/* Transparent state: nav links become ivory */
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-nav-list a,
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-desktop-nav > ul a {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-nav-list a:hover,
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-desktop-nav > ul a:hover,
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-nav-list a:focus-visible,
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-desktop-nav > ul a:focus-visible {
  color: #F8F0DD;
  opacity: 1;
}

/* Transparent state: gold underline stays visible on hover */
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-nav-list a::after,
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-desktop-nav > ul a::after {
  background: linear-gradient(90deg, transparent, rgba(248, 240, 221, 0.75), transparent);
}

/* Transparent state: logo text stays gold */
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-logo-text {
  color: var(--wv-gold, #c8a45d);
}

/* Transparent state: logo image gets a soft shadow for legibility */
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-logo-img {
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.32)) brightness(1.05);
}

/* Transparent state: language switcher becomes dark glass */
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-lang-switcher {
  background: rgba(17, 17, 17, 0.24);
  border-color: rgba(248, 240, 221, 0.24);
  color: rgba(248, 240, 221, 0.72);
  box-shadow: none;
}

.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-lang-btn {
  color: rgba(248, 240, 221, 0.78);
}

.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-lang-btn:hover,
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-lang-btn--active {
  background: rgba(248, 240, 221, 0.18);
  color: #F8F0DD;
  box-shadow: none;
}

/* Transparent state: hamburger lines become ivory */
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-hamburger-line {
  background: #F8F0DD;
}

.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-menu-toggle {
  background: rgba(17, 17, 17, 0.24);
  border-color: rgba(248, 240, 221, 0.24);
  box-shadow: none;
}

/* Scrolled state � solid glass with gold border and shadow */
.wv-site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(200, 164, 93, 0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 18px 50px rgba(17, 17, 17, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.65);
}

/* Scrolled state: remove text-shadow on nav links */
.wv-site-header.is-scrolled .wv-nav-list a,
.wv-site-header.is-scrolled .wv-desktop-nav > ul a {
  text-shadow: none;
}

/* -- New hero BEM classes --------------------------------------------------- */
.wv-hero__track {
  position: absolute;
  inset: 0;
}

.wv-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--wv-hero-trans, 900ms) ease;
  pointer-events: none;
}

.wv-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.wv-hero__slide.is-leaving {
  opacity: 0;
  z-index: 2;
}

.wv-hero__slide.is-ready {
  opacity: 0;
  z-index: 1;
}

/* Fallback gradient slide */
.wv-hero__slide--fallback {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 30%, rgba(200, 164, 93, 0.16), transparent 34%),
    linear-gradient(135deg, var(--wv-white, #ffffff) 0%, var(--wv-ivory, #fbf7ef) 52%, var(--wv-white, #ffffff) 100%);
}

/* Background media */
.wv-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wv-hero__media img,
.wv-hero__media picture,
.wv-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.wv-hero__media video {
  pointer-events: none;
}

/* Cinematic directional shade � uses admin overlay color + opacity */
.wv-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 42%, rgba(var(--slide-overlay-rgb, 0, 0, 0), calc(var(--slide-overlay-opacity, 0.50) * 0.22)), transparent 38%),
    linear-gradient(
      90deg,
      rgba(var(--slide-overlay-rgb, 0, 0, 0), calc(var(--slide-overlay-opacity, 0.50) + 0.16)) 0%,
      rgba(var(--slide-overlay-rgb, 0, 0, 0), var(--slide-overlay-opacity, 0.50)) 48%,
      rgba(var(--slide-overlay-rgb, 0, 0, 0), calc(var(--slide-overlay-opacity, 0.50) * 0.52)) 100%
    );
  mix-blend-mode: normal;
}

/* Film grain texture */
.wv-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.wv-hero__grain::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

/* Content layer */
.wv-hero__content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: end;
  bottom: clamp(48px, 8vw, 96px);
  text-align: var(--content-align, left);
  align-items: flex-start;
  padding-inline: clamp(32px, 6vw, 100px);
  padding-block-start: 96px;
  color: var(--wv-hero-text-color, #ffffff);
}

/* BEM alignment modifiers */
.wv-hero__content--align-center {
  align-items: center;
  text-align: center;
  margin-inline: auto;
}

.wv-hero__content--align-left {
  align-items: flex-start;
  text-align: left;
}

.wv-hero__content--align-right {
  align-items: flex-end;
  text-align: right;
}

.wv-hero__eyebrow {
  margin-bottom: 18px;
  color: var(--wv-gold, #c8a45d);
  letter-spacing: 0.22em;
  font-weight: 700;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.wv-hero__title {
  max-width: 18 ch;
  margin: 0 0 20px;
  font-family: var(--wv-font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(3.4rem, 7.6vw, 1.4rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-wrap: balance;
  color: var(--wv-hero-text-color, currentColor);
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.22),
    0 24px 70px rgba(0, 0, 0, 0.34);
}

.wv-hero__title::after {
  content: '';
  display: block;
  width: clamp(80px, 9vw, 150px);
  height: 1px;
  margin: 22px 0 0;
  background: linear-gradient(90deg, transparent, var(--wv-gold, #c8a45d), transparent);
  opacity: 0.78;
}

.wv-hero__content--align-center .wv-hero__title::after {
  margin-inline: auto;
}

.wv-hero__subtitle {
  max-width: 52ch;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--wv-hero-text-color, currentColor);
  opacity: 0.84;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.wv-hero__desc {
  font-size: 1rem;
  color: var(--wv-hero-text-color, currentColor);
  opacity: 0.74;
  margin: 0 0 40px;
  max-width: 50ch;
  line-height: 1.7;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.wv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

/* -- Slow-zoom animation on active slide media ------------------------------ */
@keyframes wvSlowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.wv-hero__slide.is-active .wv-hero__media img {
  animation: wvSlowZoom 8s ease-in-out both;
}

/* -- Fade-up content animation --------------------------------------------- */
@keyframes wvFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.wv-hero__slide.is-active .wv-hero__content > * {
  animation: wvFadeUp 0.8s ease both;
  animation-delay: calc(var(--i, 0) * 0.12s);
}

.wv-hero__slide.is-active .wv-hero__eyebrow       { --i: 0; }
.wv-hero__slide.is-active .wv-hero__title         { --i: 1; }
.wv-hero__slide.is-active .wv-hero__location-line { --i: 2; }
.wv-hero__slide.is-active .wv-hero__subtitle      { --i: 3; }
.wv-hero__slide.is-active .wv-hero__desc          { --i: 4; }
.wv-hero__slide.is-active .wv-hero__actions       { --i: 5; }

/* -- Pagination line-dots --------------------------------------------------- */
.wv-hero__pagination {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.wv-hero__dot {
  width: 24px;
  height: 2px;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: rgba(17, 17, 17, 0.24);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.wv-hero__dot.is-active {
  width: 48px;
  background: var(--wv-gold, #c8a45d);
  box-shadow: 0 0 18px rgba(200, 164, 93, 0.36);
}

/* -- Arrow buttons ---------------------------------------------------------- */
.wv-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 93, 0.42);
  background: rgba(255, 255, 255, 0.72);
  color: var(--wv-text-dark, #111111);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.10);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.wv-hero__arrow--prev { left: 24px; }
.wv-hero__arrow--next { right: 24px; }

.wv-hero__arrow:hover,
.wv-hero__arrow:focus-visible {
  background: linear-gradient(135deg, var(--wv-gold, #c8a45d), var(--wv-soft-gold, #ead8ae));
  color: var(--wv-text-dark, #111111);
  border-color: rgba(200, 164, 93, 0.80);
  transform: translateY(-50%) scale(1.06);
  outline: none;
}

/* -- Intro editorial section ------------------------------------------------ */
.wv-intro {
  background: linear-gradient(180deg, var(--wv-white, #ffffff) 0%, var(--wv-ivory, #fbf7ef) 100%);
  padding-block: clamp(64px, 8vw, 120px);
}

.wv-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.wv-intro__text {
  max-width: 560px;
}

.wv-intro__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--wv-text-dark, #111111);
  margin: 12px 0 24px;
  line-height: 1.15;
}

.wv-intro__body {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: var(--wv-muted, #6f685f);
  line-height: 1.75;
  margin: 0 0 36px;
}

.wv-intro__img-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: var(--wv-ivory, #fbf7ef);
  box-shadow:
    0 28px 80px rgba(17, 17, 17, 0.12),
    0 0 0 1px rgba(200, 164, 93, 0.22);
}

.wv-intro__img-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(200, 164, 93, 0.26), transparent 45%),
    linear-gradient(to top, rgba(255, 255, 255, 0.12), transparent);
  z-index: 1;
  pointer-events: none;
}

.wv-intro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wv-intro__img-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 50% at 55% 45%, rgba(200, 164, 93, 0.12), transparent),
    linear-gradient(135deg, var(--wv-ivory, #fbf7ef) 0%, var(--wv-white, #ffffff) 100%);
}

/* -- Scroll reveal � initial state (animated by westvibe.js) --------------- */
[data-wv-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-wv-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-wv-reveal][data-wv-reveal-delay="120"] {
  transition-delay: 0.12s;
}

/* -- Reduced-motion overrides ----------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .wv-hero__slide {
    transition: none !important;
  }

  .wv-hero__slide.is-active .wv-hero__media img,
  .wv-hero__slide.is-active .wv-hero__content > * {
    animation: none !important;
  }

  [data-wv-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* -- Responsive � intro + hero BEM (768px) --------------------------------- */
@media screen and (max-width: 768px) {
  .wv-intro__inner {
    grid-template-columns: 1fr;
  }

  .wv-intro__media {
    order: -1;
  }

  .wv-intro__img-frame {
    aspect-ratio: 16 / 9;
    max-height: 320px;
  }

  .wv-hero__content {
    width: min(100% - 32px, 640px);
    max-width: 100%;
    padding-inline: 0;
    padding-block-start: 88px;
    justify-content: center;
  }

  .wv-hero__title {
    max-width: 11ch;
    font-size: clamp(3rem, 15vw, 4.8rem);
    line-height: 0.94;
  }

  .wv-hero__subtitle {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.55;
  }

  .wv-hero__arrow {
    width: 40px;
    height: 40px;
  }

  .wv-hero__arrow--prev { left: 12px; }
  .wv-hero__arrow--next { right: 12px; }
}

/* ---------------------------------------------------------------------------
   CINEMATIC HERO � text layers, icon sweep, animation presets
   --------------------------------------------------------------------------- */

/* Cinematic modifier */
.wv-hero--cinematic {
  min-height: 100svh;
}

/* Layers container */
.wv-hero__layers {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

/* Individual text layer � positioned via CSS custom properties */
.wv-hero__text-layer {
  position: absolute;
  left: var(--wv-layer-x, 10%);
  top: var(--wv-layer-y, 40%);
  max-width: var(--wv-layer-max-width, 600px);
  color: var(--wv-layer-color, #ffffff);
  font-size: var(--wv-layer-size, 3rem);
  font-weight: var(--wv-layer-weight, 400);
  letter-spacing: var(--wv-layer-spacing, 0);
  text-align: var(--wv-layer-align, left);
  line-height: 1.2;
  /* starts hidden � GSAP or .is-visible class controls visibility */
  opacity: 0;
  will-change: opacity, transform, filter, clip-path;
  pointer-events: auto;
}

/* -- Type modifiers ------------------------------------------------------- */
.wv-hero__text-layer--eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.65rem, 1.1vw, 0.9rem);
  font-weight: 500;
  color: var(--wv-gold, #c9a96e);
}

.wv-hero__text-layer--title {
  font-family: var(--wv-font-serif, serif);
  font-size: var(--wv-layer-size, clamp(2.5rem, 6vw, 5rem));
  line-height: 1.05;
}

.wv-hero__text-layer--subtitle {
  font-size: var(--wv-layer-size, clamp(1rem, 2vw, 1.4rem));
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.wv-hero__text-layer--paragraph {
  font-size: var(--wv-layer-size, 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: var(--wv-layer-max-width, 560px);
}

.wv-hero__text-layer--small-note {
  font-size: var(--wv-layer-size, 0.8rem);
  opacity: 0; /* still starts hidden */
  color: rgba(255, 255, 255, 0.55);
}

/* -- CSS fallback: .is-visible state (when GSAP not loaded) --------------- */
.wv-hero__text-layer.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: none;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

/* CSS fallback � animationIn class-based presets */
.wv-hero__text-layer[data-animation-in="fade-up"] {
  transform: translateY(28px);
  filter: blur(8px);
}

.wv-hero__text-layer[data-animation-in="fade-left"] {
  transform: translateX(-32px);
}

.wv-hero__text-layer[data-animation-in="blur-in"] {
  filter: blur(14px);
}

.wv-hero__text-layer[data-animation-in="scale-soft"] {
  transform: scale(0.92);
}

.wv-hero__text-layer[data-animation-in="clip-reveal"],
.wv-hero__text-layer[data-animation-in="gold-line-reveal"] {
  clip-path: inset(0 100% 0 0);
}

/* -- CTAs floating (cinematic, outside content wrapper) ------------------- */
.wv-hero__actions--floating {
  position: absolute;
  /* bottom: clamp(80px, 12vw, 120px); */
  bottom: 0px;
  left: 10%;
  z-index: 6;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  pointer-events: auto;
}

/* -- Transition icon element ----------------------------------------------- */
.wv-hero__transition-icon {
  position: absolute;
  top: 50%;
  left: -15vw;
  transform: translateY(-50%);
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  width: var(--wv-icon-size-d, 160px);
  height: auto;
  color: var(--wv-gold, #c9a96e);
  will-change: transform, opacity;
}

.wv-hero__transition-icon-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* -- Mobile responsive ----------------------------------------------------- */
@media (max-width: 768px) {
  .wv-hero__text-layer {
    left: var(--wv-layer-mobile-x, var(--wv-layer-x, 5%));
    top: var(--wv-layer-mobile-y, var(--wv-layer-y, 35%));
    font-size: var(--wv-layer-size-mobile, var(--wv-layer-size, 1.8rem));
  }

  .wv-hero__actions--floating {
    left: 5%;
    right: 5%;
    bottom: 64px;
  }

  .wv-hero__transition-icon {
    width: var(--wv-icon-size-m, 100px);
  }
}

/* -- Reduced motion � hard override --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .wv-hero__text-layer,
  .wv-hero__transition-icon {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  .wv-hero__text-layer {
    opacity: 1 !important;
  }
}

/* -- Empty hero state (no slides) ------------------------------------------ */
.wv-hero--empty {
  background:
    radial-gradient(circle at 70% 28%, rgba(200, 164, 93, 0.18), transparent 34%),
    radial-gradient(circle at 22% 72%, rgba(230, 210, 163, 0.10), transparent 32%),
    linear-gradient(135deg, #050505 0%, #15110a 48%, #050505 100%);
  min-height: 100svh;
}

/* -- Slide with broken / missing media � gradient fallback ----------------- */
.wv-hero__media:empty,
.wv-hero__media:not(:has(img, video, picture)) {
  background:
    radial-gradient(circle at 70% 28%, rgba(200, 164, 93, 0.20), transparent 34%),
    radial-gradient(circle at 20% 72%, rgba(230, 210, 163, 0.10), transparent 32%),
    linear-gradient(135deg, #050505 0%, #15110a 48%, #050505 100%);
}


/* ================================================================
   Visit West Vibe ? location / map section  (.wv-visit)
   ================================================================ */

/* -- Section grid layout --------------------------------------------------- */
.wv-visit {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  min-height: 680px;
}

/* -- Left panel: dark olive/green background ------------------------------- */
.wv-visit__content {
  background-color: #202815;
  padding: clamp(56px, 7vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wv-visit__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wv-home-warm-gold, #B88A3B);
  margin: 0 0 16px;
}

.wv-visit__title {
  font-family: var(--wv-font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #F8F0DD;
  line-height: 1.12;
  margin: 0 0 28px;
}

/* -- "Have a question?" outline button ------------------------------------- */
.wv-visit__question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 1.5em;
  font-family: var(--wv-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F8F0DD;
  border: 1px solid rgba(248, 240, 221, 0.45);
  border-radius: var(--wv-radius, 3px);
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
  margin-bottom: 40px;
  width: fit-content;
}

.wv-visit__question:hover {
  border-color: rgba(248, 240, 221, 0.85);
  background: rgba(248, 240, 221, 0.08);
}

/* -- Info blocks: address / phone ------------------------------------------ */
.wv-visit__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.wv-visit__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(248, 240, 221, 0.82);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.wv-visit__icon {
  flex-shrink: 0;
  color: var(--wv-home-warm-gold, #B88A3B);
  margin-top: 2px;
}

.wv-visit__address {
  font-style: normal;
  color: rgba(248, 240, 221, 0.82);
}

.wv-visit__address em {
  display: block;
  font-style: italic;
  font-size: 0.8125rem;
  color: rgba(248, 240, 221, 0.52);
  margin-top: 4px;
}

.wv-visit__phone-link {
  color: rgba(248, 240, 221, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.wv-visit__phone-link:hover {
  color: var(--wv-home-warm-gold, #B88A3B);
}

/* -- Direction / contact links --------------------------------------------- */
.wv-visit__links {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.wv-visit__dir-link,
.wv-visit__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wv-home-warm-gold, #B88A3B);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.wv-visit__dir-link:hover,
.wv-visit__contact-link:hover {
  opacity: 0.75;
}

/* -- Working hours block --------------------------------------------------- */
.wv-visit__hours {
  margin-bottom: 44px;
}

.wv-visit__hours-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wv-home-warm-gold, #B88A3B);
  margin: 0 0 14px;
}

.wv-visit__hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wv-visit__hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.875rem;
  color: rgba(248, 240, 221, 0.82);
  border-bottom: 1px solid rgba(248, 240, 221, 0.08);
  padding-block: 7px;
}

.wv-visit__hours-list li:first-child {
  border-top: 1px solid rgba(248, 240, 221, 0.08);
}

.wv-visit__day {
  flex: 1;
  min-width: 0;
}

.wv-visit__time {
  flex-shrink: 0;
  color: rgba(248, 240, 221, 0.52);
}

/* -- Primary CTA button ---------------------------------------------------- */
.wv-visit__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85em 2.25em;
  font-family: var(--wv-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, var(--wv-home-warm-gold, #B88A3B), #d4a95a);
  color: #1B1713;
  border: none;
  border-radius: var(--wv-radius, 3px);
  cursor: pointer;
  width: fit-content;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.3s ease;
}

.wv-visit__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184, 138, 59, 0.40);
}

.wv-visit__cta:active {
  transform: translateY(0);
  box-shadow: none;
}

/* -- Right panel: map ------------------------------------------------------ */
.wv-visit__map {
  position: relative;
  overflow: hidden;
}

.wv-visit__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(0.95) brightness(1.02);
}

/* -- Responsive ? tablet / mobile ------------------------------------------ */
@media (max-width: 900px) {
  .wv-visit {
    grid-template-columns: 1fr;
  }

  .wv-visit__content {
    padding: 48px 24px;
  }

  .wv-visit__question {
    width: 100%;
    justify-content: center;
  }

  .wv-visit__cta {
    width: 100%;
  }

  /* Map below content, visible height fixed */
  .wv-visit__map {
    position: relative;
    min-height: 360px;
  }

  .wv-visit__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}


/* ================================================================
   Promotional Modal  (.wv-promo-modal)
   ================================================================ */

/* -- Body scroll lock ------------------------------------------------------ */
body.wv-modal-open {
  overflow: hidden;
}

/* -- Outer wrapper: always flex, visibility controlled via opacity/visibility */
.wv-promo-modal {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 900ms;
}

.wv-promo-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.wv-promo-modal.is-closing {
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 600ms;
}

/* -- Backdrop -------------------------------------------------------------- */
.wv-promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--wv-pm-overlay, 0.65));
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-backdrop-filter 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wv-promo-modal.is-open .wv-promo-modal__backdrop {
  opacity: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* -- Dialog box ------------------------------------------------------------ */
.wv-promo-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 1140px;
  min-height: 560px;
  max-height: 90vh;
  overflow: hidden;
  background: var(--wv-pm-bg, #161812);
  border: 1px solid rgba(248, 240, 221, 0.22);
  border-radius: 4px;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(32px) scale(0.965);
  filter: blur(8px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wv-promo-modal.is-open .wv-promo-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.wv-promo-modal.is-closing .wv-promo-modal__dialog {
  opacity: 0;
  transform: translateY(18px) scale(0.975);
  filter: blur(6px);
  transition:
    opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* -- Close button ---------------------------------------------------------- */
.wv-promo-modal__close {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(248, 240, 221, 0.08);
  border: 1px solid rgba(248, 240, 221, 0.22);
  border-radius: 50%;
  color: rgba(248, 240, 221, 0.75);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}

.wv-promo-modal__close:hover,
.wv-promo-modal__close:focus-visible {
  background: rgba(248, 240, 221, 0.18);
  color: #F8F0DD;
  outline: none;
}

/* -- Content row ----------------------------------------------------------- */
.wv-promo-modal__content {
  display: flex;
  width: 100%;
}

/* -- Copy column (left) ---------------------------------------------------- */
.wv-promo-modal__copy {
  flex: 0 0 48%;
  padding: clamp(56px, 6vw, 96px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #F8F0DD;
  overflow-y: auto;
}

/* Discount badge */
.wv-promo-modal__badge {
  display: inline-block;
  width: fit-content;
  padding: 0.35em 1em;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wv-pm-bg, #161812);
  background: var(--wv-pm-accent, #B88A3B);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* Main headline */
.wv-promo-modal__title {
  font-family: var(--wv-font-display);
  font-size: clamp(1.625rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: #F8F0DD;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

/* Subtitle */
.wv-promo-modal__subtitle {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: rgba(248, 240, 221, 0.78);
  line-height: 1.65;
  margin: 0 0 32px;
}

/* -- Form ------------------------------------------------------------------ */
.wv-promo-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wv-promo-modal__field {
  margin-bottom: 20px;
}

.wv-promo-modal__field input[type="email"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(248, 240, 221, 0.4);
  color: #F8F0DD;
  font-family: var(--wv-font-body);
  font-size: 0.9375rem;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s ease;
}

.wv-promo-modal__field input[type="email"]::placeholder {
  color: rgba(248, 240, 221, 0.42);
}

.wv-promo-modal__field input[type="email"]:focus {
  border-bottom-color: var(--wv-pm-accent, #B88A3B);
}

/* Submit button */
.wv-promo-modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9em 1.5em;
  font-family: var(--wv-font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--wv-pm-btn-bg, #B88A3B);
  color: var(--wv-pm-btn-txt, #1B1713);
  border: none;
  border-radius: var(--wv-radius, 3px);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-bottom: 16px;
}

.wv-promo-modal__btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.wv-promo-modal__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Footer note (link-like) */
.wv-promo-modal__note {
  font-size: 0.75rem;
  color: rgba(248, 240, 221, 0.42);
  text-align: center;
  margin: 0 0 12px;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.2s ease;
}

.wv-promo-modal__note:hover {
  color: rgba(248, 240, 221, 0.7);
}

/* Message (success / error) */
.wv-promo-modal__message {
  font-size: 0.8125rem;
  min-height: 1.4em;
  text-align: center;
  margin: 0;
}

.wv-promo-modal__message--success {
  color: #8fcf8a;
}

.wv-promo-modal__message--error {
  color: #e88a7e;
}

/* Disclaimer small text */
.wv-promo-modal__disclaimer {
  font-size: 0.6875rem;
  color: rgba(248, 240, 221, 0.32);
  line-height: 1.55;
  margin: 20px 0 0;
}

/* -- Media column (right) -------------------------------------------------- */
.wv-promo-modal__media {
  flex: 0 0 52%;
  position: relative;
  overflow: hidden;
}

.wv-promo-modal__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* -- Responsive ------------------------------------------------------------ */
@media (max-width: 768px) {
  .wv-promo-modal {
    padding: 12px;
    align-items: flex-end;
  }

  .wv-promo-modal__dialog {
    flex-direction: column-reverse;
    width: 92vw;
    max-width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    min-height: unset;
  }

  .wv-promo-modal__content {
    flex-direction: column-reverse;
  }

  .wv-promo-modal__copy {
    flex: none;
    padding: 40px 24px 32px;
    overflow-y: visible;
  }

  .wv-promo-modal__media {
    flex: none;
    position: relative;
    height: 260px;
  }

  .wv-promo-modal__media img {
    position: absolute;
  }

  .wv-promo-modal__title {
    font-size: clamp(1.375rem, 6vw, 1.875rem);
  }
}

/* ================================================================
   Testimonials carousel  (.wv-testimonials)
   ================================================================ */

.wv-testimonials {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(200, 164, 93, 0.07), transparent 38%),
    linear-gradient(180deg, var(--wv-ivory, #fbf7ef) 0%, var(--wv-home-cream, #EFE5D3) 100%);
}

/* -- Header ---------------------------------------------------------------- */
.wv-testimonials__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.wv-testimonials__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wv-gold, #c8a45d);
  margin: 0 0 16px;
}

.wv-testimonials__title {
  font-family: var(--wv-font-display);
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 700;
  color: var(--wv-text-dark, #111111);
  margin: 0 0 16px;
  line-height: 1.15;
}

.wv-testimonials__subtitle {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: var(--wv-muted, #6f685f);
  max-width: 56ch;
  margin-inline: auto;
  line-height: 1.7;
}

/* -- Carousel container ---------------------------------------------------- */
.wv-testimonials-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: clamp(32px, 5vw, 64px);
}

/* Hide arrows when all cards fit */
.wv-testimonials-carousel--static .wv-testimonials-carousel__arrow {
  visibility: hidden;
  pointer-events: none;
}

/* Viewport � clips overflowing cards */
.wv-testimonials-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

/* Track � flex row, animated via transform */
.wv-testimonials-carousel__track {
  display: flex;
  gap: 32px;
  will-change: transform;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* -- Arrows ---------------------------------------------------------------- */
.wv-testimonials-carousel__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(200, 164, 93, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--wv-home-warm-gold, #B88A3B);
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    opacity 0.25s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.wv-testimonials-carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--wv-home-warm-gold, #B88A3B);
  transform: scale(1.08);
}

.wv-testimonials-carousel__arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
  transform: scale(1);
}

.wv-testimonials-carousel__arrow svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* -- Card ------------------------------------------------------------------ */
.wv-testimonial-card {
  flex-shrink: 0;
  /* width set by JS based on viewport clientWidth */
  background: var(--wv-white, #ffffff);
  border: 1px solid rgba(200, 164, 93, 0.18);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.055);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wv-testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(17, 17, 17, 0.10);
  transform: translateY(-3px);
}

/* Stars */
.wv-testimonial-card__rating {
  display: flex;
  gap: 2px;
  font-size: 1rem;
}

.wv-star--filled {
  color: var(--wv-home-warm-gold, #B88A3B);
}

.wv-star--empty {
  color: rgba(184, 138, 59, 0.22);
}

/* Quote */
.wv-testimonial-card__quote {
  font-family: var(--wv-font-display);
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  font-style: italic;
  color: var(--wv-text-dark, #111111);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.wv-testimonial-card__quote p {
  margin: 0;
}

/* Author row */
.wv-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 164, 93, 0.14);
}

.wv-testimonial-card__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200, 164, 93, 0.28);
}

.wv-testimonial-card__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wv-home-warm-gold, #B88A3B), #d4a95a);
  color: #1B1713;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--wv-font-display);
  border: none;
}

.wv-testimonial-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.wv-testimonial-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--wv-text-dark, #111111);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wv-testimonial-card__service {
  font-size: 0.75rem;
  color: var(--wv-home-warm-gold, #B88A3B);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* -- Responsive ------------------------------------------------------------ */

/* Tablet: 2 cards visible */
@media (max-width: 1024px) {
  .wv-testimonials-carousel__track {
    gap: 24px;
  }
}

/* Mobile: 1 card visible, arrows move below viewport */
@media (max-width: 767px) {
  .wv-testimonials-carousel {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 12px;
  }

  .wv-testimonials-carousel__viewport {
    order: -1;
    flex: 0 0 100%;
  }

  .wv-testimonials-carousel__track {
    gap: 16px;
  }

  .wv-testimonial-card:hover {
    transform: none;
  }
}

/* -- Reduced motion -------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .wv-testimonials-carousel__track,
  .wv-promo-modal,
  .wv-promo-modal__backdrop,
  .wv-promo-modal__dialog {
    transition: none !important;
    animation: none !important;
  }
}

/* ================================================================
   PRODUCT BRANDS STRIP
   ================================================================ */
.wv-product-brands {
  background: var(--wv-brands-bg, #050505);
  padding-block: clamp(52px, 7vw, 96px);
  color: #ffffff;
  overflow: hidden;
}

.wv-product-brands__header {
  margin-bottom: clamp(32px, 4vw, 56px);
}

.wv-product-brands .wv-section-title,
.wv-product-brands__title {
  color: #ffffff;
}

.wv-product-brands .wv-section-desc,
.wv-product-brands__subtitle {
  color: rgba(255, 255, 255, 0.64);
}

.wv-product-brands__track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(12px, 2vw, 24px) 0;
}

.wv-product-brands__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.wv-product-brands__item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.wv-product-brands__logo {
  max-height: clamp(32px, 4vw, 56px);
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.72);
  transition: filter 0.28s ease;
}

.wv-product-brands__item:hover .wv-product-brands__logo {
  filter: brightness(0) invert(1) opacity(1);
}

.wv-product-brands__name {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.28s ease;
}

.wv-product-brands__item:hover .wv-product-brands__name {
  color: #ffffff;
}

/* Grid layout variant */
.wv-product-brands--grid .wv-product-brands__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

@media (max-width: 600px) {
  .wv-product-brands__track {
    gap: 24px 32px;
  }
  .wv-product-brands__logo {
    max-height: 28px;
  }
}
/* ================================================================
   ABOUT WESTVIBE � CAROUSEL SHOWCASE
   ================================================================ */

.wv-about-westvibe {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(210, 170, 92, 0.10), transparent 34%),
    var(--wv-ivory, #fbf7ef);
}

/* Optional background image layer */
.wv-about-westvibe[style*="--wv-about-bg-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--wv-about-bg-image) center center / cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.wv-about-westvibe .wv-container {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 56px));
  margin: 0 auto;
}

/* -- Section header -------------------------------------------- */

.wv-about-westvibe__header {
  max-width: 860px;
  margin: 0 auto clamp(44px, 5vw, 72px);
  text-align: center;
}

.wv-about-westvibe__header .wv-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--wv-gold, #c99a3b);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wv-about-westvibe__title {
  margin: 0;
  font-size: clamp(46px, 5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--wv-text-dark, #111);
}

.wv-about-westvibe__body {
  max-width: 720px;
  margin: 26px auto 0;
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.85;
  color: rgba(27, 27, 27, 0.62);
}

.wv-about-westvibe__body p { margin: 0 0 1em; }
.wv-about-westvibe__body p:last-child { margin-bottom: 0; }

.wv-about-westvibe__cta {
  display: inline-block;
  margin-top: 28px;
}

/* -- Carousel shell -------------------------------------------- */

.wv-about-westvibe__carousel-shell {
  position: relative;
  width: 100%;
}

.wv-about-westvibe__carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.wv-about-westvibe__carousel-track {
  display: flex;
  gap: 0;
  align-items: stretch;
  will-change: transform;
  transition: transform 700ms cubic-bezier(.22,.61,.36,1);
}

/* Static (=4 items): centre items, no translation */
.wv-about-westvibe__carousel-shell.is-static .wv-about-westvibe__carousel-track {
  justify-content: center;
  transform: none !important;
}

/* Static mode: distribute all slides equally so none overflow */
.wv-about-westvibe__carousel-shell.is-static .wv-about-westvibe__carousel-slide {
  flex: 1 1 0;
  min-width: 0;
}

/* -- Slides: carousel mode � one per view, full width --------- */

.wv-about-westvibe__carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}

/* -- Media cards ----------------------------------------------- */

.wv-about-westvibe__media-card {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(210, 170, 92, 0.22);
  box-shadow:
    0 28px 72px rgba(64, 45, 22, 0.18),
    0 10px 28px rgba(64, 45, 22, 0.10);
  isolation: isolate;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.wv-about-westvibe__media-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 36px 92px rgba(64, 45, 22, 0.24),
    0 14px 34px rgba(64, 45, 22, 0.14);
}

/* Images: portrait editorial */
.wv-about-westvibe__media-card--image {
  aspect-ratio: 4 / 5;
}

/* Videos: Instagram/Reels vertical � never override to horizontal */
.wv-about-westvibe__media-card--video,
.wv-about-westvibe__media-card--vertical {
  aspect-ratio: 9 / 16;
}

/* Bottom gradient */
.wv-about-westvibe__media-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.40));
  pointer-events: none;
}

/* -- Media fill ------------------------------------------------ */

.wv-about-westvibe__media-img,
.wv-about-westvibe__video,
.wv-about-video-player {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Caption */
.wv-about-westvibe__caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 6;
  color: #fff8e8;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .02em;
  text-shadow: 0 8px 22px rgba(0,0,0,.55);
}

/* External video link */
.wv-about-westvibe__video-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  text-decoration: none;
  color: #fff8e8;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.42));
  transition: background .25s ease;
}

.wv-about-westvibe__video-link:hover,
.wv-about-westvibe__video-link:focus-visible {
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.56));
  outline: none;
}

.wv-about-westvibe__video-play-icon {
  width: clamp(52px, 4.5vw, 72px);
  height: clamp(52px, 4.5vw, 72px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,248,232,.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 48px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.22);
  transition: transform .25s ease, background .25s ease;
}

.wv-about-westvibe__video-link:hover .wv-about-westvibe__video-play-icon,
.wv-about-westvibe__video-link:focus-visible .wv-about-westvibe__video-play-icon {
  transform: scale(1.06);
  background: #d2aa5c;
}

.wv-about-westvibe__video-label {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 6px 18px rgba(0,0,0,.38);
}

/* -- Carousel navigation arrows -------------------------------- */

.wv-about-westvibe__carousel-nav {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(210, 170, 92, 0.36);
  background: rgba(255, 248, 232, 0.92);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
  transform: translateY(-50%);
  transition:
    background-color .25s ease,
    color .25s ease,
    transform .25s ease;
}

.wv-about-westvibe__carousel-nav--prev { left: -24px; }
.wv-about-westvibe__carousel-nav--next { right: -24px; }

.wv-about-westvibe__carousel-nav:hover,
.wv-about-westvibe__carousel-nav:focus-visible {
  background: #d2aa5c;
  color: #111;
  transform: translateY(-50%) scale(1.06);
  outline: none;
}

/* -- Custom video player --------------------------------------- */

.wv-about-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #111;
}

.wv-about-video-player video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wv-about-video-player__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  cursor: pointer;
  color: #fff8e8;
  background:
    radial-gradient(circle at 50% 46%, rgba(0,0,0,.14), transparent 32%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.44));
  transition: opacity .35s ease, visibility .35s ease;
}

.wv-about-video-player.is-playing .wv-about-video-player__overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.wv-about-video-player__play {
  width: clamp(56px, 5.5vw, 80px);
  height: clamp(56px, 5.5vw, 80px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,248,232,.16);
  backdrop-filter: blur(12px);
  box-shadow:
    0 16px 48px rgba(0,0,0,.30),
    inset 0 0 0 1px rgba(255,255,255,.22);
  color: #fff8e8;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.wv-about-video-player__overlay:hover .wv-about-video-player__play,
.wv-about-video-player__overlay:focus-visible .wv-about-video-player__play {
  transform: scale(1.06);
  background: #d2aa5c;
  color: #111;
}

.wv-about-video-player__play svg {
  display: block;
  width: 48%;
  height: 48%;
}

.wv-about-video-player__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 6px 18px rgba(0,0,0,.38);
}

.wv-about-video-player__controls {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(8, 8, 6, 0.60);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}

.wv-about-video-player:hover .wv-about-video-player__controls,
.wv-about-video-player:focus-within .wv-about-video-player__controls,
.wv-about-video-player.is-playing .wv-about-video-player__controls {
  opacity: 1;
  transform: translateY(0);
}

.wv-about-video-player__control {
  border: 0;
  background: transparent;
  color: #fff8e8;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  display: inline-flex;
  align-items: center;
  transition: color .2s ease;
}

.wv-about-video-player__control:hover,
.wv-about-video-player__control:focus-visible {
  color: #d2aa5c;
  outline: none;
}

.wv-about-video-player__progress {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.20);
  overflow: hidden;
}

.wv-about-video-player__progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: #d2aa5c;
  transition: width .1s linear;
}

/* -- Responsive ------------------------------------------------ */

@media (max-width: 1200px) {
  .wv-about-westvibe__carousel-slide {
    flex-basis: calc((100% - clamp(18px, 1.8vw, 28px)) / 2);
  }
}

@media (max-width: 860px) {
  .wv-about-westvibe__carousel-slide {
    flex-basis: calc((100% - clamp(18px, 1.8vw, 28px)) / 2);
  }
  .wv-about-westvibe__carousel-nav--prev { left: 8px; }
  .wv-about-westvibe__carousel-nav--next { right: 8px; }
}

@media (max-width: 560px) {
  .wv-about-westvibe {
    padding: 72px 0;
  }
  .wv-about-westvibe .wv-container {
    width: min(100% - 28px, 1480px);
  }
  .wv-about-westvibe__title {
    font-size: clamp(40px, 12vw, 58px);
  }
  .wv-about-westvibe__carousel-slide {
    flex-basis: 82%;
  }
  .wv-about-westvibe__carousel-track {
    gap: 16px;
  }
  .wv-about-video-player__controls {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: auto 1fr;
  }
  .wv-about-video-player__control[data-wv-about-video-mute] {
    display: none;
  }
}

/* ================================================================
   QUICK CONTACT GRID
   ================================================================ */
.wv-quick-contact {
  padding-block: clamp(64px, 9vw, 120px);
  background-color: var(--wv-white, #ffffff);
}

.wv-quick-contact__header {
  margin-bottom: clamp(32px, 4vw, 60px);
}

.wv-quick-contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.wv-quick-contact__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: clamp(20px, 2.5vw, 32px) clamp(20px, 2.5vw, 32px);
  background: var(--wv-ivory, #fbf7ef);
  border: 1px solid rgba(200, 164, 93, 0.20);
  border-radius: var(--wv-radius-lg);
  text-decoration: none;
  color: var(--wv-text-dark, #111111);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
  cursor: pointer;
}

.wv-quick-contact__card:hover {
  background: var(--wv-white, #ffffff);
  border-color: rgba(200, 164, 93, 0.55);
  box-shadow: var(--wv-shadow-md);
  transform: translateY(-3px);
}

.wv-quick-contact__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wv-gold, #c8a45d), var(--wv-soft-gold, #ead8ae));
  color: var(--wv-text-dark, #111111);
}

.wv-quick-contact__icon svg {
  width: 22px;
  height: 22px;
}

.wv-quick-contact__label {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  line-height: 1.45;
  color: var(--wv-text-dark, #111111);
}

.wv-quick-contact__arrow {
  flex-shrink: 0;
  color: var(--wv-gold, #c8a45d);
  opacity: 0.5;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.wv-quick-contact__arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.wv-quick-contact__card:hover .wv-quick-contact__arrow {
  opacity: 1;
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .wv-quick-contact__grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   CLIENT VIDEOS GRID
   ================================================================ */
.wv-client-videos {
  padding-block: clamp(64px, 9vw, 120px);
  background: var(--wv-ivory, #fbf7ef);
}

.wv-client-videos__header {
  margin-bottom: clamp(32px, 4vw, 60px);
}

.wv-client-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wv-client-videos__item {
  position: relative;
  border-radius: var(--wv-radius-lg);
  overflow: hidden;
}

.wv-client-videos__item--featured {
  grid-column: span 2;
}

.wv-client-videos__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.wv-client-videos__thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--wv-radius-lg) var(--wv-radius-lg) 0 0;
  background: #111111;
  aspect-ratio: 9 / 16;
}

.wv-client-videos__item--featured .wv-client-videos__thumb {
  aspect-ratio: 16 / 9;
}

.wv-client-videos__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.wv-client-videos__link:hover .wv-client-videos__thumbnail {
  transform: scale(1.04);
  opacity: 0.82;
}

.wv-client-videos__thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.wv-client-videos__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.28s ease;
  background: rgba(0, 0, 0, 0.28);
}

.wv-client-videos__link:hover .wv-client-videos__play {
  opacity: 1;
}

.wv-client-videos__play svg {
  width: clamp(44px, 6vw, 64px);
  height: clamp(44px, 6vw, 64px);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

.wv-client-videos__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--wv-gold, #c8a45d);
  color: #111111;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 999px;
}

.wv-client-videos__meta {
  padding: 14px 16px 18px;
  background: var(--wv-white, #ffffff);
  border-radius: 0 0 var(--wv-radius-lg) var(--wv-radius-lg);
  border: 1px solid rgba(200, 164, 93, 0.14);
  border-top: none;
}

.wv-client-videos__title {
  font-family: var(--wv-font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--wv-text-dark, #111111);
}

.wv-client-videos__subtitle {
  font-size: 0.8125rem;
  color: var(--wv-muted, #6f685f);
  margin: 0;
}

@media (max-width: 900px) {
  .wv-client-videos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wv-client-videos__item--featured {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .wv-client-videos__grid {
    grid-template-columns: 1fr;
  }
  .wv-client-videos__item--featured {
    grid-column: span 1;
  }
  .wv-client-videos__thumb {
    aspect-ratio: 4 / 5;
  }
}

/* ==========================================================================
   CLIENT LOGOS � Premium carousel. 6 visible desktop / responsive.
   NOT the same as .wv-product-brands � do not mix.
   ========================================================================== */

/* -- Section ---------------------------------------------------------------- */
.wv-client-logos--carousel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(210, 170, 92, .08), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,.035), transparent 15%, transparent 85%, rgba(255,255,255,.035)),
    var(--wv-client-logos-bg, #030303);
  color: var(--wv-ivory, #FBF7EF);
  padding: clamp(56px, 7vw, 104px) 0;
  isolation: isolate;
}

.wv-client-logos--carousel .wv-client-logos__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* -- Optional header -------------------------------------------------------- */
.wv-client-logos__header {
  max-width: 720px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.wv-client-logos__eyebrow {
  margin: 0 0 10px;
  color: var(--wv-gold, #D2AA5C);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.wv-client-logos__title {
  margin: 0;
  color: var(--wv-ivory, #FBF7EF);
  font-family: var(--wv-font-display, Georgia, serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .96;
}

.wv-client-logos__subtitle {
  margin: 16px auto 0;
  max-width: 520px;
  color: rgba(251, 247, 239, .68);
  font-size: .96rem;
  line-height: 1.7;
}

/* -- Carousel shell --------------------------------------------------------- */
.wv-client-logos__carousel-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

/* -- Viewport � clips overflowing slides + adds edge fade ------------------ */
.wv-client-logos__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

/* -- Track ------------------------------------------------------------------ */
.wv-client-logos__track {
  display: flex;
  align-items: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform var(--wv-client-logos-transition, 700ms) cubic-bezier(.22,.61,.36,1);
}

/* -- Slide cell ------------------------------------------------------------- */
.wv-client-logos__slide {
  flex: 0 0 calc(100% / var(--wv-client-logos-visible, 6));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(6px, 0.8vw, 14px);
  min-height: 150px;
}

/* -- Individual logo item --------------------------------------------------- */
.wv-client-logos__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 120px;
  padding: 16px 8px;
  border-radius: 18px;
  text-decoration: none;
  cursor: default;
  opacity: var(--wv-client-logos-muted-opacity, .65);
  transition:
    opacity .35s ease,
    transform .35s ease,
    background-color .35s ease,
    box-shadow .35s ease;
}

a.wv-client-logos__item { cursor: pointer; }

.wv-client-logos__item:hover,
.wv-client-logos__item:focus-visible {
  opacity: 1;
  transform: translateY(-2px) scale(1.04);
  background: rgba(255,255,255,.04);
  outline: none;
}

/* Gold underline accent */
.wv-client-logos__item::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 170, 92, .55), transparent);
  opacity: 0;
  transform: scaleX(.6);
  transition: opacity .35s ease, transform .35s ease;
}
.wv-client-logos__item:hover::after,
.wv-client-logos__item:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

/* -- Logo image (negative � white) ----------------------------------------- */
.wv-client-logos__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: var(--wv-client-logos-logo-height, 120px);
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  transition: filter .35s ease, drop-shadow .35s ease;
}

.wv-client-logos__item:hover .wv-client-logos__img,
.wv-client-logos__item:focus-visible .wv-client-logos__img {
  filter: grayscale(1) brightness(0) invert(1)
    drop-shadow(0 0 20px rgba(var(--wv-client-logos-glow-rgb, 210, 170, 92), .42));
}

/* -- Text fallback (no featured image) ------------------------------------- */
.wv-client-logos__name-fallback {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(251, 247, 239, .82);
  transition: color .35s ease;
}

.wv-client-logos__item:hover .wv-client-logos__name-fallback,
.wv-client-logos__item:focus-visible .wv-client-logos__name-fallback {
  color: rgba(251, 247, 239, 1);
}

/* -- Nav buttons ------------------------------------------------------------ */
.wv-client-logos__nav {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(210, 170, 92, .38);
  background: rgba(255,255,255,.04);
  color: #D2AA5C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background-color .25s ease,
    color .25s ease,
    transform .25s ease,
    border-color .25s ease;
}

.wv-client-logos__nav:hover,
.wv-client-logos__nav:focus-visible {
  background: #D2AA5C;
  color: #080806;
  border-color: #D2AA5C;
  transform: translateY(-1px);
  outline: none;
}

.wv-client-logos__nav:disabled,
.wv-client-logos__nav[disabled] {
  opacity: .32;
  cursor: not-allowed;
  pointer-events: none;
}

/* -- Static mode (fewer logos than visible count) -------------------------- */
.wv-client-logos--static .wv-client-logos__track {
  justify-content: center;
}

/* -- Responsive columns ----------------------------------------------------- */
@media (max-width: 1200px) {
  .wv-client-logos--carousel {
    --wv-client-logos-visible: 5;
  }
}

@media (max-width: 980px) {
  .wv-client-logos--carousel {
    --wv-client-logos-visible: 4;
  }
  .wv-client-logos__carousel-shell { gap: 12px; }
  .wv-client-logos__nav { width: 40px; height: 40px; font-size: 26px; }
}

@media (max-width: 680px) {
  .wv-client-logos--carousel {
    --wv-client-logos-visible: 2;
    padding: 48px 0;
  }
  .wv-client-logos--carousel .wv-client-logos__inner {
    width: calc(100% - 28px);
  }
  .wv-client-logos__slide { padding: 0 6px; min-height: 110px; }
  .wv-client-logos__img {
    max-height: 80px;
  }
  .wv-client-logos__nav { width: 36px; height: 36px; font-size: 22px; }
}

@media (max-width: 420px) {
  .wv-client-logos--carousel {
    --wv-client-logos-visible: 1.55;
  }
}

/* -- Reduced motion --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .wv-client-logos__track {
    transition: none !important;
  }
  .wv-client-logos__item,
  .wv-client-logos__nav {
    transition: none !important;
  }
}

/* ==========================================================================
   Service Investment Guide  (.wv-service-guide)
   ========================================================================== */

.wv-service-guide {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(88px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(210, 170, 92, 0.13), transparent 34%),
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.055), transparent 26%),
    linear-gradient(180deg, #050505 0%, #090806 48%, #030303 100%);
  color: #f8f0dd;
}

.wv-service-guide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(210, 170, 92, 0.06), transparent 18%, transparent 82%, rgba(210, 170, 92, 0.05)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.018) 0,
      rgba(255,255,255,0.018) 1px,
      transparent 1px,
      transparent 120px
    );
  opacity: 0.42;
  pointer-events: none;
}

.wv-service-guide::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 80px;
  width: min(760px, 78vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(210,170,92,.55), transparent);
  opacity: .7;
  pointer-events: none;
}

.wv-service-guide__header {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.wv-service-guide .wv-eyebrow {
  margin: 0 0 14px;
  color: #d2aa5c;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.wv-service-guide .wv-section-title {
  max-width: 980px;
  margin: 0 auto;
  color: #fff8e8;
  font-family: var(--wv-font-display, Georgia, serif);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: .95;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0,0,0,.52);
}

.wv-service-guide__tagline {
  margin: 22px auto 0;
  color: #d2aa5c;
  font-family: var(--wv-font-display, Georgia, serif);
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  line-height: 1.35;
  font-style: italic;
}

.wv-service-guide__intro {
  max-width: 760px;
  margin: 34px auto clamp(46px, 6vw, 76px);
  text-align: center;
  color: rgba(248, 240, 221, .72);
  font-size: clamp(.98rem, 1.15vw, 1.12rem);
  line-height: 1.85;
}

.wv-service-guide__intro p {
  margin: 0;
}

.wv-service-guide__intro p + p {
  margin-top: 18px;
}

.wv-service-guide__intro-note {
  color: #d2aa5c;
  font-size: .94rem;
  font-style: italic;
}

/* Accordion container */
.wv-service-accordion {
  width: min(100%, 1120px);
  margin: 0 auto;
  border: 1px solid rgba(210, 170, 92, .24);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    rgba(8, 7, 5, .72);
  box-shadow:
    0 34px 90px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Category item */
.wv-service-category {
  border-bottom: 1px solid rgba(210, 170, 92, .20);
  background: transparent;
}

.wv-service-category:last-child {
  border-bottom: 0;
}

/* Trigger button */
.wv-service-category__trigger {
  width: 100%;
  min-height: 86px;
  padding: 0 clamp(22px, 3vw, 42px);
  border: 0;
  background: transparent;
  color: #f8f0dd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  transition:
    background .28s ease,
    color .28s ease,
    padding .28s ease;
}

.wv-service-category__trigger:hover,
.wv-service-category__trigger:focus-visible {
  background: rgba(210, 170, 92, .075);
  outline: none;
}

.wv-service-category__trigger:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(210,170,92,.72);
}

.wv-service-category.is-open .wv-service-category__trigger {
  background:
    linear-gradient(90deg, rgba(210,170,92,.18), rgba(248,240,221,.06), rgba(210,170,92,.10));
  color: #fff8e8;
}

.wv-service-category__trigger-content {
  min-width: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
}

.wv-service-category__number {
  color: #d2aa5c;
  font-family: var(--wv-font-display, Georgia, serif);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: .95;
}

.wv-service-category__name {
  color: #f8f0dd;
  font-family: var(--wv-font-display, Georgia, serif);
  font-size: clamp(1.2rem, 1.85vw, 1.72rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.wv-service-category__chevron {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(210,170,92,.34);
  border-radius: 999px;
  color: #d2aa5c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform .28s ease,
    background .28s ease,
    color .28s ease,
    border-color .28s ease;
}

.wv-service-category.is-open .wv-service-category__chevron {
  transform: rotate(180deg);
  background: #d2aa5c;
  color: #080705;
  border-color: #d2aa5c;
}

/* Panel */
.wv-service-category__panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(0,0,0,.12));
}

.wv-service-category__panel-inner {
  padding: clamp(24px, 4vw, 46px) clamp(22px, 4vw, 54px) clamp(30px, 4vw, 54px);
  border-top: 1px solid rgba(210,170,92,.14);
}

/* Description row */
.wv-service-category__desc-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.wv-service-category__desc {
  max-width: 620px;
  margin: 0;
  color: rgba(248,240,221,.70);
  font-size: 1rem;
  line-height: 1.75;
  font-style: italic;
}

.wv-service-category__detail-link {
  color: #d2aa5c;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .24s ease, transform .24s ease;
}

.wv-service-category__detail-link:hover,
.wv-service-category__detail-link:focus-visible {
  color: #fff8e8;
  transform: translateX(3px);
  outline: none;
}

/* Service list */
.wv-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(248,240,221,.12);
}

.wv-service-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(248,240,221,.10);
  color: #f8f0dd;
}

.wv-service-item__name {
  color: rgba(248,240,221,.88);
  font-size: .98rem;
  line-height: 1.45;
  font-weight: 500;
}

.wv-service-item__price {
  color: #d2aa5c;
  font-size: .92rem;
  line-height: 1.35;
  font-weight: 800;
  white-space: nowrap;
}

.wv-service-item__price--consult {
  color: #fff8e8;
  font-style: italic;
  opacity: .88;
}

.wv-service-item:hover .wv-service-item__name {
  color: #fff8e8;
}

.wv-service-item:hover .wv-service-item__price {
  color: #e7c878;
}

/* Empty state */
.wv-service-category__empty {
  margin: 0;
  padding: 18px 20px;
  border: 1px dashed rgba(210,170,92,.30);
  border-radius: 16px;
  color: rgba(248,240,221,.62);
  background: rgba(255,255,255,.035);
  font-size: .95rem;
}

/* Mobile */
@media (max-width: 768px) {
  .wv-service-guide {
    padding: 72px 0;
  }

  .wv-service-guide .wv-section-title {
    font-size: clamp(2rem, 12vw, 3.25rem);
  }

  .wv-service-guide__intro {
    margin-bottom: 42px;
    padding: 0 6px;
    font-size: .96rem;
    line-height: 1.7;
  }

  .wv-service-accordion {
    border-radius: 22px;
  }

  .wv-service-category__trigger {
    min-height: 78px;
    padding: 0 18px;
  }

  .wv-service-category__trigger-content {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .wv-service-category__number {
    font-size: .8rem;
  }

  .wv-service-category__name {
    font-size: 1.15rem;
  }

  .wv-service-category__chevron {
    width: 34px;
    height: 34px;
  }

  .wv-service-category__panel-inner {
    padding: 22px 18px 28px;
  }

  .wv-service-category__desc-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wv-service-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .wv-service-item__price {
    white-space: normal;
  }
}


/* ================================================================
   FIX -- Service Guide collapsed text contrast
   This must stay at the END of westvibe.css
   ================================================================ */

.wv-service-guide .wv-service-accordion .wv-service-category .wv-service-category__trigger {
  color: #f8f0dd;
}

.wv-service-guide .wv-service-accordion .wv-service-category .wv-service-category__trigger-content,
.wv-service-guide .wv-service-accordion .wv-service-category .wv-service-category__name {
  color: #f8f0dd;
  -webkit-text-fill-color: #f8f0dd;
  opacity: 1;
  visibility: visible;
}

.wv-service-guide .wv-service-accordion .wv-service-category .wv-service-category__number {
  color: #d2aa5c;
  -webkit-text-fill-color: #d2aa5c;
  opacity: 1;
}

.wv-service-guide .wv-service-accordion .wv-service-category .wv-service-category__chevron {
  color: #d2aa5c;
  border-color: rgba(210, 170, 92, 0.42);
}

/* Estado colapsado */
.wv-service-guide .wv-service-category:not(.is-open) .wv-service-category__trigger {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.030), rgba(210,170,92,0.020));
}

.wv-service-guide .wv-service-category:not(.is-open) .wv-service-category__name {
  color: rgba(248, 240, 221, 0.86);
  -webkit-text-fill-color: rgba(248, 240, 221, 0.86);
}

/* Hover / focus */
.wv-service-guide .wv-service-category:not(.is-open) .wv-service-category__trigger:hover,
.wv-service-guide .wv-service-category:not(.is-open) .wv-service-category__trigger:focus-visible {
  background:
    linear-gradient(90deg, rgba(210,170,92,0.12), rgba(248,240,221,0.045));
}

.wv-service-guide .wv-service-category:not(.is-open) .wv-service-category__trigger:hover .wv-service-category__name,
.wv-service-guide .wv-service-category:not(.is-open) .wv-service-category__trigger:focus-visible .wv-service-category__name {
  color: #fff8e8;
  -webkit-text-fill-color: #fff8e8;
}

/* Estado abierto */
.wv-service-guide .wv-service-category.is-open .wv-service-category__trigger {
  background:
    linear-gradient(90deg, rgba(210,170,92,0.20), rgba(248,240,221,0.075), rgba(210,170,92,0.12));
  color: #fff8e8;
}

.wv-service-guide .wv-service-category.is-open .wv-service-category__name {
  color: #fff8e8;
  -webkit-text-fill-color: #fff8e8;
}

/* Mejorar lineas */
.wv-service-guide .wv-service-category {
  border-bottom-color: rgba(210, 170, 92, 0.26);
}

.wv-service-guide .wv-service-accordion {
  border-color: rgba(210, 170, 92, 0.34);
}

/* Fondo de cada fila */
.wv-service-guide .wv-service-category__trigger {
  background-color: rgba(255,255,255,0.015);
}

/* Evitar que estilos globales de botones o spans daen el color */
.wv-service-guide button.wv-service-category__trigger span {
  color: inherit;
}

.wv-service-guide button.wv-service-category__trigger .wv-service-category__name {
  color: #f8f0dd;
  -webkit-text-fill-color: #f8f0dd;
}

/* Mobile */
@media (max-width: 768px) {
  .wv-service-guide .wv-service-category__name {
    color: #f8f0dd;
    -webkit-text-fill-color: #f8f0dd;
  }
}

/* ==========================================================================
   Appointment Modal  (.wv-appointment-modal)
   ========================================================================== */

.wv-appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 32px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 520ms ease, visibility 0s linear 520ms;
}

.wv-appointment-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 520ms ease, visibility 0s linear 0s;
}

.wv-appointment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .64);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.wv-appointment-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(210,170,92,.18), transparent 34%),
    #ead7bf;
  color: #111;
  border: 1px solid rgba(210,170,92,.34);
  box-shadow: 0 34px 120px rgba(0,0,0,.48);
  transform: translateY(24px) scale(.98);
  opacity: 0;
  transition: transform 520ms cubic-bezier(.22,1,.36,1), opacity 520ms ease;
}

.wv-appointment-modal.is-open .wv-appointment-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.wv-appointment-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: #050505;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}

.wv-appointment-modal__close:hover {
  background: #d2aa5c;
  color: #050505;
  transform: scale(1.08);
}

.wv-appointment-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  min-height: 620px;
}

.wv-appointment-modal__content {
  padding: clamp(32px, 5vw, 64px);
  overflow-y: auto;
}

.wv-appointment-modal__title {
  margin: 0 0 18px;
  font-family: var(--wv-font-display, Georgia, serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .95;
  letter-spacing: -0.03em;
  color: #050505;
}

.wv-appointment-modal__subtitle {
  max-width: 54ch;
  margin: 0 0 28px;
  color: rgba(17,17,17,.65);
  font-size: .98rem;
  line-height: 1.65;
}

/* Form layout */
.wv-appointment-form {
  display: grid;
  gap: 18px;
}

.wv-appointment-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wv-appointment-form__field {
  display: grid;
  gap: 7px;
}

.wv-appointment-form__label {
  color: rgba(17,17,17,.55);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.wv-appointment-form input,
.wv-appointment-form select,
.wv-appointment-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: #111;
  font-family: var(--wv-font-body, sans-serif);
  font-size: .94rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
  -webkit-appearance: none;
  appearance: none;
}

.wv-appointment-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23888' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
  cursor: pointer;
}

.wv-appointment-form textarea {
  min-height: 100px;
  padding: 16px 20px;
  border-radius: 20px;
  resize: vertical;
}

.wv-appointment-form input[type="date"] {
  cursor: pointer;
}

.wv-appointment-form input:focus,
.wv-appointment-form select:focus,
.wv-appointment-form textarea:focus {
  border-color: rgba(184,138,59,.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184,138,59,.14);
}

.wv-appointment-form__submit {
  min-height: 54px;
  padding: 0 32px;
  border-radius: 999px;
  border: 1.5px solid #111;
  background: #fff;
  color: #111;
  font-family: var(--wv-font-body, sans-serif);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .24s ease, color .24s ease, transform .22s ease;
}

.wv-appointment-form__submit:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.wv-appointment-form__submit:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

.wv-appointment-form__message {
  min-height: 20px;
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
}

.wv-appointment-form__message.is-success {
  color: #1a7a3f;
}

.wv-appointment-form__message.is-error {
  color: #a32626;
}

.wv-appointment-form__note {
  margin: 0;
  color: rgba(17,17,17,.42);
  font-size: .76rem;
  line-height: 1.55;
}

/* Decorative image panel */
.wv-appointment-modal__media {
  position: relative;
  overflow: hidden;
  border-radius: 0 22px 22px 0;
  background: rgba(210,170,92,.12);
}

.wv-appointment-modal__media--empty {
  display: none;
}

.wv-appointment-modal__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scroll lock */
body.wv-appointment-modal-open {
  overflow: hidden;
}

/* Hero 3rd button */
.wv-button--appointment {
  background: rgba(255,255,255,.76);
  color: #111;
  border: 1.5px solid rgba(210,170,92,.44);
  backdrop-filter: blur(6px);
}

.wv-button--appointment:hover {
  background: #fff;
  color: #111;
  border-color: rgba(210,170,92,.8);
}

/* -- Mobile ------------------------------------------------------------------ */
@media (max-width: 860px) {
  .wv-appointment-modal {
    align-items: flex-end;
    padding: 0;
  }

  .wv-appointment-modal__dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 28px 28px 0 0;
    transform: translateY(100%);
    opacity: 1;
  }

  .wv-appointment-modal.is-open .wv-appointment-modal__dialog {
    transform: translateY(0);
    opacity: 1;
  }

  .wv-appointment-modal__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .wv-appointment-modal__media {
    display: none !important;
  }

  .wv-appointment-modal__close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .wv-appointment-modal__content {
    padding: 44px 22px 32px;
  }

  .wv-appointment-modal__title {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .wv-appointment-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wv-appointment-form input,
  .wv-appointment-form select,
  .wv-appointment-form textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
  }
}

/* =========================================================
   Appointment Modal -- Premium refined design
   (overrides earlier block by cascade order)
   ========================================================= */

.wv-appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 34px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 520ms ease, visibility 0s linear 520ms;
}

.wv-appointment-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 520ms ease, visibility 0s linear 0s;
}

.wv-appointment-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(210,170,92,.12), transparent 34%),
    rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wv-appointment-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  max-height: min(88vh, 860px);
  overflow: auto;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,.32), transparent 30%),
    linear-gradient(135deg, #f1ddc3 0%, #e6cfb2 48%, #d9bd95 100%);
  border: 1px solid rgba(210,170,92,.42);
  box-shadow:
    0 34px 120px rgba(0,0,0,.56),
    inset 0 1px 0 rgba(255,255,255,.42);
  color: #100f0d;
  transform: translateY(22px) scale(.985);
  opacity: 0;
  transition:
    transform 560ms cubic-bezier(.22,1,.36,1),
    opacity 560ms ease;
}

.wv-appointment-modal.is-open .wv-appointment-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.wv-appointment-modal__dialog--no-media {
  width: min(100%, 790px);
}

.wv-appointment-modal__dialog--has-media {
  width: min(100%, 1080px);
}

.wv-appointment-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform .24s ease,
    background .24s ease,
    color .24s ease;
}

.wv-appointment-modal__close:hover,
.wv-appointment-modal__close:focus-visible {
  transform: scale(1.04);
  background: #d2aa5c;
  color: #050505;
  outline: none;
}

.wv-appointment-modal__grid {
  display: grid;
  min-height: 620px;
}

.wv-appointment-modal__dialog--has-media .wv-appointment-modal__grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
}

.wv-appointment-modal__dialog--no-media .wv-appointment-modal__grid {
  grid-template-columns: 1fr;
  min-height: auto;
}

.wv-appointment-modal__content {
  padding: clamp(34px, 5vw, 64px);
}

.wv-appointment-modal__dialog--no-media .wv-appointment-modal__content {
  padding: clamp(34px, 5vw, 58px);
}

.wv-appointment-modal__eyebrow {
  margin: 0 0 12px;
  color: #9b7330;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.wv-appointment-modal__title {
  max-width: 560px;
  margin: 0;
  padding: 0;
  background: none !important;
  box-shadow: none !important;
  -webkit-box-decoration-break: unset !important;
  box-decoration-break: unset !important;
  color: #050505;
  font-family: var(--wv-font-display, Georgia, serif);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .86;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.wv-appointment-modal__title::after {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  margin: 24px 0 0;
  background: linear-gradient(90deg, #9b7330, transparent);
}

.wv-appointment-modal__subtitle {
  max-width: 56ch;
  margin: 22px 0 30px;
  color: rgba(16,15,13,.66);
  font-size: .98rem;
  line-height: 1.75;
}

.wv-appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
}

.wv-appointment-form__field {
  display: grid;
  gap: 8px;
}

.wv-appointment-form__field--full,
.wv-appointment-form__message,
.wv-appointment-form__footer,
.wv-appointment-form__actions {
  grid-column: 1 / -1;
}

.wv-appointment-form__label {
  color: rgba(16,15,13,.58);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.wv-appointment-form input,
.wv-appointment-form select,
.wv-appointment-form textarea {
  width: 100%;
  min-height: 54px;
  box-sizing: border-box;
  padding: 0 20px;
  border: 1px solid rgba(16,15,13,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: #111;
  font-family: var(--wv-font-body, sans-serif);
  font-size: .96rem;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.74),
    0 10px 24px rgba(41,31,19,.06);
  -webkit-appearance: none;
  appearance: none;
  transition:
    border-color .24s ease,
    box-shadow .24s ease,
    background .24s ease;
}

.wv-appointment-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23888' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

.wv-appointment-form textarea {
  min-height: 116px;
  padding: 18px 20px;
  border-radius: 26px;
  resize: vertical;
}

.wv-appointment-form input:focus,
.wv-appointment-form select:focus,
.wv-appointment-form textarea:focus {
  border-color: rgba(155,115,48,.74);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(155,115,48,.13),
    0 14px 28px rgba(41,31,19,.10);
}

.wv-appointment-form__submit {
  width: 100%;
  min-height: 58px;
  border-radius: 999px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-family: var(--wv-font-body, sans-serif);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
  transition:
    transform .24s ease,
    background .24s ease,
    color .24s ease,
    box-shadow .24s ease;
}

.wv-appointment-form__submit:hover,
.wv-appointment-form__submit:focus-visible {
  transform: translateY(-1px);
  background: #d2aa5c;
  color: #050505;
  outline: none;
  box-shadow: 0 22px 46px rgba(80,54,15,.22);
}

.wv-appointment-form__submit[disabled] {
  opacity: .62;
  cursor: not-allowed;
  transform: none;
}

.wv-appointment-form__note {
  margin: 4px 0 0;
  color: rgba(16,15,13,.52);
  font-size: .78rem;
  line-height: 1.55;
}

.wv-appointment-form__message {
  min-height: 22px;
  color: rgba(16,15,13,.72);
  font-size: .9rem;
  line-height: 1.5;
}

.wv-appointment-form__message.is-success {
  color: #166534;
}

.wv-appointment-form__message.is-error {
  color: #9f1d1d;
}

.wv-appointment-modal__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}

.wv-appointment-modal__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(230,207,178,.18), transparent 42%),
    linear-gradient(180deg, transparent, rgba(0,0,0,.22));
  pointer-events: none;
}

.wv-appointment-modal__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.wv-appointment-modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .wv-appointment-modal {
    align-items: flex-end;
    padding: 0;
  }

  .wv-appointment-modal__dialog,
  .wv-appointment-modal__dialog--has-media,
  .wv-appointment-modal__dialog--no-media {
    width: 100%;
    max-height: 92vh;
    border-radius: 28px 28px 0 0;
    transform: translateY(48px);
    opacity: 0;
  }

  .wv-appointment-modal.is-open .wv-appointment-modal__dialog,
  .wv-appointment-modal.is-open .wv-appointment-modal__dialog--has-media,
  .wv-appointment-modal.is-open .wv-appointment-modal__dialog--no-media {
    transform: translateY(0);
    opacity: 1;
  }

  .wv-appointment-modal__grid,
  .wv-appointment-modal__dialog--has-media .wv-appointment-modal__grid,
  .wv-appointment-modal__dialog--no-media .wv-appointment-modal__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .wv-appointment-modal__media {
    display: none !important;
  }

  .wv-appointment-modal__close {
    top: 14px;
    right: 14px;
  }

  .wv-appointment-modal__content,
  .wv-appointment-modal__dialog--no-media .wv-appointment-modal__content {
    padding: 46px 22px 30px;
  }

  .wv-appointment-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wv-appointment-modal__title {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }
}

@media (max-width: 520px) {
  .wv-appointment-modal__content,
  .wv-appointment-modal__dialog--no-media .wv-appointment-modal__content {
    padding-inline: 18px;
  }

  .wv-appointment-modal__title {
    font-size: clamp(2.65rem, 15vw, 3.8rem);
  }

  .wv-appointment-modal__subtitle {
    font-size: .92rem;
  }

  .wv-appointment-form input,
  .wv-appointment-form select,
  .wv-appointment-form textarea {
    font-size: 16px;
  }
}

/* =========================================================
   Hero CTAs -- 3 buttons responsive layout
   ========================================================= */

.wv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(100%, 760px);
  margin: clamp(22px, 3vw, 32px) auto 0;
}

.wv-hero__actions .wv-button,
.wv-hero__actions button.wv-button {
  flex: 0 1 auto;
  min-width: 220px;
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  white-space: nowrap;
  text-align: center;
  box-sizing: border-box;
}

.wv-hero__actions .wv-button--appointment {
  min-width: 210px;
  background: rgba(255, 255, 255, 0.82);
  color: #111111;
  border: 1px solid rgba(210, 170, 92, 0.58);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
}

.wv-hero__actions .wv-button--appointment:hover,
.wv-hero__actions .wv-button--appointment:focus-visible {
  background: #ffffff;
  color: #111111;
  border-color: #d2aa5c;
  transform: translateY(-1px);
}

/* Desktop: 3 buttons in one row */
@media (min-width: 901px) {
  .wv-hero__actions,
  .wv-hero__actions--floating {
    flex-wrap: nowrap;
  }

  .wv-hero__actions .wv-button,
  .wv-hero__actions button.wv-button {
    width: auto;
  }
}

/* Floating variant: keep absolute positioning intact, just remove wrap */
@media (min-width: 901px) {
  .wv-hero__actions--floating {
    width: auto;
    margin: 0;
  }
}

/* Tablet: 2 + 1 centrado */
@media (max-width: 900px) {
  .wv-hero__actions {
    width: min(100%, 560px);
    gap: 14px;
  }

  .wv-hero__actions .wv-button,
  .wv-hero__actions button.wv-button {
    flex: 1 1 calc(50% - 14px);
    min-width: 180px;
  }

  .wv-hero__actions .wv-button--appointment {
    flex-basis: min(100%, 380px);
  }
}

/* Mobile: stacked full width */
@media (max-width: 560px) {
  .wv-hero__actions {
    width: min(100%, 320px);
    gap: 12px;
    margin-top: 24px;
  }

  .wv-hero__actions .wv-button,
  .wv-hero__actions button.wv-button,
  .wv-hero__actions .wv-button--appointment {
    width: 100%;
    min-width: 0;
    flex: 1 1 100%;
    min-height: 50px;
    padding: 0 20px;
  }
}

/* =========================================================
   FIX -- Service Guide priced services contrast
   ========================================================= */

.wv-service-guide,
.wv-service-guide * {
  box-sizing: border-box;
}

.wv-service-guide {
  color: #f8f0dd;
}

.wv-service-guide .wv-service-category__trigger,
.wv-service-guide .wv-service-category__trigger span,
.wv-service-guide .wv-service-category__name {
  color: #f8f0dd;
  -webkit-text-fill-color: #f8f0dd;
}

.wv-service-guide .wv-service-category__number,
.wv-service-guide .wv-service-category__chevron {
  color: #d2aa5c;
  -webkit-text-fill-color: #d2aa5c;
}

.wv-service-guide .wv-service-category__desc {
  color: rgba(248, 240, 221, 0.72);
  -webkit-text-fill-color: rgba(248, 240, 221, 0.72);
}

.wv-service-guide .wv-service-list {
  border-top: 1px solid rgba(248, 240, 221, 0.16);
}

.wv-service-guide .wv-service-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(40px, 1fr) auto;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(248, 240, 221, 0.12);
  color: #f8f0dd;
}

.wv-service-guide .wv-service-item__name {
  color: rgba(248, 240, 221, 0.88) !important;
  -webkit-text-fill-color: rgba(248, 240, 221, 0.88) !important;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.45;
  font-weight: 400;
}

.wv-service-guide .wv-service-item::after {
  content: "";
  min-width: 40px;
  height: 1px;
  align-self: center;
  border-bottom: 1px dashed rgba(210, 170, 92, 0.45);
  transform: translateY(0.18em);
}

.wv-service-guide .wv-service-item__price {
  color: #f3d28a !important;
  -webkit-text-fill-color: #f3d28a !important;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.25;
  font-weight: 800;
  white-space: nowrap;
  text-align: right;
}

.wv-service-guide .wv-service-item:hover .wv-service-item__name {
  color: #fff8e8 !important;
  -webkit-text-fill-color: #fff8e8 !important;
}

.wv-service-guide .wv-service-item:hover .wv-service-item__price {
  color: #ffe4a3 !important;
  -webkit-text-fill-color: #ffe4a3 !important;
}

.wv-service-guide .wv-service-category__detail-link {
  color: #d2aa5c;
  -webkit-text-fill-color: #d2aa5c;
}

.wv-service-guide .wv-service-category__detail-link:hover,
.wv-service-guide .wv-service-category__detail-link:focus-visible {
  color: #fff8e8;
  -webkit-text-fill-color: #fff8e8;
}

/* Prevent global theme button/span styles from forcing black text */
.wv-service-guide button,
.wv-service-guide button span,
.wv-service-guide li,
.wv-service-guide li span {
  color: inherit;
}

@media (max-width: 768px) {
  .wv-service-guide .wv-service-item {
    grid-template-columns: minmax(0, auto) minmax(28px, 1fr) auto;
    gap: 10px;
    padding: 14px 0;
  }

  .wv-service-guide .wv-service-item__name,
  .wv-service-guide .wv-service-item__price {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .wv-service-guide .wv-service-item {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .wv-service-guide .wv-service-item::after {
    display: none;
  }

  .wv-service-guide .wv-service-item__name {
    padding-right: 8px;
  }
}

/* =========================================================
   Testimonials � Premium Google Review Section
   ========================================================= */

/* -- Section base ----------------------------------------------------------- */
.wv-testimonials {
  overflow: hidden;
}

/* -- Dark header (premium) ------------------------------------------------- */
.wv-testimonials--premium .wv-testimonials__dark-head {
  background-color: var(--wv-testimonials-dark-bg, #12110F);
  padding: 80px 0 120px;
  text-align: center;
}

.wv-testimonials--premium .wv-testimonials__eyebrow {
  font-family: var(--wv-font-sans, sans-serif);
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wv-gold, #C9942E);
  margin: 0 0 1.25rem;
}

.wv-testimonials--premium .wv-testimonials__title {
  font-family: var(--wv-font-serif, serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--wv-cream, #F5F0E8);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.wv-testimonials--premium .wv-testimonials__subtitle {
  font-family: var(--wv-font-sans, sans-serif);
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.65);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Rating summary row */
.wv-testimonials__rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.wv-testimonials__stars {
  font-size: 1.25rem;
  color: var(--wv-gold, #C9942E);
  letter-spacing: 0.05em;
}

.wv-testimonials__score {
  font-family: var(--wv-font-sans, sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wv-cream, #F5F0E8);
}

.wv-testimonials__reviews {
  font-family: var(--wv-font-sans, sans-serif);
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.55);
}

/* Google CTA button � premium */
.wv-testimonials__google-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.wv-testimonials__google-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #12110f;
  border: 1px solid rgba(210, 170, 92, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  font-family: var(--wv-font-sans, sans-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.wv-testimonials__google-cta:hover,
.wv-testimonials__google-cta:focus-visible {
  transform: translateY(-2px);
  background: #d2aa5c;
  color: #0f0e0c;
  border-color: #d2aa5c;
  box-shadow: 0 24px 60px rgba(210, 170, 92, 0.24);
  outline: none;
}

.wv-testimonials__google-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.wv-testimonials__google-cta-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* =========================================================
   FIX � Testimonials full width + larger cards/text
   ========================================================= */

/* Break the .wv-container limit ONLY in the testimonials body */
.wv-testimonials--premium .wv-testimonials__body > .wv-container {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: clamp(18px, 4vw, 72px) !important;
  padding-right: clamp(18px, 4vw, 72px) !important;
}

/* Carousel breathes edge to edge */
.wv-testimonials--premium .wv-testimonials-carousel {
  width: 100%;
  max-width: none;
}

/* More breathing between cards */
.wv-testimonials--premium .wv-testimonials-carousel__track {
  gap: 30px;
}

/* Larger cards */
.wv-testimonials--premium .wv-testimonial-card {
  width: clamp(360px, 27vw, 520px) !important;
  min-height: 420px;
  padding: clamp(38px, 3vw, 54px);
  gap: 22px;
  border-radius: 6px;
}

/* Bigger text ~+6px */
.wv-testimonials--premium .wv-testimonial-card__stars {
  font-size: 23px;
}

.wv-testimonials--premium .wv-testimonial-card__quote {
  font-size: 21px;
  line-height: 1.68;
}

.wv-testimonials--premium .wv-testimonial-card__name {
  font-size: 20px;
}

.wv-testimonials--premium .wv-testimonial-card__service {
  font-size: 18px;
  letter-spacing: 0.06em;
}

/* Proportional avatar */
.wv-testimonials--premium .wv-testimonial-card__avatar,
.wv-testimonials--premium .wv-testimonial-card__avatar--placeholder {
  width: 56px;
  height: 56px;
  font-size: 20px;
}

/* Larger arrows */
.wv-testimonials--premium .wv-testimonials-carousel__arrow {
  width: 54px;
  height: 54px;
}

/* Tablet */
@media (max-width: 1024px) {
  .wv-testimonials--premium .wv-testimonials__body > .wv-container {
    padding-left: clamp(18px, 3vw, 40px) !important;
    padding-right: clamp(18px, 3vw, 40px) !important;
  }

  .wv-testimonials--premium .wv-testimonial-card {
    width: clamp(340px, 42vw, 440px) !important;
    min-height: 390px;
  }

  .wv-testimonials--premium .wv-testimonial-card__quote {
    font-size: 19px;
  }

  .wv-testimonials--premium .wv-testimonial-card__name {
    font-size: 18px;
  }

  .wv-testimonials--premium .wv-testimonial-card__service {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .wv-testimonials--premium .wv-testimonials__body > .wv-container {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .wv-testimonials--premium .wv-testimonials-carousel__track {
    gap: 18px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ==========================================================================
   LUXURY HERO � Premium editorial redesign
   Scoped to .wv-hero--cinematic to avoid touching other button/text contexts.
   Appended for cascade priority.
   ========================================================================== */

/* -- Eyebrow --------------------------------------------------------------- */
.wv-hero--cinematic .wv-hero__eyebrow,
.wv-hero--cinematic .wv-eyebrow {
  color: #d2aa5c;
  letter-spacing: 0.28em;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

/* -- Title: luxury font + gold gradient ----------------------------------- */
.wv-hero--cinematic .wv-hero__title {
  font-family: var(--wv-font-luxury);
  /* font-weight: 900; */
  text-transform: uppercase;
  letter-spacing: clamp(0.02em, 0.35vw, 0.06em);
  line-height: 1.0;
  font-size: clamp(2.8rem, 7vw, 7rem);
  /* max-width: 16ch; */
  /* margin-bottom: 16px; */
  background: white;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #f4d88a;
  text-shadow: none;
  /* Stroke: painted first, then transparent fill covers inner half ? only outer border shows */
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.85);
  paint-order: stroke fill;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.52)) drop-shadow(0 0 28px rgba(212, 170, 92, 0.18));
}

@supports not (-webkit-background-clip: text) {
  .wv-hero--cinematic .wv-hero__title {
    -webkit-text-fill-color: initial;
    background: none;
    color: #f4d88a;
    /* Stroke fallback via 8-direction text-shadow for non-background-clip browsers */
    text-shadow:
      -1.5px -1.5px 0 rgba(0, 0, 0, 0.85),
       1.5px -1.5px 0 rgba(0, 0, 0, 0.85),
      -1.5px  1.5px 0 rgba(0, 0, 0, 0.85),
       1.5px  1.5px 0 rgba(0, 0, 0, 0.85),
         0px -2px   0 rgba(0, 0, 0, 0.80),
         0px  2px   0 rgba(0, 0, 0, 0.80),
        -2px   0px  0 rgba(0, 0, 0, 0.80),
         2px   0px  0 rgba(0, 0, 0, 0.80),
      0 4px 16px rgba(0, 0, 0, 0.44),
      0 0 28px rgba(212, 170, 92, 0.22);
    filter: none;
  }
}

/* -- Gold rule below title ------------------------------------------------- */
.wv-hero--cinematic .wv-hero__title::after {
  width: clamp(140px, 18vw, 320px);
  height: 1px;
  margin-top: clamp(16px, 2vw, 24px);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 170, 92, 0.22),
    rgba(255, 239, 166, 0.95),
    rgba(212, 170, 92, 0.22),
    transparent
  );
  box-shadow: 0 0 18px rgba(212, 170, 92, 0.38);
  opacity: 1;
}

.wv-hero--cinematic .wv-hero__content--align-center .wv-hero__title::after {
  margin-inline: auto;
}

/* -- Subtitle and description --------------------------------------------- */
.wv-hero--cinematic .wv-hero__subtitle,
.wv-hero--cinematic .wv-hero__desc {
  color: rgba(255, 248, 232, 0.88);
  font-size: clamp(0.95rem, 1.2vw, 1.22rem);
  line-height: 1.72;
  letter-spacing: 0.035em;
  opacity: 1;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.52);
}

/* -- Actions row ----------------------------------------------------------- */
.wv-hero--cinematic .wv-hero__actions {
  gap: 18px;
  margin-top: 28px;
}

/* -- Luxury button base ---------------------------------------------------- */
.wv-hero--cinematic .wv-hero__actions .wv-button {
  position: relative;
  isolation: isolate;
  min-width: 200px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 12px;
  border: 1px solid rgba(255, 224, 139, 0.80);

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 226, 202, 0.68));
  color: #1e1508;
  border-color: rgba(255, 236, 170, 0.76);
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.70),
    0 8px 22px rgba(0, 0, 0, 0.22);


  font-family: var(--wv-font-luxury);
  font-size: clamp(0.72rem, 0.88vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.58);
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

/* Inner frame ring */
.wv-hero--cinematic .wv-hero__actions .wv-button::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 8px;
  border: 1px solid rgba(255, 240, 190, 0.22);
  pointer-events: none;
  z-index: 1;
}

/* Shine sweep */
.wv-hero--cinematic .wv-hero__actions .wv-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.32) 42%,
    transparent 62%
  );
  transform: translateX(-130%);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 2;
}

.wv-hero--cinematic .wv-hero__actions .wv-button:hover,
.wv-hero--cinematic .wv-hero__actions .wv-button:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 236, 170, 1);
  color: #fff8df;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.40),
    inset 0 -8px 16px rgba(0, 0, 0, 0.24),
    0 18px 44px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(212, 170, 92, 0.32);
  outline: none;
}

.wv-hero--cinematic .wv-hero__actions .wv-button:hover::after,
.wv-hero--cinematic .wv-hero__actions .wv-button:focus-visible::after {
  transform: translateX(130%);
}

/* Ghost / secondary � ivory glass */
.wv-hero--cinematic .wv-hero__actions .wv-button--ghost {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 226, 202, 0.68));
  color: #1e1508;
  border-color: rgba(255, 236, 170, 0.76);
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.70),
    0 8px 22px rgba(0, 0, 0, 0.22);
}

.wv-hero--cinematic .wv-hero__actions .wv-button--ghost:hover,
.wv-hero--cinematic .wv-hero__actions .wv-button--ghost:focus-visible {
  color: #12100a;
  background: linear-gradient(180deg, #fff, rgba(240, 230, 210, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.80),
    0 14px 36px rgba(0, 0, 0, 0.30);
}

/* Appointment � deeper gold */
.wv-hero--cinematic .wv-hero__actions .wv-button--appointment {
   background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 226, 202, 0.68));
  color: #1e1508;
  border-color: rgba(255, 236, 170, 0.76);
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.70),
    0 8px 22px rgba(0, 0, 0, 0.22);
}

/* -- Mobile ---------------------------------------------------------------- */
@media (max-width: 768px) {
  .wv-hero--cinematic .wv-hero__title {
    font-size: clamp(2.0rem, 11vw, 3.8rem);
    letter-spacing: 0.03em;
    max-width: 14ch;
  }

  .wv-hero--cinematic .wv-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 320px);
    gap: 12px;
  }

  .wv-hero--cinematic .wv-hero__actions .wv-button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    font-size: 0.76rem;
    text-align: center;
    justify-content: center;
  }
}

  .wv-testimonials--premium .wv-testimonial-card {
    width: min(86vw, 380px) !important;
    min-height: auto;
    padding: 30px;
  }

  .wv-testimonials--premium .wv-testimonial-card__stars {
    font-size: 20px;
  }

  .wv-testimonials--premium .wv-testimonial-card__quote {
    font-size: 18px;
  }

  .wv-testimonials--premium .wv-testimonial-card__name {
    font-size: 17px;
  }

  .wv-testimonials--premium .wv-testimonial-card__service {
    font-size: 14px;
  }
}

.wv-testimonials__google-cta:hover .wv-testimonials__google-cta-icon,
.wv-testimonials__google-cta:focus-visible .wv-testimonials__google-cta-icon {
  /* SVG keeps its own colors on hover */
}

@media (max-width: 680px) {
  .wv-testimonials__google-cta-wrap {
    margin-top: 20px;
  }
  .wv-testimonials__google-cta {
    width: min(100%, 320px);
    padding: 13px 18px;
    font-size: 12px;
  }
}

/* -- Body / carousel wrapper (premium) ------------------------------------- */
.wv-testimonials--premium .wv-testimonials__body {
  background: var(--wv-cream-bg, #FAFAF7);
  padding: 0 0 72px;
  /* Pull cards up over the dark head */
  margin-top: -64px;
}

/* -- Classic heading ------------------------------------------------------- */
.wv-testimonials--classic {
  padding: 80px 0;
  background: var(--wv-cream-bg, #FAFAF7);
}

.wv-testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}

.wv-testimonials--classic .wv-testimonials__eyebrow {
  font-family: var(--wv-font-sans, sans-serif);
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wv-gold, #C9942E);
  margin: 0 0 0.75rem;
}

.wv-testimonials--classic .wv-testimonials__title {
  font-family: var(--wv-font-serif, serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--wv-dark, #12110F);
  margin: 0 0 0.75rem;
}

.wv-testimonials--classic .wv-testimonials__subtitle {
  font-size: 0.9375rem;
  color: rgba(18, 17, 15, 0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* -- Carousel shell -------------------------------------------------------- */
.wv-testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.wv-testimonials-carousel__viewport {
  overflow: hidden;
  flex: 1 1 0%;
  min-width: 0;
}

.wv-testimonials-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* -- Arrow buttons --------------------------------------------------------- */
.wv-testimonials-carousel__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wv-cream, #F5F0E8);
  border: 1px solid rgba(201, 148, 46, 0.3);
  color: var(--wv-dark, #12110F);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.wv-testimonials-carousel__arrow svg {
  width: 20px;
  height: 20px;
}
.wv-testimonials-carousel__arrow:hover,
.wv-testimonials-carousel__arrow:focus-visible {
  background: var(--wv-gold, #C9942E);
  border-color: var(--wv-gold, #C9942E);
  color: #fff;
  outline: none;
}
.wv-testimonials-carousel__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Premium: arrows float over the dark band */
.wv-testimonials--premium .wv-testimonials-carousel__arrow {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}
.wv-testimonials--premium .wv-testimonials-carousel__arrow:hover,
.wv-testimonials--premium .wv-testimonials-carousel__arrow:focus-visible {
  background: var(--wv-gold, #C9942E);
  border-color: var(--wv-gold, #C9942E);
  color: #fff;
}

/* -- Testimonial card ------------------------------------------------------ */
.wv-testimonial-card {
  flex: 0 0 auto;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* width set by JS via CSS variable --card-width */
  width: var(--card-width, 340px);
}

/* Card inside premium body gets a top lift */
.wv-testimonials--premium .wv-testimonial-card {
  border-top: 3px solid var(--wv-gold, #C9942E);
}

/* Stars row */
.wv-testimonial-card__stars {
  display: flex;
  gap: 2px;
  font-size: 1.05rem;
  color: var(--wv-gold, #C9942E);
  line-height: 1;
}
.wv-testimonial-star--empty {
  color: rgba(201, 148, 46, 0.28);
}

/* Quote */
.wv-testimonial-card__quote {
  font-family: var(--wv-font-serif, serif);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--wv-dark, #12110F);
  margin: 0;
  flex: 1 1 auto;
}

/* Footer */
.wv-testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

/* Avatar */
.wv-testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.wv-testimonial-card__avatar--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wv-gold, #C9942E);
  color: #fff;
  font-family: var(--wv-font-sans, sans-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
}

/* Author info */
.wv-testimonial-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.wv-testimonial-card__name {
  font-family: var(--wv-font-sans, sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wv-dark, #12110F);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wv-testimonial-card__service {
  font-family: var(--wv-font-sans, sans-serif);
  font-size: 0.75rem;
  color: rgba(18, 17, 15, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* -- Static (3 or fewer cards, no JS scroll) ------------------------------- */
.wv-testimonials-carousel--static .wv-testimonials-carousel__track {
  justify-content: center;
  flex-wrap: wrap;
}
.wv-testimonials-carousel--static .wv-testimonials-carousel__arrow {
  display: none;
}

/* -- Responsive ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .wv-testimonials--premium .wv-testimonials__dark-head {
    padding: 60px 0 100px;
  }
  .wv-testimonials--premium .wv-testimonials__body {
    margin-top: -52px;
  }
}

@media (max-width: 767px) {
  .wv-testimonials--premium .wv-testimonials__dark-head {
    padding: 48px 0 80px;
    text-align: left;
  }
  .wv-testimonials__rating-summary {
    justify-content: flex-start;
  }
  .wv-testimonials--premium .wv-testimonials__body {
    margin-top: -40px;
    padding-bottom: 48px;
  }
  .wv-testimonials-carousel__arrow {
    display: none;
  }
  .wv-testimonials-carousel__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .wv-testimonials-carousel__viewport::-webkit-scrollbar {
    display: none;
  }
  .wv-testimonials-carousel__track {
    transform: none !important;
    gap: 16px;
    padding: 0 16px;
  }
  .wv-testimonial-card {
    scroll-snap-align: start;
    width: min(300px, 80vw);
  }
  .wv-testimonials--classic {
    padding: 56px 0;
  }
}

/* =========================================================
   End Testimonials
   ========================================================= */

/* =========================================================
   FIX � Testimonials cards floating over dark header
   Must stay at the END of westvibe.css
   ========================================================= */

.wv-testimonials--premium {
  position: relative;
  overflow: visible;
  background: var(--wv-cream-bg, #FAFAF7);
}

.wv-testimonials--premium .wv-testimonials__dark-head {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(180px, 16vw, 260px);
  overflow: visible;
}

.wv-testimonials--premium .wv-testimonials__body {
  position: relative;
  z-index: 3;
  margin-top: clamp(-180px, -12vw, -130px);
  padding: 0 0 clamp(72px, 8vw, 112px);
  background: transparent;
  overflow: visible;
}

.wv-testimonials--premium .wv-testimonials__body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(96px, 8vw, 140px);
  bottom: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 148, 46, 0.08), transparent 34%),
    var(--wv-cream-bg, #FAFAF7);
  pointer-events: none;
}

.wv-testimonials--premium .wv-testimonials-carousel {
  position: relative;
  z-index: 4;
  margin-top: 0;
  overflow: visible;
}

.wv-testimonials--premium .wv-testimonials-carousel__viewport {
  overflow: hidden;
  padding-top: 6px;
  padding-bottom: 18px;
}

.wv-testimonials--premium .wv-testimonials-carousel__track {
  align-items: stretch;
}

.wv-testimonials--premium .wv-testimonial-card {
  position: relative;
  z-index: 5;
  border-top: 3px solid var(--wv-gold, #C9942E);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.20),
    0 8px 22px rgba(201, 148, 46, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wv-testimonials--premium .wv-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.26),
    0 10px 28px rgba(201, 148, 46, 0.12);
}

.wv-testimonials--premium .wv-testimonials-carousel__arrow {
  position: relative;
  z-index: 6;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.18),
    0 4px 14px rgba(201, 148, 46, 0.10);
}

/* Tablet */
@media (max-width: 1024px) {
  .wv-testimonials--premium .wv-testimonials__dark-head {
    padding-bottom: clamp(150px, 18vw, 210px);
  }

  .wv-testimonials--premium .wv-testimonials__body {
    margin-top: clamp(-150px, -14vw, -110px);
  }

  .wv-testimonials--premium .wv-testimonials__body::before {
    top: clamp(80px, 10vw, 120px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .wv-testimonials--premium .wv-testimonials__dark-head {
    padding-top: 56px;
    padding-bottom: 138px;
    text-align: center;
  }

  .wv-testimonials--premium .wv-testimonials__body {
    margin-top: -96px;
    padding-bottom: 64px;
  }

  .wv-testimonials--premium .wv-testimonials__body::before {
    top: 76px;
  }

  .wv-testimonials--premium .wv-testimonials-carousel__viewport {
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 8px;
    padding-bottom: 20px;
  }

  .wv-testimonials--premium .wv-testimonials-carousel__track {
    padding-left: 18px;
    padding-right: 18px;
  }

  .wv-testimonials--premium .wv-testimonial-card {
    box-shadow:
      0 22px 48px rgba(0, 0, 0, 0.18),
      0 6px 16px rgba(201, 148, 46, 0.08);
  }
}

/* =========================================================
   End FIX Testimonials floating
   ========================================================= */

/* =========================================================
   Language Switcher � Flags
   ========================================================= */

/* Base link reset */
.wv-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: none;
  padding: 4px 6px;
  border-radius: 2px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  font-family: var(--wv-font-sans, sans-serif);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Flag emoji */
.wv-lang-btn__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
  transform: translateY(-0.5px);
}

/* Code text */
.wv-lang-btn__label {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* Divider between EN and ES */
.wv-lang-switcher__divider {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(17, 17, 17, 0.28);
  transform: rotate(15deg);
  flex-shrink: 0;
}

/* Active language: gold tint */
.wv-lang-btn--active {
  color: var(--wv-gold, #C9942E);
  font-weight: 600;
}
.wv-lang-btn--active .wv-lang-btn__label {
  border-bottom: 1px solid currentColor;
}

/* Hover on inactive */
.wv-lang-btn:not(.wv-lang-btn--active):hover,
.wv-lang-btn:not(.wv-lang-btn--active):focus-visible {
  color: var(--wv-gold, #C9942E);
  outline: none;
}

/* -- Transparent header (dark background) --- */
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-lang-btn {
  color: rgba(248, 240, 221, 0.80);
}
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-lang-btn--active {
  color: var(--wv-gold, #C9942E);
}
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-lang-switcher__divider {
  background: rgba(248, 240, 221, 0.40);
}
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-lang-btn:not(.wv-lang-btn--active):hover,
.wv-site-header[data-transparent="1"]:not(.is-scrolled) .wv-lang-btn:not(.wv-lang-btn--active):focus-visible {
  color: #fff;
}

/* -- Scrolled / solid header --- */
.wv-site-header.is-scrolled .wv-lang-btn {
  color: var(--wv-dark, #12110F);
}
.wv-site-header.is-scrolled .wv-lang-btn--active {
  color: var(--wv-gold, #C9942E);
}
.wv-site-header.is-scrolled .wv-lang-switcher__divider {
  background: rgba(17, 17, 17, 0.22);
}

/* -- Mobile menu --- */
.wv-mobile-menu .wv-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
}
.wv-mobile-menu .wv-lang-btn {
  font-size: 0.875rem;
  color: var(--wv-cream, #F5F0E8);
  padding: 6px 8px;
}
.wv-mobile-menu .wv-lang-btn--active {
  color: var(--wv-gold, #C9942E);
}
.wv-mobile-menu .wv-lang-switcher__divider {
  background: rgba(248, 240, 221, 0.30);
}

/* Focus-visible ring */
.wv-lang-btn:focus-visible {
  outline: 2px solid var(--wv-gold, #C9942E);
  outline-offset: 2px;
}

/* =========================================================
   End Language Switcher
   ========================================================= */

/* =========================================================
   WhatsApp Floating Button
   ========================================================= */

.wv-whatsapp-floating {
  position: fixed;
  z-index: var(--wv-wa-z, 9999);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* -- Positions -- */
.wv-whatsapp-floating--bottom-right {
  right:  var(--wv-wa-offset-x, 24px);
  bottom: var(--wv-wa-offset-y, 24px);
}
.wv-whatsapp-floating--bottom-left {
  left:   var(--wv-wa-offset-x, 24px);
  bottom: var(--wv-wa-offset-y, 24px);
  align-items: flex-start;
}
.wv-whatsapp-floating--center-right {
  right:  var(--wv-wa-offset-x, 24px);
  top:    50%;
  transform: translateY(-50%);
  align-items: flex-end;
}
.wv-whatsapp-floating--center-left {
  left:   var(--wv-wa-offset-x, 24px);
  top:    50%;
  transform: translateY(-50%);
  align-items: flex-start;
}

/* -- Visibility toggles -- */
@media (max-width: 767px) {
  .wv-whatsapp-floating--hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .wv-whatsapp-floating--hide-desktop { display: none !important; }
}

/* -- Trigger button -- */
.wv-whatsapp-floating__button {
  position: relative;
  width:  64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: var(--wv-wa-bg, #25D366);
  color: var(--wv-wa-color, #fff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(0,0,0,.28), 0 4px 12px rgba(0,0,0,.18);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  flex-shrink: 0;
}
.wv-whatsapp-floating__button:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 26px 60px rgba(0,0,0,.34);
}
.wv-whatsapp-floating__button:focus-visible {
  outline: 2px solid var(--wv-wa-accent, #C8A45D);
  outline-offset: 3px;
}

/* size variants */
.wv-whatsapp-floating--small .wv-whatsapp-floating__button  { width: 50px; height: 50px; }
.wv-whatsapp-floating--large .wv-whatsapp-floating__button  { width: 76px; height: 76px; }

/* -- Animations -- */
.wv-whatsapp-floating--pulse .wv-whatsapp-floating__button::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(37,211,102,.5);
  animation: wvWaPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes wvWaPulse {
  from { transform: scale(.9);  opacity: .85; }
  to   { transform: scale(1.4); opacity: 0;   }
}

.wv-whatsapp-floating--glow .wv-whatsapp-floating__button {
  box-shadow: 0 0 0 0 rgba(37,211,102,.6), 0 18px 45px rgba(0,0,0,.28);
  animation: wvWaGlow 2.2s ease-in-out infinite;
}
@keyframes wvWaGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.6), 0 18px 45px rgba(0,0,0,.28); }
  50%     { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 18px 45px rgba(0,0,0,.28); }
}

/* -- Icon -- */
.wv-whatsapp-floating__icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wv-whatsapp-floating__icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 4px;
}
.wv-whatsapp-floating--small .wv-whatsapp-floating__icon { width: 24px; height: 24px; }
.wv-whatsapp-floating--large .wv-whatsapp-floating__icon { width: 36px; height: 36px; }

/* -- Panel -- */
.wv-whatsapp-floating__panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: min(360px, calc(100vw - 32px));
  border-radius: 24px;
  background: var(--wv-wa-panel-bg, #11140f);
  color: var(--wv-wa-panel-color, #fff);
  box-shadow: 0 28px 72px rgba(0,0,0,.38), 0 4px 16px rgba(0,0,0,.22);
  border: 1px solid rgba(200,164,93,.22);
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px) scale(.97);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}
/* bottom-left panel alignment */
.wv-whatsapp-floating--bottom-left .wv-whatsapp-floating__panel,
.wv-whatsapp-floating--center-left .wv-whatsapp-floating__panel {
  right: auto;
  left: 0;
}

.wv-whatsapp-floating.is-open .wv-whatsapp-floating__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wv-whatsapp-floating--small .wv-whatsapp-floating__panel  { bottom: 66px; }
.wv-whatsapp-floating--large .wv-whatsapp-floating__panel  { bottom: 92px; }

/* -- Panel header -- */
.wv-whatsapp-floating__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 20px 16px;
  background: linear-gradient(135deg, rgba(37,211,102,.14) 0%, transparent 60%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.wv-whatsapp-floating__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wv-wa-bg, #25D366);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wv-whatsapp-floating__header-text {
  flex: 1;
  min-width: 0;
}
.wv-whatsapp-floating__brand {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wv-wa-accent, #C8A45D);
  margin-bottom: 2px;
}
.wv-whatsapp-floating__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--wv-wa-panel-color, #fff);
}
.wv-whatsapp-floating__subtitle {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  opacity: .72;
}

/* -- Close button -- */
.wv-whatsapp-floating__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--wv-wa-panel-color, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 2;
}
.wv-whatsapp-floating__close:hover { background: rgba(255,255,255,.22); }
.wv-whatsapp-floating__close:focus-visible {
  outline: 2px solid var(--wv-wa-accent, #C8A45D);
  outline-offset: 2px;
}

/* -- Body (textarea) -- */
.wv-whatsapp-floating__body { padding: 16px 20px 0; }
.wv-whatsapp-floating__message {
  width: 100%;
  min-height: 96px;
  max-height: 180px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: var(--wv-wa-panel-color, #fff);
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color .2s;
}
.wv-whatsapp-floating__message::placeholder { opacity: .5; }
.wv-whatsapp-floating__message:focus {
  outline: none;
  border-color: var(--wv-wa-accent, #C8A45D);
  background: rgba(255,255,255,.1);
}

/* -- Send button -- */
.wv-whatsapp-floating__send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 40px);
  margin: 14px 20px 20px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  background: var(--wv-wa-accent, #C8A45D);
  color: #111;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.wv-whatsapp-floating__send:hover {
  opacity: .9;
  transform: translateY(-1px);
}
.wv-whatsapp-floating__send:active { transform: translateY(0); }
.wv-whatsapp-floating__send:focus-visible {
  outline: 2px solid var(--wv-wa-accent, #C8A45D);
  outline-offset: 3px;
}

/* -- Mobile -- */
@media (max-width: 640px) {
  .wv-whatsapp-floating--bottom-right,
  .wv-whatsapp-floating--bottom-left {
    right:  16px;
    bottom: 16px;
    left: auto;
  }
  .wv-whatsapp-floating--bottom-left {
    left:  16px;
    right: auto;
  }
  .wv-whatsapp-floating__button {
    width:  56px;
    height: 56px;
  }
  .wv-whatsapp-floating--small .wv-whatsapp-floating__button { width: 46px; height: 46px; }
  .wv-whatsapp-floating--large .wv-whatsapp-floating__button { width: 64px; height: 64px; }
  .wv-whatsapp-floating__panel {
    bottom: 72px;
    right: 0;
    width: calc(100vw - 32px);
    max-width: 100%;
  }
  .wv-whatsapp-floating--bottom-left .wv-whatsapp-floating__panel { left: 0; right: auto; }
}

/* =========================================================
   End WhatsApp Floating Button
   ========================================================= */

/* ==========================================================================
   HERO LOCATION LINE � "NEW YORK HELL\'S KITCHEN" and equivalent
   ========================================================================== */

.wv-hero--cinematic .wv-hero__location-line {
  margin: clamp(8px, 1vw, 14px) 0 clamp(14px, 1.6vw, 22px);
  font-family: var(--wv-font-luxury);
  font-size: clamp(1.1rem, 2.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: clamp(0.06em, 0.45vw, 0.16em);
  text-transform: uppercase;
  color: #f4d88a;
  background: linear-gradient(
    180deg,
    #fff7c7 0%,
    #d7b45c 38%,
    #8f6424 68%,
    #f1d786 100%
  );
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.48);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.42));
}

@supports not (-webkit-background-clip: text) {
  .wv-hero--cinematic .wv-hero__location-line {
    background: none;
    color: #f4d88a;
    -webkit-text-fill-color: initial;
    text-shadow:
      0 2px 0 rgba(45, 28, 8, 0.42),
      0 10px 26px rgba(0, 0, 0, 0.48);
    filter: none;
  }
}

.wv-hero--cinematic .wv-hero__content--align-center .wv-hero__location-line {
  text-align: center;
}
.wv-hero--cinematic .wv-hero__content--align-right .wv-hero__location-line {
  text-align: right;
}

@media (max-width: 768px) {
  .wv-hero--cinematic .wv-hero__location-line {
    font-size: clamp(1.0rem, 5.5vw, 1.9rem);
    letter-spacing: 0.07em;
    margin-top: 8px;
    margin-bottom: 14px;
  }
}

/* -- Text layer variant ------------------------------------------------------ */
.wv-hero__text-layer--location-line {
  font-family: var(--wv-font-luxury);
  font-size: var(--wv-layer-size, clamp(1.4rem, 3vw, 3rem));
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: clamp(0.06em, 0.45vw, 0.16em);
  text-transform: uppercase;
  color: #f4d88a;
  background: linear-gradient(
    180deg,
    #fff7c7 0%,
    #d7b45c 38%,
    #8f6424 68%,
    #f1d786 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.38));
}

/* ==========================================================================
   GLOBAL LUXURY TYPOGRAPHY � luxury font stack for all editorial titles.
   Scoped to .wv-site to avoid touching admin/nav/body text.
   :where() keeps specificity at 0 so it can be easily overridden.
   ========================================================================== */

.wv-site :where(
  .wv-display,
  .wv-page-title,
  .wv-section-title,
  .wv-hero__title,
  .wv-hero__location-line,
  .wv-intro__title,
  .wv-about-westvibe__title,
  .wv-service-guide .wv-section-title,
  .wv-service-category__name,
  .wv-testimonials__title,
  .wv-client-logos__title,
  .wv-client-videos__title,
  .wv-visit__title,
  .wv-appointment-modal__title,
  .wv-promo-modal__title
) {
  font-family: var(--wv-font-luxury);
  font-variant-ligatures: discretionary-ligatures;
  text-rendering: optimizeLegibility;
}

/* -- Title spacing / rhythm � luxury font; tighten metrics  --------------- */
.wv-site :where(.wv-section-title, .wv-display, .wv-page-title, .wv-cta-title) {
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-wrap: balance;
}

@media (max-width: 768px) {
  .wv-site :where(.wv-section-title, .wv-display, .wv-page-title, .wv-cta-title) {
    line-height: 1.04;
    letter-spacing: 0.005em;
  }
}

/* -- Exclude small utility elements from luxury font override ----------------- */
.wv-site .wv-nav-list a,
.wv-site .wv-button,
.wv-site .wv-lang-btn,
.wv-site label,
.wv-site input,
.wv-site textarea,
.wv-site select {
  font-family: var(--wv-font-body);
}

/* ==========================================================================
   HERO FLAT REFINEMENT � Clean typography, no shadows, no reliefs
   Overrides the luxury effects block. Appended last for priority.
   ========================================================================== */

/* -- Title: restore proper gold gradient, strip ALL stroke/shadow/filter ---- */
.wv-hero--cinematic .wv-hero__title {
  background: linear-gradient(
    180deg,
    #fff7c7 0%,
    #d7b45c 30%,
    #8f6424 56%,
    #f1d786 76%,
    #7a5520 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #d7b45c;
  -webkit-text-stroke: 0;
  paint-order: normal;
  text-shadow: none;
  filter: none;
}

@supports not (-webkit-background-clip: text) {
  .wv-hero--cinematic .wv-hero__title {
    -webkit-text-fill-color: initial;
    background: none;
    color: #d7b45c;
    text-shadow: none;
    filter: none;
    -webkit-text-stroke: 0;
  }
}

/* Gold rule below title: keep visual but no glow */
.wv-hero--cinematic .wv-hero__title::after {
  box-shadow: none;
  opacity: 0.65;
}

/* -- Subtitle + description: Cormorant Garamond, flat ------------------------- */
.wv-hero--cinematic .wv-hero__subtitle,
.wv-hero--cinematic .wv-hero__desc {
  font-family: var(--wv-font-elegant, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.025em;
  color: rgba(255, 248, 232, 0.88);
  text-shadow: none;
  opacity: 1;
}

/* -- Location line: same gold gradient as title ------------------------------- */
.wv-hero--cinematic .wv-hero__location-line {
  font-family: var(--wv-font-luxury);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-stroke: 0;
  background: linear-gradient(
    180deg,
    #fff7c7 0%,
    #d7b45c 30%,
    #8f6424 56%,
    #f1d786 76%,
    #7a5520 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #d7b45c;
  text-shadow: none;
  filter: none;
  margin: 8px 0 16px;
  line-height: 1.4;
}

@supports not (-webkit-background-clip: text) {
  .wv-hero--cinematic .wv-hero__location-line {
    -webkit-text-fill-color: initial;
    background: none;
    color: #d7b45c;
  }
}

/* -- Overlay: simple flat dark layer, readable without text shadows ----------- */
.wv-hero--cinematic .wv-hero__shade {
  background: rgba(0, 0, 0, 0.28);
}

/* -- Buttons: completely flat, no inset shadows, no reliefs ------------------- */
/* .wv-hero--cinematic .wv-hero__actions .wv-button {
  background: rgba(16, 10, 4, 0.62);
  border: 1px solid rgba(212, 175, 92, 0.55);
  border-radius: 4px;
  color: #e4cf9d;
  box-shadow: none;
  text-shadow: none;
  letter-spacing: 0.12em;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
} */

/* Remove inner ring and shine sweep */
.wv-hero--cinematic .wv-hero__actions .wv-button::before,
.wv-hero--cinematic .wv-hero__actions .wv-button::after {
  display: none;
}

/* .wv-hero--cinematic .wv-hero__actions .wv-button:hover,
.wv-hero--cinematic .wv-hero__actions .wv-button:focus-visible {
  transform: none;
  background: rgba(26, 18, 6, 0.82);
  border-color: rgba(212, 175, 92, 0.88);
  color: #fff3d0;
  box-shadow: none;
  outline: 2px solid rgba(212, 175, 92, 0.38);
  outline-offset: 2px;
} */

/* Ghost button � transparent, minimal */
/* .wv-hero--cinematic .wv-hero__actions .wv-button--ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.wv-hero--cinematic .wv-hero__actions .wv-button--ghost:hover,
.wv-hero--cinematic .wv-hero__actions .wv-button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
  box-shadow: none;
} */

/* Appointment � flat warm gold */
/* .wv-hero--cinematic .wv-hero__actions .wv-button--appointment {
  background: rgba(160, 118, 40, 0.68);
  border-color: rgba(212, 175, 92, 0.72);
  box-shadow: none;
}

.wv-hero--cinematic .wv-hero__actions .wv-button--appointment:hover,
.wv-hero--cinematic .wv-hero__actions .wv-button--appointment:focus-visible {
  background: rgba(160, 118, 40, 0.88);
  border-color: rgba(212, 175, 92, 0.92);
  box-shadow: none;
} */

/* Mobile: location line may wrap on very small screens */
@media (max-width: 480px) {
  .wv-hero--cinematic .wv-hero__location-line {
    white-space: normal;
    letter-spacing: 3px;
    font-size: 11px;
  }
}


/* ==========================================================================
   LOCAL FONT-FACE DECLARATIONS � luxury font stack (load only if files exist).
   Files expected in: /assets/fonts/ relative to child theme.
   Fallback gracefully to --wv-font-luxury serif stack if files are absent.
   ========================================================================== */

@font-face {
  font-family: "Mirage";
  src: url("../fonts/Mirage.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Made Mirage";
  src: url("../fonts/MadeMirage.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Giaza Pro";
  src: url("../fonts/GiazaPro.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nectar Bold";
  src: url("../fonts/NectarBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   MAINTENANCE SCREEN � full-page luxury holding page.
   Used by template-parts/maintenance-page.php.
   ========================================================================== */

.wv-maintenance {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(210, 170, 92, 0.16), transparent 34%),
    linear-gradient(135deg, #050403 0%, #14100b 48%, #050403 100%);
  color: #f8f0dd;
  padding: clamp(32px, 6vw, 80px);
}

.wv-maintenance__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.55;
}

.wv-maintenance__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #050403;
  opacity: var(--wv-maintenance-overlay, 0.68);
}

.wv-maintenance::after {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: -1;
  border: 1px solid rgba(210, 170, 92, 0.22);
  pointer-events: none;
}

.wv-maintenance__inner {
  width: min(100%, 820px);
  text-align: center;
}

.wv-maintenance__logo {
  display: block;
  width: min(180px, 44vw);
  height: auto;
  margin: 0 auto clamp(28px, 4vw, 44px);
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.35));
}

.wv-maintenance__eyebrow {
  margin: 0 0 18px;
  color: #d2aa5c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.wv-maintenance__title {
  margin: 0;
  font-family: var(--wv-font-luxury);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-variant-ligatures: discretionary-ligatures;
  text-rendering: optimizeLegibility;
  color: #fff8e8;
  text-wrap: balance;
}

.wv-maintenance__title::after {
  content: "";
  display: block;
  width: min(280px, 56vw);
  height: 1px;
  margin: clamp(22px, 3vw, 34px) auto;
  background: linear-gradient(90deg, transparent, rgba(210, 170, 92, 0.92), transparent);
  box-shadow: 0 0 20px rgba(210, 170, 92, 0.28);
}

.wv-maintenance__subtitle {
  max-width: 62ch;
  margin: 0 auto;
  color: rgba(248, 240, 221, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.8;
}

.wv-maintenance__note {
  margin: 24px auto 0;
  color: rgba(248, 240, 221, 0.56);
  font-size: 0.92rem;
}

.wv-maintenance__actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.wv-maintenance__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid rgba(255, 224, 139, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, #d2aa5c, #f0d28a);
  color: #151008;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  transition: transform 0.22s ease;
}

.wv-maintenance__button:hover,
.wv-maintenance__button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

@media (max-width: 640px) {
  .wv-maintenance {
    padding: 28px;
  }

  .wv-maintenance::after {
    inset: 14px;
  }

  .wv-maintenance__title {
    font-size: clamp(2.4rem, 14vw, 4.4rem);
  }
}

/* =========================================================
   FINAL MOBILE FIX � Hero CTAs + About Reels
   Override-only block. Desktop styles are untouched above.
   ========================================================= */

/* -- Hero: compact premium buttons in mobile ------------------------------ */
@media (max-width: 768px) {
  .wv-hero--cinematic {
    min-height: 100svh;
  }

  .wv-hero--cinematic .wv-hero__content {
    justify-content: center;
    align-items: center;
    text-align: center;
    width: min(100% - 32px, 390px);
    padding: 96px 0 96px;
    margin-inline: auto;
  }

  .wv-hero--cinematic .wv-hero__title {
    font-size: clamp(2.15rem, 10vw, 3.45rem);
    line-height: 0.96;
    max-width: 12ch;
    margin-inline: auto;
  }

  .wv-hero--cinematic .wv-hero__location-line,
  .wv-hero--cinematic .wv-hero__subtitle,
  .wv-hero--cinematic .wv-hero__desc {
    max-width: 28ch;
    margin-inline: auto;
    text-align: center;
  }

  /* Reset any absolute/fixed positioning from desktop floating actions */
  .wv-hero--cinematic .wv-hero__actions,
  .wv-hero--cinematic .wv-hero__actions--floating {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: min(100%, 292px) !important;
    max-width: 292px !important;
    margin: 22px auto 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    transform: none !important;
  }

  /* Compact, pill-like luxury buttons � never card-sized */
  .wv-hero--cinematic .wv-hero__actions .wv-button,
  .wv-hero--cinematic .wv-hero__actions button.wv-button,
  .wv-hero--cinematic .wv-hero__actions--floating .wv-button,
  .wv-hero--cinematic .wv-hero__actions--floating button.wv-button {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 292px !important;
    min-height: 48px !important;
    height: 48px !important;
    padding: 0 18px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.72rem !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;
    white-space: nowrap !important;
    text-align: center !important;
    /* Kill any inherited block/flex-full-width override */
    flex: none !important;
  }

  .wv-hero--cinematic .wv-hero__actions .wv-button::before,
  .wv-hero--cinematic .wv-hero__actions--floating .wv-button::before {
    inset: 3px !important;
    border-radius: 10px !important;
  }
}

/* Very small phones */
@media (max-width: 390px) {
  .wv-hero--cinematic .wv-hero__content {
    width: min(100% - 24px, 360px);
  }

  .wv-hero--cinematic .wv-hero__actions,
  .wv-hero--cinematic .wv-hero__actions--floating {
    width: min(100%, 270px) !important;
    max-width: 270px !important;
  }

  .wv-hero--cinematic .wv-hero__actions .wv-button,
  .wv-hero--cinematic .wv-hero__actions button.wv-button {
    height: 46px !important;
    min-height: 46px !important;
    font-size: 0.68rem !important;
  }
}

/* -- About: vertical reel cards in mobile ---------------------------------- */
@media (max-width: 768px) {
  .wv-about-westvibe {
    padding: 64px 0 76px;
  }

  .wv-about-westvibe .wv-container {
    width: 100% !important;
    max-width: none !important;
    padding-inline: 0 !important;
  }

  .wv-about-westvibe__header {
    width: min(100% - 32px, 420px);
    margin-inline: auto;
    margin-bottom: 30px;
  }

  .wv-about-westvibe__title {
    font-size: clamp(2.4rem, 11vw, 3.7rem);
    line-height: 0.96;
  }

  .wv-about-westvibe__body {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* JS-transform carousel: viewport clips the track, JS sets translate3d */
  .wv-about-westvibe__carousel-shell {
    width: 100%;
    overflow: hidden;
  }

  .wv-about-westvibe__carousel-viewport {
    width: 100%;
    overflow: hidden;
  }

  /* Smooth CSS transition — JS only sets the transform value */
  .wv-about-westvibe__carousel-track,
  .wv-about-westvibe__carousel-shell.is-static .wv-about-westvibe__carousel-track {
    display: flex !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
  }

  /* 82% wide — the remaining 18% reveals the edge of the next slide */
  .wv-about-westvibe__carousel-slide,
  .wv-about-westvibe__carousel-shell.is-static .wv-about-westvibe__carousel-slide {
    flex: 0 0 82% !important;
    width: 82% !important;
    min-width: 0 !important;
  }

  /* Enforce 9:16 portrait aspect ratio */
  .wv-about-westvibe__media-card,
  .wv-about-westvibe__media-card--image,
  .wv-about-westvibe__media-card--video,
  .wv-about-westvibe__media-card--vertical {
    aspect-ratio: 9 / 16 !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }

  .wv-about-westvibe__media-img,
  .wv-about-westvibe__video,
  .wv-about-video-player,
  .wv-about-video-player video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  /* Hide JS-driven arrow buttons � user scrolls natively */
  .wv-about-westvibe__carousel-nav {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .wv-about-westvibe__carousel-slide,
  .wv-about-westvibe__carousel-shell.is-static .wv-about-westvibe__carousel-slide {
    flex: 0 0 86% !important;
    width: 86% !important;
  }

  .wv-about-westvibe__carousel-track,
  .wv-about-westvibe__carousel-shell.is-static .wv-about-westvibe__carousel-track {
    gap: 14px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wv-about-westvibe__carousel-track {
    transition: none !important;
  }
}

/* -- About video player controls: mobile compact --------------------------- */
@media (max-width: 768px) {
  .wv-about-video-player__play {
    width: 58px !important;
    height: 58px !important;
    background: rgba(255, 248, 232, 0.18) !important;
    border: 1px solid rgba(255, 248, 232, 0.35) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .wv-about-video-player__label {
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
  }

  .wv-about-video-player__controls {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    min-height: 38px !important;
    padding: 7px 9px !important;
    grid-template-columns: auto 1fr auto !important;
    border-radius: 999px !important;
    background: rgba(8, 8, 6, 0.62) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .wv-about-video-player__control {
    font-size: 12px !important;
    padding: 3px 5px !important;
  }

  .wv-about-video-player__progress {
    height: 3px !important;
  }
}

/* Very small phones: hide mute button to avoid cramped controls */
@media (max-width: 420px) {
  .wv-about-video-player__control[data-wv-about-video-mute] {
    display: none !important;
  }

  .wv-about-video-player__controls {
    grid-template-columns: auto 1fr !important;
  }
}
/* =========================================================
   FIX — Client Logos mobile size
   Override the inline --wv-client-logos-visible (set by PHP)
   and enlarge logos so mobile shows 1 card, not 4 tiny ones.
   ========================================================= */

@media (max-width: 680px) {
  .wv-client-logos--carousel {
    --wv-client-logos-visible: 1.18 !important;
    --wv-client-logos-logo-height: 120px !important;
    padding: 42px 0 !important;
  }

  .wv-client-logos--carousel .wv-client-logos__inner {
    width: 100% !important;
    max-width: none !important;
    padding-inline: 18px !important;
  }

  .wv-client-logos__carousel-shell {
    gap: 8px !important;
  }

  .wv-client-logos__viewport {
    width: 100% !important;
    overflow: hidden !important;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 4%,
      #000 96%,
      transparent 100%
    ) !important;
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 4%,
      #000 96%,
      transparent 100%
    ) !important;
  }

  .wv-client-logos__slide {
    flex: 0 0 calc(100% / var(--wv-client-logos-visible, 1.18)) !important;
    min-height: 150px !important;
    padding: 0 10px !important;
  }

  .wv-client-logos__item {
    min-height: 138px !important;
    padding: 22px 18px !important;
    border-radius: 22px !important;
  }

  .wv-client-logos__img {
    width: auto !important;
    max-width: min(76vw, 260px) !important;
    max-height: 120px !important;
    height: auto !important;
    object-fit: contain !important;
    opacity: 0.92 !important;
  }

  .wv-client-logos__name-fallback {
    font-size: 1rem !important;
    max-width: 260px !important;
    text-align: center !important;
  }

  .wv-client-logos__nav {
    width: 38px !important;
    height: 38px !important;
    font-size: 24px !important;
    z-index: 5 !important;
  }
}

@media (max-width: 420px) {
  .wv-client-logos--carousel {
    --wv-client-logos-visible: 1.08 !important;
    --wv-client-logos-logo-height: 128px !important;
  }

  .wv-client-logos--carousel .wv-client-logos__inner {
    padding-inline: 14px !important;
  }

  .wv-client-logos__slide {
    min-height: 160px !important;
    padding: 0 8px !important;
  }

  .wv-client-logos__item {
    min-height: 148px !important;
    padding: 24px 18px !important;
  }

  .wv-client-logos__img {
    max-width: min(82vw, 280px) !important;
    max-height: 128px !important;
  }
}

/* =========================================================
   CLIENT LOGOS — Continuous premium marquee (.wv-client-logos--continuous)
   Replaces the step-by-step JS carousel with a CSS animation loop.
   Two identical logo groups in the track; animation runs from 0 to -50%
   so the second group fills seamlessly, then it wraps back to 0.
   ========================================================= */

/* -- Viewport: clip + edge-fade mask ------------------------------------ */
.wv-client-logos--continuous .wv-client-logos__viewport {
  overflow: hidden !important;
  width: 100% !important;
  position: relative;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 5%,
    #000 95%,
    transparent 100%
  ) !important;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 5%,
    #000 95%,
    transparent 100%
  ) !important;
}

/* -- Track: pure CSS marquee, no JS transform ----------------------- */
.wv-client-logos--continuous .wv-client-logos__track {
  display: flex !important;
  width: max-content !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  transform: translateZ(0);
  will-change: transform;
  animation: wvClientLogosMarquee var(--wv-client-logos-speed, 30s) linear infinite;
}

/* -- Two identical groups ------------------------------------------- */
.wv-client-logos--continuous .wv-client-logos__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

/* -- Desktop slide sizing ------------------------------------------- */
.wv-client-logos--continuous .wv-client-logos__slide {
  flex: 0 0 auto !important;
  width: calc(100vw / 6) !important;
  min-width: 180px !important;
  max-width: 260px !important;
  padding-inline: 22px !important;
  padding-block: 0 !important;
  min-height: unset !important;
}

/* -- Hide nav arrows (marquee needs no prev/next) ------------------- */
.wv-client-logos--continuous .wv-client-logos__nav {
  display: none !important;
}

/* -- Mobile --------------------------------------------------------- */
@media (max-width: 768px) {
  .wv-client-logos--continuous {
    --wv-client-logos-speed: 18s !important;
  }

  .wv-client-logos--continuous .wv-client-logos__slide {
    width: 58vw !important;
    min-width: 220px !important;
    max-width: 280px !important;
    padding-inline: 18px !important;
    padding-block: 0 !important;
    min-height: unset !important;
  }

  .wv-client-logos--continuous .wv-client-logos__item {
    min-height: 132px !important;
    padding: 22px 18px !important;
    border-radius: 22px !important;
  }

  .wv-client-logos--continuous .wv-client-logos__img {
    max-width: min(78vw, 240px) !important;
    max-height: 110px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    opacity: 0.92 !important;
  }
}

@media (max-width: 420px) {
  .wv-client-logos--continuous {
    --wv-client-logos-speed: 16s !important;
  }

  .wv-client-logos--continuous .wv-client-logos__slide {
    width: 66vw !important;
    min-width: 225px !important;
    max-width: 290px !important;
  }

  .wv-client-logos--continuous .wv-client-logos__img {
    max-height: 120px !important;
  }
}

/* -- Keyframes ------------------------------------------------------ */
@keyframes wvClientLogosMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* -- Pause on desktop hover only (not touch devices) ---------------- */
@media (hover: hover) and (pointer: fine) {
  .wv-client-logos--continuous:hover .wv-client-logos__track {
    animation-play-state: paused;
  }
}

/* -- Respect reduced motion ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .wv-client-logos--continuous .wv-client-logos__track {
    animation: none !important;
    transform: none !important;
  }

  /* Hide the clone group so logos don't double up when static */
  .wv-client-logos--continuous .wv-client-logos__group[aria-hidden="true"] {
    display: none !important;
  }
}

/* =========================================================
   ABOUT — Continuous mobile carousel (.is-mobile-loop-ready)
   Track animated with translate3d() via requestAnimationFrame.
   Viewport uses overflow: hidden — no scroll-snap conflicts.
   ========================================================= */

@media (max-width: 768px) {
  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready {
    width: 100%;
    overflow: hidden;
  }

  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-westvibe__carousel-viewport {
    overflow: hidden !important;
    width: 100%;
    padding-inline: 0 !important;
    scroll-snap-type: none !important;
  }

  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-westvibe__carousel-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    justify-content: flex-start !important;
    gap: 14px !important;
    width: max-content !important;
    transform: translate3d(0, 0, 0);
    transition: none !important;
    will-change: transform;
  }

  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-westvibe__carousel-slide,
  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready.is-static .wv-about-westvibe__carousel-slide {
    flex: 0 0 clamp(160px, 43vw, 210px) !important;
    width: clamp(160px, 43vw, 210px) !important;
    min-width: clamp(160px, 43vw, 210px) !important;
    max-width: clamp(160px, 43vw, 210px) !important;
    scroll-snap-align: none !important;
  }

  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-westvibe__media-card,
  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-video-player {
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #111;
  }

  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-westvibe__media-card--video,
  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-westvibe__media-card--vertical,
  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-video-player {
    aspect-ratio: 9 / 16 !important;
  }

  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-westvibe__video,
  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-westvibe__media-img {
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: cover !important;
    object-position: center !important;
  }

  .wv-about-video-player--autoplay .wv-about-video-player__overlay,
  .wv-about-video-player--autoplay .wv-about-video-player__controls {
    display: none !important;
  }

  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-westvibe__carousel-nav {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-westvibe__carousel-track {
    gap: 12px !important;
  }

  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-westvibe__carousel-slide,
  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready.is-static .wv-about-westvibe__carousel-slide {
    flex-basis: clamp(150px, 44vw, 190px) !important;
    width: clamp(150px, 44vw, 190px) !important;
    min-width: clamp(150px, 44vw, 190px) !important;
    max-width: clamp(150px, 44vw, 190px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-westvibe__carousel-track {
    transform: none !important;
  }

  .wv-about-westvibe__carousel-shell.is-mobile-loop-ready .wv-about-westvibe__carousel-viewport {
    overflow-x: auto !important;
  }
}

/* =========================================================
   HERO — YouTube iframe background
   Covers the full slide like a video background.
   pointer-events: none prevents accidental clicks.
   ========================================================= */
.wv-hero__youtube {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

/* =========================================================
   WESTVIBE NAV — Services dropdown
   Desktop: absolute dropdown, hidden by default, shown on
   hover / focus-within. Mobile: static, always visible,
   indented below parent item.
   ========================================================= */

/* -- Parent <li> needs a stacking context for the absolute panel ----------- */
.wv-nav-list > li.menu-item-has-children,
.wv-nav-list > li.wv-nav-item-has-children {
  position: relative;
}

/* -- Invisible bridge over the gap so hover isn't lost moving to the panel - */
.wv-nav-list > li.menu-item-has-children::after,
.wv-nav-list > li.wv-nav-item-has-children::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px; /* must be >= gap (14px) + a small buffer */
  background: transparent;
  pointer-events: auto;
}

/* -- Top-level nav items stay flex, submenu li must NOT inherit ------------ */
.wv-nav-list > li.menu-item-has-children > .sub-menu > li,
.wv-nav-list > li.wv-nav-item-has-children > .wv-submenu > li {
  display: block !important;
  height: auto !important;
  width: 100%;
}

/* -- Submenu panel: hidden by default, absolute positioned ----------------- */
.wv-nav-list > li > .sub-menu,
.wv-nav-list > li > .wv-submenu {
  position: absolute !important;
  top: calc(100% + 14px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(8px) !important;

  display: block !important;        /* must be block, NOT flex */
  flex-direction: initial !important;
  align-items: initial !important;
  justify-content: initial !important;
  gap: 0 !important;
  height: auto !important;

  width: max-content;
  min-width: 280px;
  max-width: 340px;

  margin: 0 !important;
  padding: 10px 0;
  list-style: none;

  background: rgba(14, 14, 12, 0.96);
  border: 1px solid rgba(213, 173, 92, 0.38);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  /* Hidden until hover/focus */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  z-index: 99999;

  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}

/* -- Arrow caret ----------------------------------------------------------- */
.wv-nav-list > li > .sub-menu::before,
.wv-nav-list > li > .wv-submenu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(14, 14, 12, 0.96);
  border-left: 1px solid rgba(213, 173, 92, 0.38);
  border-top: 1px solid rgba(213, 173, 92, 0.38);
  pointer-events: none;
}

/* -- Submenu link: override inherited nav-list a styles ------------------- */
.wv-nav-list > li > .sub-menu > li > a,
.wv-nav-list > li > .wv-submenu > li > a {
  display: block !important;
  height: auto !important;
  width: 100%;
  padding: 14px 22px !important;

  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  line-height: 1.35 !important;
  text-transform: uppercase !important;
  text-align: left !important;
  text-decoration: none !important;
  white-space: nowrap;

  transform: none !important;

  transition:
    color 150ms ease,
    background-color 150ms ease,
    padding-left 150ms ease !important;
}

/* -- Submenu link: suppress the gold underline animation from parent rule -- */
.wv-nav-list > li > .sub-menu > li > a::after,
.wv-nav-list > li > .wv-submenu > li > a::after {
  display: none !important;
}

/* -- Submenu link hover / focus ------------------------------------------- */
.wv-nav-list > li > .sub-menu > li > a:hover,
.wv-nav-list > li > .sub-menu > li > a:focus,
.wv-nav-list > li > .wv-submenu > li > a:hover,
.wv-nav-list > li > .wv-submenu > li > a:focus {
  color: #d8b562 !important;
  background: rgba(213, 173, 92, 0.12) !important;
  padding-left: 28px !important;
  opacity: 1 !important;
  transform: none !important;
}

/* -- Dividers between items ------------------------------------------------ */
.wv-nav-list > li > .sub-menu > li,
.wv-nav-list > li > .wv-submenu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.wv-nav-list > li > .sub-menu > li:last-child,
.wv-nav-list > li > .wv-submenu > li:last-child {
  border-bottom: 0;
}

/* -- Open on hover / focus-within ----------------------------------------- */
.wv-nav-list > li:hover > .sub-menu,
.wv-nav-list > li:focus-within > .sub-menu,
.wv-nav-list > li:hover > .wv-submenu,
.wv-nav-list > li:focus-within > .wv-submenu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

/* =========================================================
   WESTVIBE NAV — Mobile submenu (static, always visible)
   ========================================================= */

@media (max-width: 991px) {
  .wv-mobile-nav-list .menu-item-has-children,
  .wv-mobile-nav-list .wv-nav-item-has-children {
    display: block;
  }

  .wv-mobile-nav-list .sub-menu,
  .wv-mobile-nav-list .wv-submenu {
    position: static !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;

    margin: 10px 0 16px !important;
    padding: 0 0 0 14px !important;

    background: transparent !important;
    border: 0 !important;
    border-left: 2px solid rgba(213, 173, 92, 0.40) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    list-style: none;
  }

  .wv-mobile-nav-list .sub-menu::before,
  .wv-mobile-nav-list .wv-submenu::before {
    display: none !important;
  }

  .wv-mobile-nav-list .sub-menu > li,
  .wv-mobile-nav-list .wv-submenu > li {
    display: block !important;
    border: 0 !important;
  }

  .wv-mobile-nav-list .sub-menu > li > a,
  .wv-mobile-nav-list .wv-submenu > li > a {
    display: block !important;
    height: auto !important;
    padding: 9px 0 !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    opacity: 0.8 !important;
    transform: none !important;
    color: rgba(0, 0, 0, 0.78) !important;
  }

  .wv-mobile-nav-list .sub-menu > li > a::after,
  .wv-mobile-nav-list .wv-submenu > li > a::after {
    display: none !important;
  }
}
