/* =============================================================
   whishess — LUXURY VISUAL SYSTEM
   Pure CSS upgrade layer. Loads AFTER the page's inline styles,
   so it elevates the existing markup without changing structure.
   Author: senior frontend / luxury brand design pass.
   ============================================================= */

:root {
  /* Palette */
  --wf-bg: #120c18;
  --wf-bg-2: #170f20;
  --wf-ink: #FAF7F2;
  --wf-gold: #C9A96E;
  --wf-gold-soft: #e7cf9f;
  --wf-gold-deep: #a8854f;
  --wf-blush: #F2D9D0;
  --wf-line: rgba(201, 169, 110, 0.16);
  --wf-line-strong: rgba(201, 169, 110, 0.34);

  /* Glass */
  --wf-glass: linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015));
  --wf-glass-strong: linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  --wf-glass-border: rgba(255, 255, 255, 0.10);
  --wf-blur: 16px;

  /* Gold gradient (text + accents) */
  --wf-grad-gold: linear-gradient(100deg, #e9d3a6 0%, #C9A96E 45%, #f3e2bf 70%, #b8965c 100%);
  --wf-grad-ink: linear-gradient(180deg, #ffffff 0%, #e7ddd2 100%);

  /* Shadows */
  --wf-shadow-soft: 0 18px 50px -24px rgba(0, 0, 0, 0.75);
  --wf-shadow-card: 0 30px 70px -40px rgba(0, 0, 0, 0.85);
  --wf-glow-gold: 0 0 0 1px rgba(201, 169, 110, 0.35), 0 22px 60px -28px rgba(201, 169, 110, 0.4);

  /* Motion */
  --wf-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --wf-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --wf-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Cursor light (updated by JS) */
  --wf-mx: 50vw;
  --wf-my: 30vh;
}

/* ----------------------------------------------------------------
   1. ATMOSPHERE — animated mesh, blobs, noise, cursor light
   ---------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  background: var(--wf-bg);
}

/* Make the content wrapper transparent so the fixed atmosphere shows */
.wf-root {
  background: transparent !important;
  position: relative;
  z-index: 1;
}

/* Animated mesh gradient base (fixed, behind everything) */
.wf-bg-atmos {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 18% 12%, rgba(201, 169, 110, 0.16), transparent 60%),
    radial-gradient(55% 45% at 85% 8%, rgba(242, 217, 208, 0.10), transparent 60%),
    radial-gradient(70% 60% at 75% 85%, rgba(120, 78, 160, 0.16), transparent 65%),
    radial-gradient(60% 55% at 10% 90%, rgba(201, 169, 110, 0.10), transparent 60%),
    linear-gradient(180deg, #140d1c 0%, #110a17 45%, #15101f 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 100% 100%;
  animation: wfMesh 26s ease-in-out infinite;
}

/* Floating blurred blobs */
.wf-bg-blob {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  will-change: transform;
}
.wf-bg-blob.b1 { width: 46vw; height: 46vw; left: -10vw; top: -6vw;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.42), transparent 68%); }
.wf-bg-blob.b2 { width: 40vw; height: 40vw; right: -12vw; top: 24vh;
  background: radial-gradient(circle, rgba(150, 96, 196, 0.34), transparent 68%); }
.wf-bg-blob.b3 { width: 38vw; height: 38vw; left: 26vw; bottom: -14vw;
  background: radial-gradient(circle, rgba(242, 217, 208, 0.24), transparent 70%); }

/* Fine noise overlay for filmic depth */
.wf-bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Mouse-follow ambient light */
.wf-cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 46vmax; height: 46vmax;
  z-index: -1;
  pointer-events: none;
  transform: translate3d(calc(var(--wf-mx) - 23vmax), calc(var(--wf-my) - 23vmax), 0);
  background: radial-gradient(circle, rgba(201, 169, 110, 0.10), rgba(201, 169, 110, 0.04) 35%, transparent 60%);
  mix-blend-mode: screen;
  transition: opacity 0.4s ease;
  will-change: transform;
}

/* Scroll progress bar */
.wf-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  z-index: 10000;
  background: var(--wf-grad-gold);
  box-shadow: 0 0 14px rgba(201, 169, 110, 0.7);
  transition: width 0.1s linear;
}

@keyframes wfMesh {
  0%   { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 0; }
  50%  { background-position: 60% 40%, 40% 30%, 30% 60%, 70% 40%, 0 0; }
  100% { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 0; }
}

/* ----------------------------------------------------------------
   2. TYPOGRAPHY — gradient headings, refined rhythm
   ---------------------------------------------------------------- */
.wf-hero h1,
.wf-hero-title,
.wf-section h2,
.wf-contact-info h2,
.wf-faq h2,
.wf-shell > h1 {
  background: var(--wf-grad-ink);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.wf-hero h1 em,
.wf-hero-title em,
.wf-section h2 em,
.wf-contact-info h2 em,
.wf-faq h2 em {
  background: var(--wf-grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: wfShimmerText 6s linear infinite;
}

.wf-hero-eyebrow,
.wf-section-eyebrow {
  position: relative;
  display: inline-block;
  padding-left: 2.6rem;
  color: var(--wf-gold-soft);
}
.wf-hero-eyebrow::before,
.wf-section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2rem; height: 1px;
  background: linear-gradient(90deg, transparent, var(--wf-gold));
}

@keyframes wfShimmerText {
  to { background-position: 200% center; }
}

/* ----------------------------------------------------------------
   3. NAV — sticky glass bar
   ---------------------------------------------------------------- */
.wf-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 1.1rem 2.5rem;
  background: rgba(18, 12, 24, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--wf-line);
  transition: background 0.4s var(--wf-ease), box-shadow 0.4s var(--wf-ease), padding 0.4s var(--wf-ease);
}
.wf-nav.wf-scrolled {
  background: rgba(15, 10, 20, 0.82);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.9);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.wf-logo { transition: text-shadow 0.4s var(--wf-ease); }
.wf-logo:hover { text-shadow: 0 0 24px rgba(201, 169, 110, 0.55); }

.wf-nav-links a {
  position: relative;
  transition: color 0.3s var(--wf-ease);
}
.wf-nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1px;
  background: var(--wf-grad-gold);
  transition: width 0.35s var(--wf-ease);
}
.wf-nav-links a:hover::after,
.wf-nav-links a.active::after { width: 100%; }
.wf-nav-links a.active { color: var(--wf-gold); }

/* ----------------------------------------------------------------
   4. BUTTONS — shimmer sweep, glow, magnetic-ready
   ---------------------------------------------------------------- */
.wf-cta-btn,
.wf-nav-cta {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: 0.72rem 1.6rem;
  letter-spacing: 0.14em;
  border: 1px solid var(--wf-line-strong);
  transition: transform 0.25s var(--wf-spring), box-shadow 0.35s var(--wf-ease), color 0.3s var(--wf-ease), background 0.3s var(--wf-ease);
  will-change: transform;
}
.wf-cta-btn.filled,
.wf-nav-cta {
  background: var(--wf-grad-gold);
  background-size: 200% auto;
  color: #1a1018;
  border-color: transparent;
  box-shadow: 0 12px 30px -14px rgba(201, 169, 110, 0.6);
}
.wf-cta-btn::before,
.wf-nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--wf-ease);
  pointer-events: none;
}
.wf-cta-btn:hover::before,
.wf-nav-cta:hover::before { left: 140%; }
.wf-cta-btn:hover,
.wf-nav-cta:hover {
  box-shadow: var(--wf-glow-gold);
}
.wf-cta-btn.filled:hover,
.wf-nav-cta:hover { background-position: right center; }

.wf-hero-actions { flex-wrap: wrap; }

/* ----------------------------------------------------------------
   5. HERO — cinematic stage, ribbon motion, glow
   ---------------------------------------------------------------- */
.wf-hero {
  position: relative;
  isolation: isolate;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.wf-hero::after {
  content: '';
  position: absolute;
  inset: -10% 30% auto auto;
  width: 30vw; height: 30vw;
  z-index: -1;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.22), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.wf-hero-visual {
  position: relative;
  perspective: 900px;
}
/* Rotating conic halo behind the gift box */
.wf-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 360px; height: 360px;
  max-width: 92vw; max-height: 92vw;
  border-radius: 50%;
  z-index: -1;
  background: conic-gradient(from 0deg, rgba(201, 169, 110, 0.0), rgba(201, 169, 110, 0.28), rgba(242, 217, 208, 0.12), rgba(201, 169, 110, 0.0));
  filter: blur(26px);
  opacity: 0.8;
  animation: wfSpin 18s linear infinite;
}
.wf-hero-visual svg {
  position: relative;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
  animation: wfFloat 6s ease-in-out infinite;
}
/* Twinkle the sparkle dots inside the hero SVG */
.wf-hero-visual svg circle {
  animation: wfTwinkle 3.2s ease-in-out infinite;
}
.wf-hero-visual svg circle:nth-of-type(2) { animation-delay: 0.6s; }
.wf-hero-visual svg circle:nth-of-type(3) { animation-delay: 1.2s; }
.wf-hero-visual svg circle:nth-of-type(4) { animation-delay: 1.8s; }
/* Bow center subtle pulse (ribbon life) */
.wf-hero-visual svg ellipse:last-of-type {
  transform-box: fill-box;
  transform-origin: center;
  animation: wfBowPulse 4s ease-in-out infinite;
}

/* Floating golden particles (injected by JS) */
.wf-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.wf-particle {
  position: absolute;
  bottom: -10px;
  width: var(--s, 5px);
  height: var(--s, 5px);
  border-radius: 50%;
  background: radial-gradient(circle, var(--wf-gold-soft), rgba(201, 169, 110, 0.1));
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.7);
  opacity: 0;
  animation: wfRise var(--d, 14s) linear infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes wfFloat {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50%      { transform: translateY(-16px) rotate(0.6deg); }
}
@keyframes wfSpin { to { transform: rotate(360deg); } }
@keyframes wfTwinkle {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}
@keyframes wfBowPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
@keyframes wfRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(-90vh) translateX(var(--x, 20px)); opacity: 0; }
}

/* ----------------------------------------------------------------
   6. STATS — glass band + counter
   ---------------------------------------------------------------- */
.wf-stats {
  background: var(--wf-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--wf-line);
  border-bottom: 1px solid var(--wf-line);
}
.wf-stat { transition: background 0.4s var(--wf-ease); }
.wf-stat:hover { background: rgba(201, 169, 110, 0.06); }
.wf-stat-number {
  background: var(--wf-grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----------------------------------------------------------------
   6b. VIDEO MARKETING SECTION — cinematic brand story preview
   ---------------------------------------------------------------- */
.wf-video-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
  isolation: isolate;
}
.wf-video-section::before {
  content: '';
  position: absolute;
  inset: 7% -1.5rem 6%;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 28%, rgba(201, 169, 110, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--wf-glass-border);
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.38));
}
.wf-video-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.04;
  margin: 0.8rem 0 1.2rem;
  background: var(--wf-grad-ink);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wf-video-copy h2 em {
  font-style: italic;
  background: var(--wf-grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wf-video-copy p {
  max-width: 520px;
  color: rgba(250, 250, 250, 0.62);
  font-size: 15px;
  line-height: 1.8;
}
.wf-video-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}
.wf-video-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--wf-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(250, 250, 250, 0.72);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.wf-video-points span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wf-gold);
  box-shadow: 0 0 14px rgba(201, 169, 110, 0.7);
}
.wf-video-card {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 0;
  max-height: 470px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--wf-glass-border);
  background: var(--wf-glass);
  box-shadow: var(--wf-shadow-card), var(--wf-glow-gold);
  transform-style: preserve-3d;
}
.wf-video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 45%, transparent 0 28%, rgba(0, 0, 0, 0.22) 56%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.7));
  pointer-events: none;
}
.wf-video-card::after {
  content: '';
  position: absolute;
  inset: -40% -20%;
  z-index: 3;
  background: linear-gradient(100deg, transparent 40%, rgba(255, 255, 255, 0.16) 50%, transparent 60%);
  transform: translateX(-65%) rotate(10deg);
  animation: wfVideoShine 6.5s var(--wf-ease) infinite;
  pointer-events: none;
}
.wf-video-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1s var(--wf-ease);
}
.wf-video-card:hover img { transform: scale(1.08); }
.wf-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--wf-gold);
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35), 0 0 0 8px rgba(201, 169, 110, 0.08);
  transition: transform 0.35s var(--wf-spring), box-shadow 0.35s var(--wf-ease), background 0.35s var(--wf-ease);
}
.wf-video-play::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: inherit;
  animation: wfVideoPulse 2.2s var(--wf-ease) infinite;
}
.wf-video-play span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid currentColor;
}
.wf-video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(201, 169, 110, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), var(--wf-glow-gold);
}
.wf-video-caption {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  color: #fff;
}
.wf-video-caption small {
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 10px;
}
.wf-video-caption strong {
  max-width: 260px;
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--wf-blush);
}
@keyframes wfVideoPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes wfVideoShine {
  0%, 48% { transform: translateX(-70%) rotate(10deg); }
  72%, 100% { transform: translateX(70%) rotate(10deg); }
}

/* ----------------------------------------------------------------
   7. SERVICE CARDS — floating glass, tilt, animated border, glow
   ---------------------------------------------------------------- */
.wf-services-grid {
  background: transparent;
  border: none;
  gap: 1.25rem;
}
.wf-service-card,
.wf-card,
.wf-shot {
  position: relative;
  background: var(--wf-glass) !important;
  backdrop-filter: blur(var(--wf-blur)) saturate(130%);
  -webkit-backdrop-filter: blur(var(--wf-blur)) saturate(130%);
  border: 1px solid var(--wf-glass-border);
  border-radius: 20px;
  box-shadow: var(--wf-shadow-card);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--wf-ease), box-shadow 0.4s var(--wf-ease), border-color 0.4s var(--wf-ease);
}
/* Spotlight that follows the cursor (vars set by JS) */
.wf-service-card::after,
.wf-card::after,
.wf-shot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(220px circle at var(--cx, 50%) var(--cy, 0%), rgba(201, 169, 110, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--wf-ease);
  pointer-events: none;
}
.wf-service-card:hover,
.wf-card:hover,
.wf-shot:hover {
  border-color: var(--wf-line-strong);
  box-shadow: var(--wf-shadow-card), var(--wf-glow-gold);
}
.wf-service-card:hover::after,
.wf-card:hover::after,
.wf-shot:hover::after { opacity: 1; }

/* Animated gradient border ring on hover */
.wf-service-card::before,
.wf-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--wf-angle, 0deg), transparent 20%, rgba(201, 169, 110, 0.65), rgba(242, 217, 208, 0.4), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s var(--wf-ease);
  pointer-events: none;
}
.wf-service-card:hover::before,
.wf-card:hover::before { opacity: 1; animation: wfBorderSpin 4s linear infinite; }

@property --wf-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes wfBorderSpin { to { --wf-angle: 360deg; } }

/* ----------------------------------------------------------------
   8. PROCESS — glass dots, animated connecting line
   ---------------------------------------------------------------- */
.wf-process { background: transparent; position: relative; }
.wf-steps::before {
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.5), transparent);
  background-size: 200% 100%;
  animation: wfLineFlow 5s linear infinite;
}
.wf-step-dot {
  background: var(--wf-glass-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: var(--wf-line-strong);
  transition: transform 0.4s var(--wf-spring), box-shadow 0.4s var(--wf-ease), border-color 0.4s var(--wf-ease);
}
.wf-step:hover .wf-step-dot {
  transform: translateY(-4px) scale(1.08);
  border-color: var(--wf-gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.12), 0 14px 30px -14px rgba(201, 169, 110, 0.6);
}
@keyframes wfLineFlow { to { background-position: 200% 0; } }

/* ----------------------------------------------------------------
   9. ABOUT — glass card
   ---------------------------------------------------------------- */
.wf-about { background: transparent; }
.wf-about-card {
  background: var(--wf-glass) !important;
  backdrop-filter: blur(var(--wf-blur));
  -webkit-backdrop-filter: blur(var(--wf-blur));
  border: 1px solid var(--wf-glass-border);
  border-radius: 22px;
  box-shadow: var(--wf-shadow-card);
}
.wf-about-value { transition: transform 0.35s var(--wf-ease); }
.wf-about-value:hover { transform: translateX(4px); }

/* ----------------------------------------------------------------
   10. FAQ — glass rows + elegant open animation
   ---------------------------------------------------------------- */
.wf-faq { background: transparent; }
.wf-faq-list {
  background: var(--wf-glass);
  backdrop-filter: blur(var(--wf-blur));
  -webkit-backdrop-filter: blur(var(--wf-blur));
  border: 1px solid var(--wf-glass-border);
  border-radius: 18px;
  padding: 0 1.6rem;
  box-shadow: var(--wf-shadow-soft);
}
.wf-faq-item { border-bottom-color: var(--wf-line); }
.wf-faq-item:last-child { border-bottom: none; }
.wf-faq-item summary::after {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--wf-line-strong);
  border-radius: 50%;
  line-height: 1;
  transition: transform 0.35s var(--wf-spring), background 0.3s var(--wf-ease), color 0.3s var(--wf-ease);
}
.wf-faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
  background: var(--wf-gold);
  color: #1a1018;
}
.wf-faq-item[open] p {
  animation: wfFaqOpen 0.5s var(--wf-ease-out) both;
}
/* FAQ with side image */
.wf-faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2.5rem;
}
.wf-faq-grid .wf-faq-list { margin-top: 0; }
.wf-faq-media {
  position: sticky;
  top: 96px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--wf-glass-border);
  box-shadow: var(--wf-shadow-card), var(--wf-glow-gold);
}
.wf-faq-media img {
  width: 100%; display: block;
  aspect-ratio: 3 / 4; object-fit: cover;
  transition: transform 0.8s var(--wf-ease);
}
.wf-faq-media:hover img { transform: scale(1.05); }
@media (max-width: 860px) {
  .wf-faq-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .wf-faq-media { position: static; max-width: 460px; }
}
@keyframes wfFaqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------
   11. CONTACT — glass form, glow focus
   ---------------------------------------------------------------- */
.wf-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--wf-glass-border);
  border-radius: 12px;
  transition: border-color 0.3s var(--wf-ease), box-shadow 0.3s var(--wf-ease), background 0.3s var(--wf-ease);
}
.wf-input:focus {
  border-color: var(--wf-gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.14);
}

/* ----------------------------------------------------------------
   12. SUBPAGE HEADERS
   ---------------------------------------------------------------- */
.wf-shell > .wf-lead { color: rgba(250, 250, 250, 0.62); }
.wf-shot-visual {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.18), rgba(150, 96, 196, 0.12));
  position: relative;
  overflow: hidden;
}
.wf-shot-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.14) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.9s var(--wf-ease);
}
.wf-shot:hover .wf-shot-visual::after { transform: translateX(100%); }

/* ----------------------------------------------------------------
   12b. PHOTO MEDIA — gallery, hero, about, service cards
   ---------------------------------------------------------------- */
.wf-shot-visual { height: 230px; padding: 0; }
.wf-shot-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transform-origin: center top;
  transition: transform 0.8s var(--wf-ease);
}
.wf-shot:hover .wf-shot-visual img { transform: scale(1.07); }

/* Hero featured photo */
.wf-hero-photo {
  position: relative;
  width: min(440px, 92%);
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--wf-glass-border);
  box-shadow: var(--wf-shadow-card), var(--wf-glow-gold);
  animation: wfFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
}
.wf-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wf-hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 12, 24, 0.5));
  pointer-events: none;
}

/* Hero 3-image collage */
.wf-hero-collage {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 13px;
  width: min(560px, 100%);
  aspect-ratio: 5 / 4;
}
.wf-hero-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--wf-glass-border);
  box-shadow: var(--wf-shadow-card);
  animation: wfFloat 6s ease-in-out infinite;
}
.wf-hero-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(18, 12, 24, 0.42));
  pointer-events: none;
}
.wf-hero-tile img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.8s var(--wf-ease);
}
.wf-hero-tile:hover img { transform: scale(1.07); }
.wf-hero-tile.t1 {
  grid-row: 1 / span 2;
  border-radius: 24px;
  box-shadow: var(--wf-shadow-card), var(--wf-glow-gold);
  animation-delay: 0s;
}
.wf-hero-tile.t2 { animation-delay: 0.6s; }
.wf-hero-tile.t3 { animation-delay: 1.2s; }
.wf-hero-tile.t4 { animation-delay: 1.8s; }
.wf-hero-tile.t5 { animation-delay: 2.4s; }

@media (max-width: 480px) {
  .wf-hero-collage { gap: 10px; }
  .wf-hero-tile { border-radius: 16px; }
  .wf-hero-tile.t1 { border-radius: 18px; }
}

/* About featured photo */
.wf-about-photo {
  margin-top: 1.6rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--wf-glass-border);
  box-shadow: var(--wf-shadow-card);
  max-width: 560px;
}
.wf-about-photo img {
  width: 100%; display: block;
  aspect-ratio: 16 / 10; object-fit: cover;
  transition: transform 0.8s var(--wf-ease);
}
.wf-about-photo:hover img { transform: scale(1.04); }

/* Service-card photo banner — image-first layout */
.wf-service-shot {
  margin: 0 0 1.15rem;
  aspect-ratio: 4 / 3;
  min-height: 200px;
  overflow: hidden;
  border-bottom: 1px solid var(--wf-glass-border);
}
.wf-service-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s var(--wf-ease);
}
.wf-service-card {
  padding: 0 0 1.75rem !important;
}
.wf-service-card h3,
.wf-service-card p,
.wf-service-card > .wf-service-tag,
.wf-service-card > .wf-card-actions {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.wf-service-card:hover .wf-service-shot img { transform: scale(1.07); }

.wf-card-actions {
  margin-top: 1.25rem;
  position: relative;
  z-index: 3;
}

.wf-service-card-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.72rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: #1A1220;
  background: var(--wf-gold, #C9A96E);
  border: 0.5px solid rgba(201, 169, 110, 0.85);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s var(--wf-ease), transform 0.25s var(--wf-spring), box-shadow 0.25s var(--wf-ease);
}

.wf-service-card-btn:hover {
  background: #b8965c;
  color: #1A1220;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -10px rgba(201, 169, 110, 0.55);
}

.wf-card-actions .wf-service-tag,
.wf-card-actions .wf-tag {
  display: block;
  width: fit-content;
  margin: 0.85rem auto 0;
  text-align: center;
}

/* ----------------------------------------------------------------
   13. FOOTER + SOCIAL
   ---------------------------------------------------------------- */
.wf-footer {
  background: rgba(0, 0, 0, 0.2);
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.wf-footer-brand-col .wf-footer-title--follow {
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.wf-footer-brand-col .wf-social-links {
  margin-top: 0.75rem;
}
@media (max-width: 1100px) {
  .wf-footer { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
@media (max-width: 680px) {
  .wf-footer { grid-template-columns: 1fr; gap: 1.5rem; }
}
.wf-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.wf-footer-links li {
  color: rgba(250, 250, 250, 0.7);
  font-size: 14px;
}
.wf-social-link { transition: transform 0.3s var(--wf-spring), background 0.3s var(--wf-ease), color 0.3s var(--wf-ease), box-shadow 0.3s var(--wf-ease); }
.wf-social-link:hover { box-shadow: var(--wf-glow-gold); }

/* ----------------------------------------------------------------
   14. WHATSAPP — richer pulse + breathing
   ---------------------------------------------------------------- */
.wf-whatsapp-float {
  animation: wfBreathe 3.2s ease-in-out infinite;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
}
.wf-whatsapp-float::after { animation: wf-whatsapp-ping 2.2s cubic-bezier(0.22, 0.61, 0.36, 1) infinite; }
@keyframes wfBreathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-2px) scale(1.05); }
}

/* ----------------------------------------------------------------
   15. SCROLL REVEAL (used by whishess-luxury.js)
   ---------------------------------------------------------------- */
[data-wf-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--wf-ease-out), transform 0.9s var(--wf-ease-out);
  transition-delay: var(--wf-delay, 0ms);
  will-change: opacity, transform;
}
[data-wf-reveal="zoom"] { transform: scale(0.92); }
[data-wf-reveal="left"] { transform: translateX(-40px); }
[data-wf-reveal="right"] { transform: translateX(40px); }
[data-wf-reveal].wf-in { opacity: 1; transform: none; }

/* Page-load entrance for the nav */
.wf-anim .wf-nav { opacity: 0; transform: translateY(-14px); }
.wf-loaded .wf-nav { opacity: 1; transform: none; transition: opacity 0.7s var(--wf-ease-out), transform 0.7s var(--wf-ease-out); }

/* ----------------------------------------------------------------
   16. RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 860px) {
  .wf-nav { padding: 0.95rem 1.4rem; }
  .wf-bg-blob { filter: blur(54px); opacity: 0.4; }
  .wf-video-section {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 2.5rem));
    padding: 3.5rem 0;
  }
  .wf-video-section::before { inset: 1.6rem -0.6rem; }
  .wf-video-card,
  .wf-video-card img {
    min-height: 0;
  }
}
@media (max-width: 640px) {
  .wf-hero { padding-top: 3rem; padding-bottom: 3rem; }
  .wf-faq-list { padding: 0 1.1rem; }
  .wf-cursor-glow { display: none; }
  .wf-video-section {
    width: min(100% - 2rem, 520px);
    padding: 3rem 0;
  }
  .wf-video-card { border-radius: 22px; }
  .wf-video-card,
  .wf-video-card img { min-height: 0; }
  .wf-video-play { width: 72px; height: 72px; }
  .wf-video-play span {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 16px;
  }
  .wf-video-caption {
    flex-direction: column;
    align-items: flex-start;
  }
  .wf-video-caption strong { text-align: left; font-size: 21px; }
}

/* ----------------------------------------------------------------
   16. SEO — local content, breadcrumbs, screen-reader utilities
   ---------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wf-seo-local {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 2rem 4rem;
  text-align: center;
}

.wf-seo-local h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 300;
  line-height: 1.15;
  color: #FAFAFA;
  margin-bottom: 1.25rem;
}

.wf-seo-local p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(250, 250, 250, 0.58);
  margin-bottom: 1rem;
}

.wf-seo-local a {
  color: #C9A96E;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wf-seo-local a:hover { color: #F2D9D0; }

.wf-seo-local strong {
  color: rgba(250, 250, 250, 0.82);
  font-weight: 500;
}

.wf-breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2.5rem 0;
  font-size: 12px;
  color: rgba(250, 250, 250, 0.45);
}

.wf-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.wf-breadcrumb li + li::before {
  content: '/';
  margin-right: 0.35rem;
  color: rgba(201, 169, 110, 0.45);
}

.wf-breadcrumb a {
  color: rgba(201, 169, 110, 0.75);
  text-decoration: none;
}

.wf-breadcrumb a:hover { color: #C9A96E; }

.wf-note {
  margin-top: 1.5rem;
  color: rgba(250, 250, 250, 0.58);
  font-size: 14px;
  line-height: 1.7;
  border-left: 2px solid rgba(201, 169, 110, 0.4);
  padding-left: 0.9rem;
}

.wf-note a {
  color: #C9A96E;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wf-note a:hover { color: #F2D9D0; }

/* ----------------------------------------------------------------
   16b. LEGAL PAGES — privacy & terms
   ---------------------------------------------------------------- */
.wf-legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem 4rem;
}

.wf-legal-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 300;
  color: #FAFAFA;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.wf-legal-updated {
  font-size: 13px;
  color: rgba(201, 169, 110, 0.75);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}

.wf-legal-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  color: #F2D9D0;
  margin: 2rem 0 0.75rem;
}

.wf-legal-page p,
.wf-legal-page li {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(250, 250, 250, 0.62);
  margin-bottom: 0.85rem;
}

.wf-legal-page ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.wf-legal-page a {
  color: #C9A96E;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wf-legal-page a:hover { color: #F2D9D0; }

.wf-shell--legal {
  max-width: none;
  padding: 0;
}

@media (max-width: 760px) {
  .wf-legal-page { padding: 2.5rem 1.25rem 3rem; }
}

/* ----------------------------------------------------------------
   17. ACCESSIBILITY — respect reduced motion
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  .wf-bg-atmos, .wf-bg-blob, .wf-hero-visual svg, .wf-hero-visual::before,
  .wf-whatsapp-float, .wf-particle { animation: none !important; }
  [data-wf-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
