/* ============================
   GLOBAL RESET
   ============================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { margin: 0; padding: 0; width: 100%; overflow-x: hidden; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ============================
   NAVBAR
   ============================ */
:root {
  --wd-bg: #f6f7fc;
  --wd-black: #1a1a1a;
  --wd-gold: #c9a96e;
  --wd-gold-light: #d4b87a;
  --wd-text: #1a1a1a;
  --wd-text-light: #6b6b6b;
  --wd-white: #ffffff;
  --wd-font-heading: 'Cormorant Garamond', Georgia, serif;
  --wd-font-body: 'Outfit', sans-serif;
}

/* Reset for GHL */
.wd-navbar * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar */
.wd-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 20px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-navbar.is-top {
  background: transparent;
}

.wd-navbar.is-scrolled {
  background: rgba(246, 247, 252, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.wd-navbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-navbar.is-scrolled .wd-navbar-inner {
  height: 72px;
}

/* Logo */
.wd-logo {
  position: relative;
  z-index: 10001;
  flex-shrink: 0;
}

.wd-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.wd-logo img {
  height: 64px;
  width: auto;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  object-fit: contain;
  border-radius: 6px;
}

.wd-navbar.is-scrolled .wd-logo img {
  height: 52px;
  mix-blend-mode: multiply;
}

/* Desktop Nav */
.wd-nav-links {
  display: none;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.wd-nav-links li a {
  font-family: var(--wd-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wd-black);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.wd-navbar.is-top .wd-nav-links li a {
  color: var(--wd-white);
}

.wd-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--wd-gold);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-nav-links li a:hover::after {
  width: 100%;
}

.wd-nav-links li a:hover {
  color: var(--wd-gold);
}

/* Desktop CTA */
.wd-nav-cta {
  display: none;
  align-items: center;
}

.wd-nav-cta a {
  font-family: var(--wd-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wd-white);
  background: var(--wd-black);
  padding: 12px 24px;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid var(--wd-black);
}

.wd-nav-cta a:hover {
  background: var(--wd-gold);
  border-color: var(--wd-gold);
  color: var(--wd-white);
}

.wd-navbar.is-top .wd-nav-cta a {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--wd-white);
}

.wd-navbar.is-top .wd-nav-cta a:hover {
  background: var(--wd-gold);
  border-color: var(--wd-gold);
}

/* Hamburger */
.wd-hamburger {
  position: relative;
  z-index: 10001;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.wd-hamburger-lines {
  width: 26px;
  height: 16px;
  position: relative;
}

.wd-hamburger-lines span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--wd-black);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.wd-navbar.is-top .wd-hamburger-lines span {
  background: var(--wd-white);
}

.wd-hamburger-lines span:nth-child(1) {
  top: 0;
}

.wd-hamburger-lines span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.wd-hamburger-lines span:nth-child(3) {
  bottom: 0;
  width: 60%;
}

/* Hamburger active state */
.wd-hamburger.is-active .wd-hamburger-lines span {
  background: var(--wd-black) !important;
  height: 2px !important;
}

.wd-hamburger.is-active .wd-hamburger-lines span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.wd-hamburger.is-active .wd-hamburger-lines span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.wd-hamburger.is-active .wd-hamburger-lines span:nth-child(3) {
  bottom: auto;
  top: 50%;
  width: 100%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Mobile Menu Overlay */
.wd-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: var(--wd-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 32px 60px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.wd-mobile-menu-links {
  list-style: none;
  margin-bottom: 40px;
}

.wd-mobile-menu-links li {
  overflow: hidden;
}

.wd-mobile-menu-links li a {
  display: block;
  font-family: var(--wd-font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--wd-black);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-property: transform, opacity, color;
}

.wd-mobile-menu.is-open .wd-mobile-menu-links li a {
  transform: translateY(0);
  opacity: 1;
}

.wd-mobile-menu.is-open .wd-mobile-menu-links li:nth-child(1) a { transition-delay: 0.08s; }
.wd-mobile-menu.is-open .wd-mobile-menu-links li:nth-child(2) a { transition-delay: 0.14s; }
.wd-mobile-menu.is-open .wd-mobile-menu-links li:nth-child(3) a { transition-delay: 0.20s; }
.wd-mobile-menu.is-open .wd-mobile-menu-links li:nth-child(4) a { transition-delay: 0.26s; }
.wd-mobile-menu.is-open .wd-mobile-menu-links li:nth-child(5) a { transition-delay: 0.32s; }
.wd-mobile-menu.is-open .wd-mobile-menu-links li:nth-child(6) a { transition-delay: 0.38s; }

.wd-mobile-menu-links li a:active {
  color: var(--wd-gold);
}

/* Mobile menu CTA */
.wd-mobile-menu-cta {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

.wd-mobile-menu.is-open .wd-mobile-menu-cta {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.44s;
}

.wd-mobile-menu-cta a {
  display: block;
  text-align: center;
  font-family: var(--wd-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wd-white);
  background: var(--wd-black);
  padding: 18px 32px;
  transition: all 0.3s ease;
}

.wd-mobile-menu-cta a:active {
  background: var(--wd-gold);
}

/* Mobile menu contact info */
.wd-mobile-menu-contact {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

.wd-mobile-menu.is-open .wd-mobile-menu-contact {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}

.wd-mobile-menu-contact a {
  display: block;
  font-family: var(--wd-font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--wd-text-light);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.wd-mobile-menu-contact a:active {
  color: var(--wd-gold);
}

.wd-mobile-menu-social {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.wd-mobile-menu-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--wd-text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.wd-mobile-menu-social a:active {
  border-color: var(--wd-gold);
  color: var(--wd-gold);
}

.wd-mobile-menu-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
  .wd-navbar {
    padding: 0 40px;
  }

  .wd-navbar-inner {
    height: 100px;
  }

  .wd-navbar.is-scrolled .wd-navbar-inner {
    height: 80px;
  }

  .wd-logo img {
    height: 80px;
  }

  .wd-navbar.is-scrolled .wd-logo img {
    height: 64px;
  }

  .wd-nav-links {
    display: flex;
  }

  .wd-nav-cta {
    display: flex;
  }

  .wd-hamburger {
    display: none;
  }
}

/* ============================
   HERO
   ============================ */
.wd-hero * { margin: 0; padding: 0; box-sizing: border-box; }

.wd-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  background: #000;
  margin-top: -80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Video */
.wd-hero-media { position: absolute; inset: 0; z-index: 1; }
.wd-hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 2s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-hero-media video.is-loaded { opacity: 1; }
.wd-hero-video-mobile { display: block; }
.wd-hero-video-desktop { display: none; }

/* Overlays - cinematic grade */
.wd-hero-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 35%, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0.2) 100%),
    radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(0,0,0,0.25) 100%);
}

/* Content */
.wd-hero-content {
  position: relative;
  z-index: 3;
  padding: 0 24px 52px;
}

.wd-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* Eyebrow with animated line */
.wd-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--wd-font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--wd-gold);
  margin-bottom: 24px;
  opacity: 0; transform: translateY(12px);
  animation: wd-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.wd-hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--wd-gold);
  opacity: 0;
  animation: wd-line-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

/* Heading - screen-dominating */
.wd-hero-h1 {
  font-family: var(--wd-font-heading);
  font-weight: 600;
  color: var(--wd-white);
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-size: clamp(56px, 14vw, 80px);
  margin-bottom: 32px;
  max-width: 100%;
}

.wd-hero-h1 .wd-h1-line {
  display: block;
  overflow: hidden;
}

.wd-hero-h1 .wd-h1-text {
  display: block;
  opacity: 0; transform: translateY(100%);
  animation: wd-text-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.wd-hero-h1 .wd-h1-line:nth-child(1) .wd-h1-text { animation-delay: 0.2s; }
.wd-hero-h1 .wd-h1-line:nth-child(2) .wd-h1-text { animation-delay: 0.35s; }

.wd-hero-h1 em {
  font-style: italic;
  color: var(--wd-gold);
}

/* Sub text */
.wd-hero-sub {
  font-family: var(--wd-font-body);
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(16px);
  animation: wd-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

/* CTA */
.wd-hero-cta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
  animation: wd-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

.wd-hero-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--wd-font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  color: var(--wd-black); background: var(--wd-gold);
  padding: 16px 32px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-hero-btn-primary:hover {
  background: var(--wd-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,169,110,0.25);
}

.wd-hero-btn-primary svg {
  width: 12px; height: 12px; fill: none;
  stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.wd-hero-btn-primary:hover svg { transform: translateX(3px); }

.wd-hero-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--wd-font-body);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  padding: 16px 4px;
  transition: color 0.3s ease;
}

.wd-hero-btn-ghost:hover { color: var(--wd-white); }

.wd-hero-btn-ghost svg {
  width: 14px; height: 14px; fill: none;
  stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Floating trust - bottom right desktop */
.wd-hero-trust-float {
  position: absolute;
  bottom: 52px; right: 24px;
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  animation: wd-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.3s forwards;
}

.wd-hero-trust-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 10px 18px;
}

.wd-hero-trust-pill svg {
  width: 10px; height: 10px; fill: var(--wd-gold);
}

.wd-hero-trust-pill span {
  font-family: var(--wd-font-body);
  font-size: 10px; font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}

/* Scroll cue */
.wd-hero-scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: wd-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.8s forwards;
}

.wd-hero-scroll-cue .wd-scroll-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--wd-gold);
  animation: wd-scroll-bob 2.2s ease-in-out infinite;
}

.wd-hero-scroll-cue .wd-scroll-track {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.4), transparent);
  margin-top: 4px;
}

/* Mobile trust inline */
.wd-hero-trust-inline {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 28px;
  opacity: 0; transform: translateY(12px);
  animation: wd-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.05s forwards;
}

.wd-hero-trust-inline .wd-hero-trust-pill { padding: 8px 14px; }

/* Keyframes */
@keyframes wd-rise { to { opacity: 1; transform: translateY(0); } }
@keyframes wd-text-up { to { opacity: 1; transform: translateY(0); } }
@keyframes wd-line-in { to { opacity: 0.5; } }
@keyframes wd-scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Responsive */
@media (min-width: 600px) {
  .wd-hero-content { padding: 0 40px 64px; }
  .wd-hero-h1 { font-size: clamp(64px, 11vw, 96px); }
  .wd-hero-sub { font-size: 15px; max-width: 400px; }
  .wd-hero-trust-float { right: 40px; bottom: 64px; }
}

@media (min-width: 1024px) {
  .wd-hero { margin-top: -100px; }
  .wd-hero-video-mobile { display: none; }
  .wd-hero-video-desktop { display: block; }
  .wd-hero-content { padding: 0 60px 88px; }
  .wd-hero-h1 {
    font-size: clamp(88px, 8.5vw, 140px);
    max-width: 900px;
    margin-bottom: 36px;
  }
  .wd-hero-sub { font-size: 16px; max-width: 420px; }
  .wd-hero-btn-primary { padding: 18px 40px; font-size: 12px; }
  .wd-hero-trust-float { display: flex; right: 60px; bottom: 88px; }
  .wd-hero-trust-inline { display: none; }
  .wd-hero-scroll-cue { display: flex; }
}

/* ============================
   S3-TRUST
   ============================ */
.wd-trust * { margin: 0; padding: 0; box-sizing: border-box; }

.wd-trust {
  background: var(--wd-bg);
  padding: 80px 0 64px;
  overflow: hidden;
}

/* Header */
.wd-trust-header {
  padding: 0 24px;
  margin-bottom: 48px;
}

.wd-trust-header-inner {
  max-width: 1320px; margin: 0 auto;
}

.wd-trust-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--wd-font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--wd-gold); margin-bottom: 20px;
  opacity: 0; transform: translateY(16px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-trust-eyebrow.is-visible { opacity: 1; transform: translateY(0); }

.wd-trust-eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--wd-gold); opacity: 0.4;
}

.wd-trust-heading {
  font-family: var(--wd-font-heading);
  font-size: clamp(40px, 10vw, 72px);
  font-weight: 600; color: var(--wd-black);
  line-height: 0.92; letter-spacing: -0.03em;
  opacity: 0; transform: translateY(28px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.wd-trust-heading.is-visible { opacity: 1; transform: translateY(0); }
.wd-trust-heading em { font-style: italic; color: var(--wd-gold); }

/* Stats row */
.wd-trust-stats {
  display: flex; gap: 40px;
  margin-top: 32px;
  opacity: 0; transform: translateY(16px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}
.wd-trust-stats.is-visible { opacity: 1; transform: translateY(0); }

.wd-trust-stat-num {
  font-family: var(--wd-font-heading);
  font-size: 40px; font-weight: 600;
  color: var(--wd-black); line-height: 1;
}

.wd-trust-stat-label {
  font-family: var(--wd-font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--wd-text-muted); margin-top: 6px;
}

/* Review track */
.wd-reviews-wrap {
  padding: 0 24px;
  overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.wd-reviews-wrap::-webkit-scrollbar { display: none; }

.wd-reviews-track {
  display: flex; gap: 16px;
  width: max-content;
  padding-bottom: 8px;
}

/* Cards - tall, layered feel */
.wd-review-card {
  flex: 0 0 280px;
  background: var(--wd-white);
  padding: 32px 26px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 280px;
}

.wd-review-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--wd-gold);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-review-card-stars {
  display: flex; gap: 2px; margin-bottom: 20px;
}
.wd-review-card-stars svg { width: 11px; height: 11px; fill: var(--wd-gold); }

.wd-review-card-text {
  font-family: var(--wd-font-body);
  font-size: 13px; font-weight: 300;
  color: var(--wd-text-light); line-height: 1.75;
  flex-grow: 1; margin-bottom: 24px;
}
.wd-review-card-text em {
  font-style: normal; color: var(--wd-black); font-weight: 500;
}

.wd-review-card-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--wd-border);
}

.wd-review-card-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--wd-black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--wd-font-heading);
  font-size: 13px; font-weight: 600; color: var(--wd-white);
}

.wd-review-card-name {
  font-family: var(--wd-font-body);
  font-size: 12px; font-weight: 500; color: var(--wd-black);
}

.wd-review-card-source {
  font-family: var(--wd-font-body);
  font-size: 10px; font-weight: 400; color: var(--wd-text-muted);
  margin-top: 1px;
}

/* Mobile dots */
.wd-reviews-dots {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 28px;
}

.wd-reviews-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.wd-reviews-dot.is-active {
  background: var(--wd-gold); width: 18px; border-radius: 3px;
}

@media (min-width: 600px) {
  .wd-trust { padding: 100px 0 80px; }
  .wd-trust-header { padding: 0 40px; margin-bottom: 56px; }
  .wd-reviews-wrap { padding: 0 40px; }
  .wd-review-card { flex: 0 0 340px; padding: 36px 30px; }
  .wd-reviews-dots { display: none; }
}

@media (min-width: 1024px) {
  .wd-trust { padding: 140px 0 100px; }
  .wd-trust-header { padding: 0 60px; margin-bottom: 72px; }
  .wd-trust-header-inner {
    display: grid; grid-template-columns: 1fr auto; align-items: end;
  }
  .wd-trust-heading { font-size: 72px; }
  .wd-trust-stats { margin-top: 0; gap: 48px; }
  .wd-trust-stat-num { font-size: 48px; }
  .wd-reviews-wrap { padding: 0 60px; }
  .wd-review-card {
    flex: 0 0 400px; padding: 40px 36px; min-height: 320px;
  }
  .wd-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.06);
  }
  .wd-review-card:hover::after { width: 100%; }
  .wd-review-card-text { font-size: 14px; }
}

/* ============================
   S4-SERVICES
   ============================ */
.wd-svc * { margin: 0; padding: 0; box-sizing: border-box; }

.wd-svc {
  background: var(--wd-black);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.wd-svc::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.wd-svc-inner { max-width: 1320px; margin: 0 auto; position: relative; z-index: 1; }

/* Header with oversized background text */
.wd-svc-header {
  margin-bottom: 56px;
  position: relative;
}

.wd-svc-bg-text {
  font-family: var(--wd-font-heading);
  font-size: clamp(80px, 22vw, 200px);
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  line-height: 0.85;
  letter-spacing: -0.04em;
  position: absolute;
  top: -20px; left: -8px;
  pointer-events: none;
  white-space: nowrap;
}

.wd-svc-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--wd-font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--wd-gold); margin-bottom: 20px;
  position: relative;
  opacity: 0; transform: translateY(16px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-svc-eyebrow.is-visible { opacity: 1; transform: translateY(0); }
.wd-svc-eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--wd-gold); opacity: 0.4;
}

.wd-svc-heading {
  font-family: var(--wd-font-heading);
  font-size: clamp(36px, 9vw, 64px);
  font-weight: 600; color: var(--wd-white);
  line-height: 0.92; letter-spacing: -0.03em;
  position: relative;
  opacity: 0; transform: translateY(28px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.wd-svc-heading.is-visible { opacity: 1; transform: translateY(0); }
.wd-svc-heading em { font-style: italic; color: var(--wd-gold); }

/* Service rows */
.wd-svc-list { position: relative; }

.wd-svc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  cursor: pointer;
  opacity: 0; transform: translateX(-12px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-svc-row.is-visible { opacity: 1; transform: translateX(0); }
.wd-svc-row:first-child { border-top: 1px solid rgba(255,255,255,0.05); }

.wd-svc-row-left { display: flex; align-items: center; gap: 20px; }

.wd-svc-row-num {
  font-family: var(--wd-font-body);
  font-size: 10px; font-weight: 400;
  color: rgba(255,255,255,0.2);
  width: 20px; flex-shrink: 0;
  letter-spacing: 0.04em;
}

.wd-svc-row-title {
  font-family: var(--wd-font-heading);
  font-size: clamp(24px, 6vw, 40px);
  font-weight: 500; color: var(--wd-white);
  line-height: 1.05;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-svc-row:hover .wd-svc-row-title {
  color: var(--wd-gold);
  transform: translateX(8px);
}

.wd-svc-row-desc {
  font-family: var(--wd-font-body);
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.3);
  display: none;
  max-width: 280px;
  line-height: 1.5;
}

.wd-svc-row-arrow {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  opacity: 0; transform: translateX(-6px);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-svc-row:hover .wd-svc-row-arrow { opacity: 1; transform: translateX(0); }
.wd-svc-row-arrow svg {
  width: 14px; height: 14px; fill: none;
  stroke: var(--wd-gold); stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Kitchen tag */
.wd-svc-tag {
  font-family: var(--wd-font-body);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--wd-gold);
  background: rgba(201,169,110,0.08);
  padding: 4px 10px;
  margin-left: 12px;
}

@media (min-width: 600px) {
  .wd-svc { padding: 100px 40px; }
  .wd-svc-header { margin-bottom: 64px; }
  .wd-svc-row { padding: 28px 0; }
}

@media (min-width: 1024px) {
  .wd-svc { padding: 160px 60px; }
  .wd-svc-header { margin-bottom: 80px; }
  .wd-svc-row { padding: 32px 0; }
  .wd-svc-row-title { font-size: 44px; }
  .wd-svc-row-desc { display: block; }
  .wd-svc-row-arrow { opacity: 0.2; transform: translateX(0); }
  .wd-svc-row:hover .wd-svc-row-arrow { opacity: 1; }
}

/* ============================
   S5-BENEFITS
   ============================ */
.wd-vshow * { margin: 0; padding: 0; box-sizing: border-box; }

/* Full-bleed image */
.wd-vshow-image {
  width: 100%;
  overflow: hidden;
}

.wd-vshow-image img {
  width: 100%;
  height: 60vh;
  min-height: 360px;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-vshow-image.is-visible img { transform: scale(1); }

/* Content strip */
.wd-vshow-content {
  background: var(--wd-white);
  padding: 64px 24px;
}

.wd-vshow-inner {
  max-width: 1320px; margin: 0 auto;
}

.wd-vshow-top {
  margin-bottom: 48px;
  opacity: 0; transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-vshow-top.is-visible { opacity: 1; transform: translateY(0); }

.wd-vshow-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--wd-font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--wd-gold); margin-bottom: 20px;
}
.wd-vshow-eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--wd-gold); opacity: 0.4;
}

.wd-vshow-heading {
  font-family: var(--wd-font-heading);
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 600; color: var(--wd-black);
  line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.wd-vshow-heading em { font-style: italic; color: var(--wd-gold); }

.wd-vshow-sub {
  font-family: var(--wd-font-body);
  font-size: 15px; font-weight: 300;
  color: var(--wd-text-light);
  line-height: 1.7;
  max-width: 520px;
}

/* Benefits grid */
.wd-vshow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.wd-vshow-benefit {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--wd-border);
  opacity: 0; transform: translateY(16px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-vshow-benefit.is-visible { opacity: 1; transform: translateY(0); }

.wd-vshow-benefit-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.wd-vshow-benefit-icon svg {
  width: 14px; height: 14px; fill: none;
  stroke: var(--wd-gold); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

.wd-vshow-benefit-title {
  font-family: var(--wd-font-body);
  font-size: 14px; font-weight: 500;
  color: var(--wd-black); margin-bottom: 4px;
}

.wd-vshow-benefit-desc {
  font-family: var(--wd-font-body);
  font-size: 13px; font-weight: 300;
  color: var(--wd-text-light); line-height: 1.55;
}

/* CTA */
.wd-vshow-cta {
  margin-top: 40px;
  opacity: 0; transform: translateY(12px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-vshow-cta.is-visible { opacity: 1; transform: translateY(0); }

.wd-vshow-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--wd-font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  color: var(--wd-black);
  padding: 0;
  transition: color 0.3s ease;
}
.wd-vshow-cta a:hover { color: var(--wd-gold); }
.wd-vshow-cta a svg {
  width: 14px; height: 14px; fill: none;
  stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.wd-vshow-cta a:hover svg { transform: translateX(4px); }

@media (min-width: 600px) {
  .wd-vshow-image img { height: 65vh; }
  .wd-vshow-content { padding: 80px 40px; }
  .wd-vshow-grid { grid-template-columns: 1fr 1fr; gap: 0 40px; }
}

@media (min-width: 1024px) {
  .wd-vshow-image img { height: 75vh; }
  .wd-vshow-content { padding: 100px 60px; }
  .wd-vshow-inner {
    display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start;
  }
  .wd-vshow-top { margin-bottom: 0; position: sticky; top: 120px; }
  .wd-vshow-grid { grid-template-columns: 1fr 1fr; gap: 0 48px; }
}

/* ============================
   S6-TINTING
   ============================ */
.wd-tint * { margin: 0; padding: 0; box-sizing: border-box; }

.wd-tint {
  background: var(--wd-bg);
  padding: 80px 24px;
}

.wd-tint-inner { max-width: 960px; margin: 0 auto; }

.wd-tint-header {
  margin-bottom: 48px;
  text-align: center;
  opacity: 0; transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-tint-header.is-visible { opacity: 1; transform: translateY(0); }

.wd-tint-eyebrow {
  font-family: var(--wd-font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--wd-gold); margin-bottom: 16px;
}

.wd-tint-heading {
  font-family: var(--wd-font-heading);
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 600; color: var(--wd-black);
  line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.wd-tint-heading em { font-style: italic; color: var(--wd-gold); }

.wd-tint-sub {
  font-family: var(--wd-font-body);
  font-size: 14px; font-weight: 300;
  color: var(--wd-text-light); line-height: 1.65;
  max-width: 480px; margin: 0 auto;
}

/* Cards */
.wd-tint-cards {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}

.wd-tint-card {
  background: var(--wd-white);
  padding: 36px 28px;
  border-radius: 2px;
  position: relative;
  opacity: 0; transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-tint-card.is-visible { opacity: 1; transform: translateY(0); }

.wd-tint-card--ceramic { border: 1px solid var(--wd-gold); }

.wd-tint-badge {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--wd-gold); color: var(--wd-white);
  font-family: var(--wd-font-body);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 14px;
}

.wd-tint-card-title {
  font-family: var(--wd-font-heading);
  font-size: 28px; font-weight: 600;
  color: var(--wd-black); margin-bottom: 6px;
}

.wd-tint-card-sub {
  font-family: var(--wd-font-body);
  font-size: 12px; font-weight: 400;
  color: var(--wd-text-muted); margin-bottom: 24px;
}

.wd-tint-card ul { list-style: none; margin-bottom: 24px; }

.wd-tint-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--wd-font-body);
  font-size: 13px; font-weight: 400;
  color: var(--wd-text-light); line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.wd-tint-card ul li:last-child { border-bottom: none; }

.wd-tint-card ul li svg {
  width: 13px; height: 13px; fill: none;
  stroke: var(--wd-gold); stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; margin-top: 3px;
}

.wd-tint-card--standard ul li svg { stroke: var(--wd-text-muted); }

.wd-tint-card-ideal {
  font-family: var(--wd-font-body);
  font-size: 11px; font-weight: 400;
  color: var(--wd-text-muted); line-height: 1.5;
  padding-top: 16px; border-top: 1px solid var(--wd-border);
}
.wd-tint-card-ideal strong { font-weight: 500; color: var(--wd-text-light); }

@media (min-width: 600px) {
  .wd-tint { padding: 100px 40px; }
  .wd-tint-cards { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (min-width: 1024px) {
  .wd-tint { padding: 140px 60px; }
  .wd-tint-header { margin-bottom: 64px; }
  .wd-tint-card { padding: 44px 36px; }
}

/* ============================
   S7-KITCHEN
   ============================ */
.wd-kitchen * { margin: 0; padding: 0; box-sizing: border-box; }

.wd-kitchen {
  background: var(--wd-white);
  overflow: hidden;
}

/* Split layout - image + content side by side on desktop, stacked on mobile */
.wd-kitchen-wrap {
  max-width: 1440px;
  margin: 0 auto;
}

/* Image */
.wd-kitchen-image {
  width: 100%;
  overflow: hidden;
}

.wd-kitchen-image img {
  width: 100%;
  height: 55vh;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-kitchen-image.is-visible img { transform: scale(1); }

/* Content */
.wd-kitchen-content {
  padding: 56px 24px 72px;
}

.wd-kitchen-content-inner { max-width: 600px; }

.wd-kitchen-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--wd-font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--wd-gold); margin-bottom: 20px;
  opacity: 0; transform: translateY(16px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-kitchen-eyebrow.is-visible { opacity: 1; transform: translateY(0); }
.wd-kitchen-eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--wd-gold); opacity: 0.4;
}

.wd-kitchen-heading {
  font-family: var(--wd-font-heading);
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 600; color: var(--wd-black);
  line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 20px;
  opacity: 0; transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.wd-kitchen-heading.is-visible { opacity: 1; transform: translateY(0); }
.wd-kitchen-heading em { font-style: italic; color: var(--wd-gold); }

.wd-kitchen-desc {
  font-family: var(--wd-font-body);
  font-size: 15px; font-weight: 300;
  color: var(--wd-text-light); line-height: 1.75;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(16px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.wd-kitchen-desc.is-visible { opacity: 1; transform: translateY(0); }

/* Features - minimal, architectural feel */
.wd-kitchen-features {
  display: grid; grid-template-columns: 1fr; gap: 0;
  margin-bottom: 36px;
}

.wd-kitchen-feat {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--wd-border);
  opacity: 0; transform: translateY(12px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-kitchen-feat.is-visible { opacity: 1; transform: translateY(0); }

.wd-kitchen-feat-icon {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--wd-gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.wd-kitchen-feat-title {
  font-family: var(--wd-font-body);
  font-size: 13px; font-weight: 500;
  color: var(--wd-black); margin-bottom: 2px;
}

.wd-kitchen-feat-desc {
  font-family: var(--wd-font-body);
  font-size: 12px; font-weight: 300;
  color: var(--wd-text-muted); line-height: 1.5;
}

/* CTA */
.wd-kitchen-cta {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  opacity: 0; transform: translateY(12px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-kitchen-cta.is-visible { opacity: 1; transform: translateY(0); }

.wd-kitchen-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--wd-font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  color: var(--wd-white); background: var(--wd-black);
  padding: 16px 32px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-kitchen-cta-primary:hover {
  background: var(--wd-gold);
  transform: translateY(-2px);
}
.wd-kitchen-cta-primary svg {
  width: 12px; height: 12px; fill: none;
  stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.wd-kitchen-cta-primary:hover svg { transform: translateX(3px); }

.wd-kitchen-cta-note {
  font-family: var(--wd-font-body);
  font-size: 11px; font-weight: 300;
  color: var(--wd-text-muted);
}

@media (min-width: 600px) {
  .wd-kitchen-content { padding: 64px 40px 80px; }
  .wd-kitchen-features { grid-template-columns: 1fr 1fr; gap: 0 32px; }
}

@media (min-width: 1024px) {
  .wd-kitchen-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
  }
  .wd-kitchen-image img {
    height: 100%;
    min-height: 700px;
  }
  .wd-kitchen-content {
    display: flex; align-items: center;
    padding: 80px 60px;
  }
}

/* ============================
   S8-PROCESS
   ============================ */
.wd-proc * { margin: 0; padding: 0; box-sizing: border-box; }

.wd-proc {
  background: var(--wd-black);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

/* Ghost text */
.wd-proc-bg {
  font-family: var(--wd-font-heading);
  font-size: clamp(72px, 20vw, 180px);
  font-weight: 700;
  color: rgba(255,255,255,0.015);
  line-height: 0.85; letter-spacing: -0.04em;
  position: absolute;
  bottom: -10px; right: -20px;
  pointer-events: none;
  white-space: nowrap;
}

.wd-proc-inner { max-width: 1320px; margin: 0 auto; position: relative; z-index: 1; }

.wd-proc-header {
  margin-bottom: 56px;
  opacity: 0; transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-proc-header.is-visible { opacity: 1; transform: translateY(0); }

.wd-proc-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--wd-font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--wd-gold); margin-bottom: 20px;
}
.wd-proc-eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--wd-gold); opacity: 0.4;
}

.wd-proc-heading {
  font-family: var(--wd-font-heading);
  font-size: clamp(36px, 9vw, 64px);
  font-weight: 600; color: var(--wd-white);
  line-height: 0.92; letter-spacing: -0.02em;
}
.wd-proc-heading em { font-style: italic; color: var(--wd-gold); }

/* Steps - vertical timeline feel */
.wd-proc-steps {
  display: grid; grid-template-columns: 1fr; gap: 0;
  position: relative;
}

/* Vertical line connecting steps */
.wd-proc-steps::before {
  content: '';
  position: absolute;
  left: 15px; top: 32px; bottom: 32px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
}

.wd-proc-step {
  display: flex; gap: 24px;
  padding: 28px 0;
  opacity: 0; transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.wd-proc-step.is-visible { opacity: 1; transform: translateY(0); }

.wd-proc-step-marker {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--wd-black);
  position: relative;
  z-index: 1;
  transition: border-color 0.4s ease;
}

.wd-proc-step:hover .wd-proc-step-marker { border-color: var(--wd-gold); }

.wd-proc-step-marker span {
  font-family: var(--wd-font-body);
  font-size: 10px; font-weight: 500;
  color: var(--wd-gold);
}

.wd-proc-step-title {
  font-family: var(--wd-font-heading);
  font-size: 24px; font-weight: 600;
  color: var(--wd-white); margin-bottom: 6px;
  line-height: 1.1;
}

.wd-proc-step-desc {
  font-family: var(--wd-font-body);
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.35); line-height: 1.65;
  max-width: 460px;
}

@media (min-width: 600px) {
  .wd-proc { padding: 100px 40px; }
}

@media (min-width: 1024px) {
  .wd-proc { padding: 160px 60px; }
  .wd-proc-header { margin-bottom: 80px; }
  .wd-proc-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }
  .wd-proc-header { position: sticky; top: 120px; margin-bottom: 0; }
  .wd-proc-steps::before { left: 15px; }
  .wd-proc-step-title { font-size: 28px; }
  .wd-proc-step-desc { font-size: 14px; }
}

/* ============================
   S9-GALLERY
   ============================ */
.wd-gal * { margin: 0; padding: 0; box-sizing: border-box; }

.wd-gal {
  background: var(--wd-bg);
  padding: 80px 24px;
}

.wd-gal-inner { max-width: 1320px; margin: 0 auto; }

.wd-gal-header {
  margin-bottom: 48px;
  display: flex; flex-direction: column; align-items: flex-start;
  opacity: 0; transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-gal-header.is-visible { opacity: 1; transform: translateY(0); }

.wd-gal-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--wd-font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--wd-gold); margin-bottom: 20px;
}
.wd-gal-eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--wd-gold); opacity: 0.4;
}

.wd-gal-heading {
  font-family: var(--wd-font-heading);
  font-size: clamp(36px, 9vw, 64px);
  font-weight: 600; color: var(--wd-black);
  line-height: 0.92; letter-spacing: -0.02em;
}
.wd-gal-heading em { font-style: italic; color: var(--wd-gold); }

/* Asymmetric grid */
.wd-gal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.wd-gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #e8e8e8;
  opacity: 0; transform: translateY(16px) scale(0.98);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-gal-item.is-visible { opacity: 1; transform: translateY(0) scale(1); }

.wd-gal-item img,
.wd-gal-item video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-gal-item:hover img,
.wd-gal-item:hover video { transform: scale(1.04); }

/* Overlay */
.wd-gal-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end;
  padding: 20px;
}
.wd-gal-item:hover .wd-gal-item-overlay { opacity: 1; }

.wd-gal-item-label {
  font-family: var(--wd-font-body);
  font-size: 11px; font-weight: 400;
  color: var(--wd-white);
  letter-spacing: 0.04em;
}

/* Mobile: uniform height */
.wd-gal-item { height: 240px; }

/* CTA */
.wd-gal-cta {
  text-align: center;
  opacity: 0; transform: translateY(12px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-gal-cta.is-visible { opacity: 1; transform: translateY(0); }

.wd-gal-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--wd-font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  color: var(--wd-white); background: var(--wd-black);
  padding: 16px 32px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-gal-cta a:hover {
  background: var(--wd-gold);
  transform: translateY(-2px);
}
.wd-gal-cta a svg {
  width: 12px; height: 12px; fill: none;
  stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.wd-gal-cta a:hover svg { transform: translateX(3px); }

@media (min-width: 600px) {
  .wd-gal { padding: 100px 40px; }
  .wd-gal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .wd-gal-item { height: 260px; }
  .wd-gal-item:first-child { grid-column: 1 / -1; height: 340px; }
  .wd-gal-header {
    flex-direction: row; align-items: flex-end; justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .wd-gal { padding: 140px 60px; }
  .wd-gal-header { margin-bottom: 64px; }
  .wd-gal-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 16px;
  }
  .wd-gal-item { height: auto; }
  .wd-gal-item:first-child { grid-row: 1 / 3; grid-column: 1; height: auto; }
}

/* ============================
   S10-ABOUT
   ============================ */
.wd-about * { margin: 0; padding: 0; box-sizing: border-box; }

.wd-about {
  background: var(--wd-white);
  padding: 80px 24px;
}

.wd-about-inner {
  max-width: 1320px; margin: 0 auto;
}

/* Portrait area - placeholder for photo */
.wd-about-portrait {
  width: 100%;
  height: 300px;
  background: linear-gradient(145deg, #eee, #ddd);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  opacity: 0; transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-about-portrait.is-visible { opacity: 1; transform: translateY(0); }

.wd-about-portrait-label {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--wd-font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(0,0,0,0.25);
}

/* Content */
.wd-about-content {
  opacity: 0; transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.wd-about-content.is-visible { opacity: 1; transform: translateY(0); }

.wd-about-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--wd-font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--wd-gold); margin-bottom: 20px;
}
.wd-about-eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--wd-gold); opacity: 0.4;
}

.wd-about-heading {
  font-family: var(--wd-font-heading);
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 600; color: var(--wd-black);
  line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.wd-about-heading em { font-style: italic; color: var(--wd-gold); }

.wd-about-text {
  font-family: var(--wd-font-body);
  font-size: 15px; font-weight: 300;
  color: var(--wd-text-light); line-height: 1.8;
  margin-bottom: 16px;
  max-width: 560px;
}

.wd-about-text strong { font-weight: 500; color: var(--wd-black); }

/* Values strip */
.wd-about-values {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--wd-border);
  opacity: 0; transform: translateY(12px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.wd-about-values.is-visible { opacity: 1; transform: translateY(0); }

.wd-about-value {
  flex: 0 0 auto;
}

.wd-about-value-title {
  font-family: var(--wd-font-heading);
  font-size: 32px; font-weight: 600;
  color: var(--wd-black); line-height: 1;
}

.wd-about-value-label {
  font-family: var(--wd-font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--wd-text-muted); margin-top: 4px;
}

/* CTA */
.wd-about-cta {
  margin-top: 36px;
  opacity: 0; transform: translateY(12px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}
.wd-about-cta.is-visible { opacity: 1; transform: translateY(0); }

.wd-about-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--wd-font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  color: var(--wd-black);
  transition: color 0.3s ease;
}
.wd-about-cta a:hover { color: var(--wd-gold); }
.wd-about-cta a svg {
  width: 14px; height: 14px; fill: none;
  stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.wd-about-cta a:hover svg { transform: translateX(4px); }

@media (min-width: 600px) {
  .wd-about { padding: 100px 40px; }
  .wd-about-portrait { height: 380px; }
  .wd-about-values { gap: 40px; }
}

@media (min-width: 1024px) {
  .wd-about { padding: 140px 60px; }
  .wd-about-inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
  }
  .wd-about-portrait {
    height: 520px;
    margin-bottom: 0;
    position: sticky; top: 120px;
  }
  .wd-about-text { font-size: 16px; }
  .wd-about-value-title { font-size: 40px; }
}

/* ============================
   S11-FINAL-CTA
   ============================ */
.wd-cta * { margin: 0; padding: 0; box-sizing: border-box; }

.wd-cta {
  background: var(--wd-black);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ambient gold glow */
.wd-cta::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.wd-cta-inner {
  max-width: 720px; margin: 0 auto;
  position: relative; z-index: 1;
}

.wd-cta-eyebrow {
  font-family: var(--wd-font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--wd-gold); margin-bottom: 24px;
  opacity: 0; transform: translateY(16px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-cta-eyebrow.is-visible { opacity: 1; transform: translateY(0); }

.wd-cta-heading {
  font-family: var(--wd-font-heading);
  font-size: clamp(40px, 10vw, 80px);
  font-weight: 600; color: var(--wd-white);
  line-height: 0.9; letter-spacing: -0.03em;
  margin-bottom: 20px;
  opacity: 0; transform: translateY(28px);
  transition: all 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.wd-cta-heading.is-visible { opacity: 1; transform: translateY(0); }
.wd-cta-heading em { font-style: italic; color: var(--wd-gold); }

.wd-cta-sub {
  font-family: var(--wd-font-body);
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.35); line-height: 1.65;
  max-width: 440px; margin: 0 auto 40px;
  opacity: 0; transform: translateY(16px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.wd-cta-sub.is-visible { opacity: 1; transform: translateY(0); }

.wd-cta-actions {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  opacity: 0; transform: translateY(16px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.wd-cta-actions.is-visible { opacity: 1; transform: translateY(0); }

.wd-cta-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--wd-font-body);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  color: var(--wd-black); background: var(--wd-gold);
  padding: 18px 40px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-cta-btn-primary:hover {
  background: var(--wd-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(201,169,110,0.2);
}
.wd-cta-btn-primary svg {
  width: 12px; height: 12px; fill: none;
  stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.wd-cta-btn-primary:hover svg { transform: translateX(3px); }

.wd-cta-contact {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center;
}

.wd-cta-contact a {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--wd-font-body);
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}
.wd-cta-contact a:hover { color: var(--wd-white); }
.wd-cta-contact a svg {
  width: 13px; height: 13px; fill: none;
  stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Service areas */
.wd-cta-areas {
  margin-top: 48px;
  font-family: var(--wd-font-body);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}
.wd-cta-areas.is-visible { opacity: 1; }

@media (min-width: 600px) {
  .wd-cta { padding: 120px 40px; }
  .wd-cta-actions { flex-direction: row; justify-content: center; gap: 24px; }
}

@media (min-width: 1024px) {
  .wd-cta { padding: 180px 60px; }
  .wd-cta-heading { font-size: 80px; }
}

/* ============================
   FOOTER
   ============================ */
.wd-footer * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Footer */
.wd-footer {
  background: var(--wd-bg);
  padding: 60px 20px 32px;
  font-family: var(--wd-font-body);
}

.wd-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* Top section - Logo + tagline */
.wd-footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--wd-border);
  margin-bottom: 40px;
  text-align: center;
}

.wd-footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.wd-footer-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.wd-footer-tagline {
  font-family: var(--wd-font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--wd-text-light);
  letter-spacing: 0.02em;
}

/* Grid - mobile stacked */
.wd-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--wd-border);
  margin-bottom: 32px;
}

/* Footer columns */
.wd-footer-col-title {
  font-family: var(--wd-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wd-black);
  margin-bottom: 18px;
}

.wd-footer-col ul {
  list-style: none;
}

.wd-footer-col ul li {
  margin-bottom: 10px;
}

.wd-footer-col ul li a {
  font-family: var(--wd-font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--wd-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.wd-footer-col ul li a:hover,
.wd-footer-col ul li a:active {
  color: var(--wd-gold);
}

/* Contact column */
.wd-footer-contact-item {
  margin-bottom: 14px;
}

.wd-footer-contact-item a {
  font-family: var(--wd-font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--wd-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.wd-footer-contact-item a:hover,
.wd-footer-contact-item a:active {
  color: var(--wd-gold);
}

.wd-footer-contact-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wd-text-muted);
  margin-bottom: 4px;
}

/* Service areas */
.wd-footer-areas {
  font-family: var(--wd-font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--wd-text-light);
  line-height: 1.7;
}

/* Social links */
.wd-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.wd-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--wd-border);
  color: var(--wd-text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.wd-footer-social a:hover,
.wd-footer-social a:active {
  border-color: var(--wd-gold);
  color: var(--wd-gold);
}

.wd-footer-social a svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Bottom bar */
.wd-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.wd-footer-copyright {
  font-family: var(--wd-font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--wd-text-muted);
  letter-spacing: 0.02em;
}

.wd-footer-copyright a {
  color: var(--wd-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.wd-footer-copyright a:hover {
  color: var(--wd-gold);
}

.wd-footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.wd-footer-legal a {
  font-family: var(--wd-font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--wd-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.wd-footer-legal a:hover,
.wd-footer-legal a:active {
  color: var(--wd-gold);
}

/* Tablet */
@media (min-width: 600px) {
  .wd-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .wd-footer {
    padding: 72px 40px 40px;
  }

  .wd-footer-top {
    text-align: left;
    padding-bottom: 48px;
    margin-bottom: 48px;
  }

  .wd-footer-tagline {
    font-size: 20px;
  }

  .wd-footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    margin-bottom: 40px;
  }

  .wd-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================
   UTILITY
   ============================ */
.wd-navbar-spacer { height: 80px; }

@media (min-width: 1024px) {
  .wd-navbar-spacer { height: 100px; }
}

.wd-gal-item--placeholder {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-gal-placeholder-text {
  font-family: var(--wd-font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
