



:root {
  
  --vd-cream: #f5f0e8;
  --vd-cream-dark: #ede6d5;
  --vd-cream-mid: #f9f5ef;
  --vd-mustard: #c9932a;
  --vd-mustard-light: #e8b84b;
  --vd-mustard-dark: #a07520;
  --vd-terracotta: #b85c3a;
  --vd-terracotta-light: #d4775a;
  --vd-olive: #5a6b3c;
  --vd-olive-light: #7a8f54;
  --vd-bark: #3d2e1e;
  --vd-bark-light: #5c4530;
  --vd-warm-gray: #8a7d70;
  --vd-warm-gray-light: #b5a99c;
  --vd-off-white: #faf7f2;

  
  --vd-grad-hero: linear-gradient(135deg, #3d2e1e 0%, #5c3d20 50%, #7a5a30 100%);
  --vd-grad-band: linear-gradient(135deg, #c9932a 0%, #b85c3a 100%);
  --vd-grad-services: linear-gradient(160deg, #3d2e1e 0%, #5c4530 60%, #4a3825 100%);
  --vd-grad-fullwidth: linear-gradient(120deg, #5a6b3c 0%, #3d5230 50%, #2e4020 100%);
  --vd-grad-footer: linear-gradient(180deg, #2a2018 0%, #1e1610 100%);

  
  --vd-shadow-sm: 0 2px 8px rgba(61,46,30,0.10), 0 1px 3px rgba(61,46,30,0.08);
  --vd-shadow-md: 0 6px 24px rgba(61,46,30,0.14), 0 2px 8px rgba(61,46,30,0.10);
  --vd-shadow-lg: 0 16px 48px rgba(61,46,30,0.18), 0 4px 16px rgba(61,46,30,0.12);
  --vd-shadow-card: 0 4px 20px rgba(61,46,30,0.12), 0 1px 6px rgba(201,147,42,0.08);
  --vd-shadow-hover: 0 12px 40px rgba(61,46,30,0.22), 0 4px 12px rgba(201,147,42,0.15);
  --vd-shadow-mustard: 0 8px 30px rgba(201,147,42,0.25), 0 2px 8px rgba(201,147,42,0.15);

  
  --vd-font: 'Lexend', sans-serif;

  
  --vd-space-xs: 0.5rem;
  --vd-space-sm: 1rem;
  --vd-space-md: 1.5rem;
  --vd-space-lg: 2.5rem;
  --vd-space-xl: 4rem;
  --vd-space-2xl: 6rem;
  --vd-space-3xl: 9rem;

  
  --vd-r-sm: 6px;
  --vd-r-md: 12px;
  --vd-r-lg: 20px;
  --vd-r-xl: 32px;

  
  --vd-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --vd-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--vd-font);
  background: var(--vd-off-white);
  color: var(--vd-bark);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--vd-transition);
}

ul {
  list-style: none;
}


h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }


.vd-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--vd-space-md);
}


.vd-section-header {
  text-align: center;
  margin-bottom: var(--vd-space-xl);
}
.vd-section-header--light .vd-section-tag,
.vd-section-tag--light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.25);
}
.vd-section-title--light {
  color: var(--vd-off-white);
}

.vd-section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vd-mustard);
  background: rgba(201,147,42,0.1);
  border: 1px solid rgba(201,147,42,0.25);
  padding: 0.3em 0.9em;
  border-radius: var(--vd-r-sm);
  margin-bottom: 0.75rem;
}

.vd-section-title {
  color: var(--vd-bark);
  margin-bottom: var(--vd-space-sm);
}


.vd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--vd-font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75em 1.75em;
  border-radius: var(--vd-r-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--vd-transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.vd-btn--primary {
  background: var(--vd-mustard);
  color: var(--vd-off-white);
  border-color: var(--vd-mustard);
  box-shadow: var(--vd-shadow-mustard);
}
.vd-btn--primary:hover {
  background: var(--vd-mustard-dark);
  border-color: var(--vd-mustard-dark);
  box-shadow: 0 12px 40px rgba(201,147,42,0.35);
  transform: translateY(-2px);
  color: var(--vd-off-white);
}

.vd-btn--secondary {
  background: transparent;
  color: var(--vd-mustard);
  border-color: var(--vd-mustard);
}
.vd-btn--secondary:hover {
  background: var(--vd-mustard);
  color: var(--vd-off-white);
  transform: translateY(-2px);
  box-shadow: var(--vd-shadow-mustard);
}

.vd-btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--vd-off-white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.vd-btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  color: var(--vd-off-white);
  transform: translateY(-2px);
}

.vd-btn--light {
  background: var(--vd-off-white);
  color: var(--vd-bark);
  border-color: var(--vd-off-white);
  box-shadow: var(--vd-shadow-md);
}
.vd-btn--light:hover {
  background: var(--vd-cream-dark);
  transform: translateY(-2px);
  box-shadow: var(--vd-shadow-lg);
  color: var(--vd-bark);
}

.vd-btn--nav {
  background: var(--vd-mustard);
  color: var(--vd-off-white);
  border-color: var(--vd-mustard);
  font-size: 0.85rem;
  padding: 0.6em 1.4em;
  box-shadow: var(--vd-shadow-sm);
}
.vd-btn--nav:hover {
  background: var(--vd-mustard-dark);
  border-color: var(--vd-mustard-dark);
  transform: translateY(-1px);
  box-shadow: var(--vd-shadow-mustard);
  color: var(--vd-off-white);
}

.vd-btn--mobile-cta {
  background: var(--vd-mustard);
  color: var(--vd-off-white);
  border-color: var(--vd-mustard);
  margin-top: auto;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.vd-btn--full {
  width: 100%;
  justify-content: center;
}


.vd-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,147,42,0.15);
  box-shadow: 0 2px 20px rgba(61,46,30,0.08);
  transform: translateY(0);
  transition: transform var(--vd-transition-slow), background var(--vd-transition);
}

.vd-nav--hidden {
  transform: translateY(-100%);
}

.vd-nav__inner {
  display: flex;
  align-items: center;
  gap: var(--vd-space-md);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem var(--vd-space-md);
}

.vd-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.vd-nav__logo-img {
  height: 36px;
  width: auto;
}

.vd-nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.vd-nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--vd-bark-light);
  padding: 0.5em 0.85em;
  border-radius: var(--vd-r-sm);
  transition: all var(--vd-transition);
  position: relative;
}
.vd-nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.85em;
  right: 0.85em;
  height: 2px;
  background: var(--vd-mustard);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--vd-transition);
}
.vd-nav__link:hover,
.vd-nav__link--active {
  color: var(--vd-bark);
}
.vd-nav__link:hover::after,
.vd-nav__link--active::after {
  transform: scaleX(1);
}

.vd-nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  margin-left: auto;
}
.vd-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vd-bark);
  border-radius: 2px;
  transition: all var(--vd-transition);
}

@media (min-width: 900px) {
  .vd-nav__links { display: flex; }
  .vd-nav__hamburger { display: none; }
}


.vd-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61,46,30,0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--vd-transition-slow);
}
.vd-mobile-overlay--active {
  opacity: 1;
  pointer-events: all;
}

.vd-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--vd-cream);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform var(--vd-transition-slow);
  display: flex;
  flex-direction: column;
  padding-top: 4rem;
  box-shadow: var(--vd-shadow-lg);
  overflow-y: auto;
}
.vd-mobile-menu--active {
  transform: translateX(0);
}

.vd-mobile-menu__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--vd-bark);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--vd-r-sm);
  transition: background var(--vd-transition);
}
.vd-mobile-menu__close:hover {
  background: var(--vd-cream-dark);
}

.vd-mobile-menu__links {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem 1.5rem;
  gap: 0.25rem;
}

.vd-mobile-menu__link {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--vd-bark);
  padding: 0.8em 1em;
  border-radius: var(--vd-r-md);
  transition: all var(--vd-transition);
  opacity: 0;
  transform: translateX(-20px);
}
.vd-mobile-menu--active .vd-mobile-menu__link {
  opacity: 1;
  transform: translateX(0);
}
.vd-mobile-menu--active .vd-mobile-menu__links li:nth-child(1) .vd-mobile-menu__link { transition-delay: 0.05s; }
.vd-mobile-menu--active .vd-mobile-menu__links li:nth-child(2) .vd-mobile-menu__link { transition-delay: 0.1s; }
.vd-mobile-menu--active .vd-mobile-menu__links li:nth-child(3) .vd-mobile-menu__link { transition-delay: 0.15s; }
.vd-mobile-menu--active .vd-mobile-menu__links li:nth-child(4) .vd-mobile-menu__link { transition-delay: 0.2s; }
.vd-mobile-menu--active .vd-mobile-menu__links li:nth-child(5) .vd-mobile-menu__link { transition-delay: 0.25s; }
.vd-mobile-menu__link:hover {
  background: var(--vd-cream-dark);
  color: var(--vd-mustard);
}


.vd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.vd-hero__bg {
  position: absolute;
  inset: 0;
}
.vd-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.vd-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(30,18,8,0.85) 0%, rgba(61,46,30,0.78) 50%, rgba(61,46,30,0.55) 100%);
}

.vd-hero__content-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-xl);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--vd-space-2xl) var(--vd-space-md);
  align-items: center;
}

.vd-hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vd-mustard-light);
  margin-bottom: 0.75rem;
}

.vd-hero__title {
  color: var(--vd-off-white);
  margin-bottom: var(--vd-space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.vd-hero__lead {
  color: rgba(245,240,232,0.88);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin-bottom: var(--vd-space-lg);
  max-width: 55ch;
}

.vd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vd-space-sm);
}

.vd-hero__overlap-card {
  background: var(--vd-cream);
  border-radius: var(--vd-r-lg);
  padding: var(--vd-space-lg);
  box-shadow: var(--vd-shadow-lg), 0 0 0 1px rgba(201,147,42,0.12);
  position: relative;
  border: 1px solid rgba(201,147,42,0.2);
}

.vd-hero__card-icon {
  width: 48px;
  height: 48px;
  background: var(--vd-mustard);
  border-radius: var(--vd-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-off-white);
  font-size: 1.2rem;
  margin-bottom: var(--vd-space-sm);
  box-shadow: var(--vd-shadow-mustard);
}

.vd-hero__card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vd-bark);
  margin-bottom: 0.5rem;
}

.vd-hero__card-text {
  color: var(--vd-warm-gray);
  font-size: 0.9rem;
  margin-bottom: var(--vd-space-sm);
}

.vd-hero__card-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vd-hero__card-list li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.88rem;
  color: var(--vd-bark-light);
  font-weight: 500;
}
.vd-hero__card-list li .fa-check {
  color: var(--vd-olive);
  font-size: 0.8rem;
}

@media (min-width: 900px) {
  .vd-hero__content-wrap {
    grid-template-columns: 1fr 380px;
    padding: var(--vd-space-3xl) var(--vd-space-md);
  }
  .vd-hero__overlap-card {
    transform: translateX(20px);
    box-shadow: var(--vd-shadow-lg), -4px 0 30px rgba(61,46,30,0.15);
  }
}


.vd-intro-band {
  background: var(--vd-mustard);
  padding: var(--vd-space-lg) 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  margin-bottom: -2rem;
  position: relative;
  z-index: 1;
}
.vd-intro-band__text {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--vd-off-white);
  text-align: center;
  max-width: 70ch;
  margin: 0 auto;
  line-height: 1.7;
}


.vd-features {
  background: var(--vd-off-white);
  padding: var(--vd-space-3xl) 0 var(--vd-space-2xl);
  position: relative;
  z-index: 2;
}

.vd-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.vd-feature-item {
  display: flex;
  gap: var(--vd-space-md);
  padding: var(--vd-space-md) 0;
  border-bottom: 1px solid rgba(201,147,42,0.15);
  transition: background var(--vd-transition);
}
.vd-feature-item:last-child {
  border-bottom: none;
}

.vd-feature-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--vd-cream-dark);
  border-radius: var(--vd-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-mustard);
  font-size: 1.1rem;
  transition: all var(--vd-transition);
  box-shadow: var(--vd-shadow-sm);
}

.vd-feature-item:hover .vd-feature-item__icon {
  background: var(--vd-mustard);
  color: var(--vd-off-white);
  box-shadow: var(--vd-shadow-mustard);
  transform: scale(1.08);
}

.vd-feature-item__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vd-bark);
  margin-bottom: 0.4rem;
}

.vd-feature-item__text {
  font-size: 0.9rem;
  color: var(--vd-warm-gray);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .vd-features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--vd-space-lg);
  }
  .vd-feature-item:nth-child(odd) {
    border-right: 1px solid rgba(201,147,42,0.1);
    padding-right: var(--vd-space-lg);
  }
}


.vd-services-band {
  background: var(--vd-grad-services);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: calc(var(--vd-space-3xl) + 2rem) 0;
  margin: -1rem 0;
  position: relative;
  z-index: 1;
}
.vd-services-band__inner {
  padding: var(--vd-space-lg) 0;
}

.vd-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-md);
}

.vd-service-card {
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(201,147,42,0.2);
  border-radius: var(--vd-r-lg);
  overflow: hidden;
  transition: all var(--vd-transition);
  backdrop-filter: blur(4px);
}
.vd-service-card:hover {
  background: rgba(245,240,232,0.13);
  border-color: rgba(201,147,42,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.vd-service-card:has(.vd-service-card__img) .vd-service-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.vd-service-card__body {
  padding: var(--vd-space-md);
}

.vd-service-card__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--vd-mustard-light);
  margin-bottom: 0.4rem;
}

.vd-service-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--vd-off-white);
  margin-bottom: 0.5rem;
}

.vd-service-card__text {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.75);
  margin: 0;
}

.vd-service-card--note {
  background: rgba(201,147,42,0.12);
  border-color: rgba(201,147,42,0.35);
  padding: var(--vd-space-md);
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-sm);
}
.vd-service-card--note .vd-service-card__title {
  color: var(--vd-mustard-light);
}
.vd-service-card__note-icon {
  font-size: 1.5rem;
  color: var(--vd-mustard-light);
}

@media (min-width: 600px) {
  .vd-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .vd-services-grid { grid-template-columns: repeat(3, 1fr); }
}


.vd-who {
  background: var(--vd-cream);
  padding: var(--vd-space-3xl) 0;
  position: relative;
  z-index: 2;
}

.vd-who__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-xl);
  align-items: center;
}

.vd-who__image-col {
  position: relative;
}

.vd-who__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--vd-r-xl);
  box-shadow: var(--vd-shadow-lg);
}

.vd-who__badge {
  position: absolute;
  bottom: -16px;
  right: 16px;
  background: var(--vd-mustard);
  color: var(--vd-off-white);
  border-radius: var(--vd-r-lg);
  padding: 0.75em 1.25em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--vd-shadow-mustard);
  white-space: nowrap;
}

.vd-who__text-col p {
  color: var(--vd-bark-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--vd-space-sm);
}
.vd-who__text-col .vd-section-title {
  margin-bottom: var(--vd-space-md);
}

@media (min-width: 900px) {
  .vd-who__inner { grid-template-columns: 1fr 1fr; }
}


.vd-fullwidth-band {
  background: var(--vd-grad-fullwidth);
  padding: var(--vd-space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.vd-fullwidth-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.vd-fullwidth-band__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.vd-fullwidth-band__title {
  color: var(--vd-off-white);
  margin-bottom: var(--vd-space-sm);
}

.vd-fullwidth-band__text {
  color: rgba(245,240,232,0.82);
  font-size: 1.05rem;
  margin-bottom: var(--vd-space-lg);
  line-height: 1.75;
}


.vd-process {
  background: var(--vd-off-white);
  padding: var(--vd-space-3xl) 0;
}

.vd-process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-md);
}

.vd-process__step {
  display: flex;
  gap: var(--vd-space-md);
  background: var(--vd-cream);
  border-radius: var(--vd-r-lg);
  padding: var(--vd-space-md) var(--vd-space-lg);
  box-shadow: var(--vd-shadow-card);
  border: 1px solid rgba(201,147,42,0.12);
  transition: all var(--vd-transition);
}
.vd-process__step:hover {
  transform: translateY(-3px);
  box-shadow: var(--vd-shadow-hover);
  border-color: rgba(201,147,42,0.3);
}

.vd-process__step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--vd-mustard);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-off-white);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--vd-shadow-mustard);
}

.vd-process__step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vd-bark);
  margin-bottom: 0.35rem;
}
.vd-process__step-body p {
  font-size: 0.9rem;
  color: var(--vd-warm-gray);
  margin: 0;
}

@media (min-width: 768px) {
  .vd-process__steps { grid-template-columns: 1fr 1fr; }
}


.vd-faq {
  background: var(--vd-cream-dark);
  padding: var(--vd-space-3xl) 0;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  margin: -1rem 0;
}

.vd-faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-sm);
}

.vd-faq__item {
  background: var(--vd-off-white);
  border-radius: var(--vd-r-md);
  border: 1px solid rgba(201,147,42,0.15);
  overflow: hidden;
  box-shadow: var(--vd-shadow-sm);
  transition: box-shadow var(--vd-transition), border-color var(--vd-transition);
}
.vd-faq__item:has(.vd-faq__question[aria-expanded="true"]) {
  border-color: rgba(201,147,42,0.35);
  box-shadow: var(--vd-shadow-md);
}

.vd-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--vd-space-md) var(--vd-space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vd-space-sm);
  cursor: pointer;
  font-family: var(--vd-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vd-bark);
  text-align: left;
  min-height: 60px;
  transition: background var(--vd-transition), color var(--vd-transition);
}
.vd-faq__question:hover {
  background: var(--vd-cream);
  color: var(--vd-mustard);
}
.vd-faq__question[aria-expanded="true"] {
  color: var(--vd-mustard);
}

.vd-faq__chevron {
  flex-shrink: 0;
  transition: transform var(--vd-transition);
  color: var(--vd-mustard);
}
.vd-faq__question[aria-expanded="true"] .vd-faq__chevron {
  transform: rotate(180deg);
}

.vd-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vd-faq__answer--open {
  max-height: 400px;
}
.vd-faq__answer p {
  padding: 0 var(--vd-space-lg) var(--vd-space-md);
  font-size: 0.9rem;
  color: var(--vd-bark-light);
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid rgba(201,147,42,0.12);
  padding-top: var(--vd-space-sm);
}


.vd-quote-band {
  background: var(--vd-bark);
  padding: var(--vd-space-3xl) 0 var(--vd-space-2xl);
  position: relative;
  z-index: 2;
}

.vd-quote-band__inner {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.vd-quote-band__icon {
  font-size: 2.5rem;
  color: var(--vd-mustard);
  opacity: 0.7;
  margin-bottom: var(--vd-space-md);
}

.vd-quote-band__text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--vd-cream);
  line-height: 1.6;
  font-style: normal;
  margin-bottom: var(--vd-space-md);
}

.vd-quote-band__cite {
  font-size: 0.85rem;
  color: var(--vd-warm-gray-light);
  font-style: normal;
  font-weight: 500;
}


.vd-footer {
  background: var(--vd-grad-footer);
  padding: var(--vd-space-2xl) 0 var(--vd-space-lg);
  margin-top: auto;
}

.vd-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-lg);
  margin-bottom: var(--vd-space-xl);
  padding-bottom: var(--vd-space-xl);
  border-bottom: 1px solid rgba(201,147,42,0.15);
}

.vd-footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: var(--vd-space-sm);
  filter: brightness(1.2);
}

.vd-footer__tagline {
  font-size: 0.88rem;
  color: var(--vd-warm-gray-light);
  line-height: 1.6;
  margin: 0;
}

.vd-footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vd-mustard);
  margin-bottom: var(--vd-space-sm);
}

.vd-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.vd-footer__link {
  font-size: 0.88rem;
  color: var(--vd-warm-gray-light);
  transition: color var(--vd-transition);
}
.vd-footer__link:hover {
  color: var(--vd-mustard-light);
}

.vd-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.vd-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: 0.88rem;
  color: var(--vd-warm-gray-light);
}
.vd-footer__contact .fa-solid {
  color: var(--vd-mustard);
  font-size: 0.85rem;
  margin-top: 0.2em;
  flex-shrink: 0;
}

.vd-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}
.vd-footer__copy {
  font-size: 0.82rem;
  color: rgba(138,125,112,0.7);
  margin: 0;
}
.vd-footer__note {
  font-size: 0.78rem;
  color: rgba(138,125,112,0.5);
  margin: 0;
}

@media (min-width: 600px) {
  .vd-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .vd-footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .vd-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}


.vd-page-hero {
  background: var(--vd-grad-hero);
  padding: calc(80px + var(--vd-space-2xl)) 0 var(--vd-space-2xl);
  position: relative;
  overflow: hidden;
}
.vd-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9932a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.vd-page-hero__title {
  color: var(--vd-off-white);
  margin-bottom: var(--vd-space-sm);
  position: relative;
}

.vd-page-hero__lead {
  color: rgba(245,240,232,0.82);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 60ch;
  line-height: 1.75;
  position: relative;
  margin: 0;
}


.vd-team-intro {
  background: var(--vd-off-white);
  padding: var(--vd-space-3xl) 0;
}
.vd-team-intro__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-xl);
  align-items: center;
}
.vd-team-intro__text p {
  color: var(--vd-bark-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--vd-space-sm);
}
.vd-team-intro__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--vd-r-xl);
  box-shadow: var(--vd-shadow-lg);
}
@media (min-width: 900px) {
  .vd-team-intro__inner { grid-template-columns: 1fr 1fr; }
}


.vd-approach-band {
  background: var(--vd-grad-services);
  padding: var(--vd-space-3xl) 0;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -1rem 0;
}

.vd-approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-md);
}

.vd-approach-item {
  background: rgba(245,240,232,0.07);
  border: 1px solid rgba(201,147,42,0.2);
  border-radius: var(--vd-r-lg);
  padding: var(--vd-space-md);
  transition: all var(--vd-transition);
}
.vd-approach-item:hover {
  background: rgba(245,240,232,0.12);
  border-color: rgba(201,147,42,0.4);
  transform: translateY(-3px);
}

.vd-approach-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(201,147,42,0.2);
  border-radius: var(--vd-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-mustard-light);
  font-size: 1.1rem;
  margin-bottom: var(--vd-space-sm);
}

.vd-approach-item__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vd-off-white);
  margin-bottom: 0.4rem;
}
.vd-approach-item p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.72);
  margin: 0;
}

@media (min-width: 768px) {
  .vd-approach-grid { grid-template-columns: 1fr 1fr; }
}


.vd-values {
  background: var(--vd-cream);
  padding: var(--vd-space-3xl) 0;
  position: relative;
  z-index: 2;
}

.vd-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-md);
}

.vd-values__item {
  display: flex;
  gap: var(--vd-space-md);
  align-items: flex-start;
  background: var(--vd-off-white);
  border-radius: var(--vd-r-lg);
  padding: var(--vd-space-md);
  box-shadow: var(--vd-shadow-card);
  border: 1px solid rgba(201,147,42,0.1);
  transition: all var(--vd-transition);
}
.vd-values__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--vd-shadow-hover);
  border-color: rgba(201,147,42,0.25);
}

.vd-values__num {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vd-mustard);
  opacity: 0.5;
  font-variant-numeric: oldstyle-nums;
  min-width: 2.5rem;
}

.vd-values__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vd-bark);
  margin-bottom: 0.35rem;
}
.vd-values__item p {
  font-size: 0.88rem;
  color: var(--vd-warm-gray);
  margin: 0;
}

@media (min-width: 768px) {
  .vd-values__grid { grid-template-columns: 1fr 1fr; }
}


.vd-service-detail {
  background: var(--vd-off-white);
  padding: var(--vd-space-2xl) 0;
}

.vd-service-detail__item {
  background: var(--vd-cream);
  border-radius: var(--vd-r-xl);
  padding: var(--vd-space-xl);
  margin-bottom: var(--vd-space-lg);
  box-shadow: var(--vd-shadow-card);
  border: 1px solid rgba(201,147,42,0.12);
  transition: box-shadow var(--vd-transition);
}
.vd-service-detail__item:hover {
  box-shadow: var(--vd-shadow-hover);
}

.vd-service-detail__header {
  display: flex;
  align-items: flex-start;
  gap: var(--vd-space-md);
  margin-bottom: var(--vd-space-md);
  padding-bottom: var(--vd-space-md);
  border-bottom: 2px solid rgba(201,147,42,0.15);
}

.vd-service-detail__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--vd-mustard);
  border-radius: var(--vd-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-off-white);
  font-size: 1.3rem;
  box-shadow: var(--vd-shadow-mustard);
}

.vd-service-detail__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vd-mustard);
  display: block;
  margin-bottom: 0.25rem;
}

.vd-service-detail__title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--vd-bark);
}

.vd-service-detail__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-lg);
}
.vd-service-detail__text p {
  font-size: 0.92rem;
  color: var(--vd-bark-light);
  line-height: 1.75;
}

.vd-service-detail__when {
  background: var(--vd-off-white);
  border-radius: var(--vd-r-md);
  padding: var(--vd-space-md);
  border-left: 3px solid var(--vd-mustard);
}
.vd-service-detail__when h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vd-mustard);
  margin-bottom: 0.5rem;
}
.vd-service-detail__when ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.vd-service-detail__when ul li {
  font-size: 0.88rem;
  color: var(--vd-bark-light);
  padding-left: 1em;
  position: relative;
}
.vd-service-detail__when ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--vd-mustard);
  font-size: 0.8rem;
}

.vd-service-detail__item--note {
  background: rgba(201,147,42,0.06);
  border-color: rgba(201,147,42,0.25);
}
.vd-service-detail__note-inner {
  display: flex;
  gap: var(--vd-space-md);
  align-items: flex-start;
}
.vd-service-detail__note-inner > .fa-solid {
  font-size: 1.5rem;
  color: var(--vd-mustard);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.vd-service-detail__note-inner h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vd-bark);
  margin-bottom: 0.4rem;
}
.vd-service-detail__note-inner p {
  font-size: 0.88rem;
  color: var(--vd-warm-gray);
  margin: 0;
}

@media (min-width: 768px) {
  .vd-service-detail__body { grid-template-columns: 2fr 1fr; }
}


.vd-service-cta {
  background: var(--vd-grad-band);
  padding: var(--vd-space-2xl) 0;
}
.vd-service-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.vd-service-cta__title {
  color: var(--vd-off-white);
  margin-bottom: var(--vd-space-sm);
}
.vd-service-cta__text {
  color: rgba(245,240,232,0.85);
  font-size: 1rem;
  margin-bottom: var(--vd-space-lg);
}
.vd-service-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vd-space-sm);
  justify-content: center;
}


.vd-map-section {
  background: var(--vd-off-white);
  padding: var(--vd-space-2xl) 0;
}
.vd-map-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-xl);
  align-items: start;
}
.vd-map-section__info .vd-section-title {
  margin-bottom: var(--vd-space-md);
}
.vd-map-section__info > p {
  font-size: 0.92rem;
  color: var(--vd-bark-light);
  margin-bottom: var(--vd-space-md);
  line-height: 1.7;
}
.vd-map-section__details {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-sm);
}
.vd-map-section__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  padding: 0.75em 0;
  border-bottom: 1px solid rgba(201,147,42,0.1);
}
.vd-map-section__detail:last-child { border-bottom: none; }
.vd-map-section__detail > .fa-solid {
  color: var(--vd-mustard);
  font-size: 1rem;
  margin-top: 0.2em;
  flex-shrink: 0;
  width: 20px;
}
.vd-map-section__detail strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vd-bark);
  margin-bottom: 0.2rem;
}
.vd-map-section__detail span,
.vd-map-section__detail a {
  font-size: 0.88rem;
  color: var(--vd-bark-light);
}
.vd-map-section__detail a:hover {
  color: var(--vd-mustard);
}
.vd-map-section__map {
  border-radius: var(--vd-r-xl);
  overflow: hidden;
  box-shadow: var(--vd-shadow-lg);
  border: 2px solid rgba(201,147,42,0.15);
  min-height: 400px;
}
.vd-map-section__iframe {
  display: block;
  width: 100%;
  min-height: 450px;
  border: none;
}
@media (min-width: 900px) {
  .vd-map-section__inner { grid-template-columns: 1fr 1.5fr; }
}


.vd-areas {
  background: var(--vd-cream-dark);
  padding: var(--vd-space-2xl) 0;
}
.vd-areas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vd-space-sm);
}
.vd-areas__item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: var(--vd-off-white);
  border-radius: var(--vd-r-md);
  padding: 0.75em 1em;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vd-bark);
  box-shadow: var(--vd-shadow-sm);
  border: 1px solid rgba(201,147,42,0.1);
  transition: all var(--vd-transition);
}
.vd-areas__item:hover {
  border-color: rgba(201,147,42,0.3);
  background: var(--vd-cream);
  transform: translateY(-2px);
  box-shadow: var(--vd-shadow-md);
}
.vd-areas__item .fa-solid {
  color: var(--vd-mustard);
  font-size: 0.8rem;
}
@media (min-width: 600px) {
  .vd-areas__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .vd-areas__grid { grid-template-columns: repeat(4, 1fr); }
}


.vd-contact-split {
  background: var(--vd-off-white);
  padding: var(--vd-space-2xl) 0;
}
.vd-contact-split__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-xl);
}
.vd-contact-split__map {
  border-radius: var(--vd-r-xl);
  overflow: hidden;
  box-shadow: var(--vd-shadow-lg);
  min-height: 400px;
  border: 2px solid rgba(201,147,42,0.15);
}
.vd-contact-split__iframe {
  display: block;
  width: 100%;
  min-height: 450px;
  border: none;
}
.vd-contact-split__form-col {
  background: var(--vd-cream);
  border-radius: var(--vd-r-xl);
  padding: var(--vd-space-xl);
  box-shadow: var(--vd-shadow-card);
  border: 1px solid rgba(201,147,42,0.12);
}
.vd-contact-split__form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vd-bark);
  margin-bottom: var(--vd-space-lg);
}
@media (min-width: 900px) {
  .vd-contact-split__inner { grid-template-columns: 1fr 1fr; }
}


.vd-form-group {
  margin-bottom: var(--vd-space-md);
}

.vd-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vd-bark);
  margin-bottom: 0.4rem;
}

.vd-form-required {
  color: var(--vd-terracotta);
}

.vd-form-input,
.vd-form-textarea {
  width: 100%;
  background: var(--vd-off-white);
  border: 2px solid rgba(201,147,42,0.2);
  border-radius: var(--vd-r-md);
  padding: 0.75em 1em;
  font-family: var(--vd-font);
  font-size: 0.92rem;
  color: var(--vd-bark);
  transition: all var(--vd-transition);
  min-height: 44px;
}
.vd-form-input::placeholder,
.vd-form-textarea::placeholder {
  color: var(--vd-warm-gray-light);
}
.vd-form-input:focus,
.vd-form-textarea:focus {
  outline: none;
  border-color: var(--vd-mustard);
  box-shadow: 0 0 0 3px rgba(201,147,42,0.15);
  background: var(--vd-cream);
}

.vd-contact-form:has(.vd-form-input:focus),
.vd-contact-form:has(.vd-form-textarea:focus) {
  box-shadow: 0 0 0 1px rgba(201,147,42,0.2);
}

.vd-form-textarea {
  resize: vertical;
  min-height: 130px;
}

.vd-form-group--checkbox {
  display: flex;
  align-items: flex-start;
}

.vd-form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  cursor: pointer;
}

.vd-form-checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15em;
  accent-color: var(--vd-mustard);
  cursor: pointer;
  min-width: 18px;
}

.vd-form-checkbox-text {
  font-size: 0.85rem;
  color: var(--vd-bark-light);
  line-height: 1.5;
}

.vd-form-link {
  color: var(--vd-mustard);
  text-decoration: underline;
  transition: color var(--vd-transition);
}
.vd-form-link:hover {
  color: var(--vd-mustard-dark);
}


.vd-timeline {
  background: var(--vd-cream-dark);
  padding: var(--vd-space-2xl) 0;
}

.vd-timeline__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.vd-timeline__step {
  display: flex;
  gap: var(--vd-space-md);
}

.vd-timeline__step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.vd-timeline__step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--vd-mustard);
  border: 3px solid var(--vd-cream-dark);
  box-shadow: 0 0 0 3px rgba(201,147,42,0.2);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.vd-timeline__step-line {
  width: 2px;
  flex: 1;
  background: rgba(201,147,42,0.25);
  margin: 4px 0;
  min-height: 40px;
}

.vd-timeline__step:last-child .vd-timeline__step-line {
  display: none;
}

.vd-timeline__step-content {
  padding-bottom: var(--vd-space-lg);
}

.vd-timeline__step-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vd-mustard);
  display: block;
  margin-bottom: 0.25rem;
}

.vd-timeline__step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vd-bark);
  margin-bottom: 0.35rem;
}

.vd-timeline__step-content p {
  font-size: 0.88rem;
  color: var(--vd-bark-light);
  margin: 0;
  line-height: 1.7;
}


.vd-contact-info-band {
  background: var(--vd-bark);
  padding: var(--vd-space-xl) 0;
}
.vd-contact-info-band__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-md);
}
.vd-contact-info-band__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  color: var(--vd-cream);
}
.vd-contact-info-band__item .fa-solid {
  color: var(--vd-mustard);
  font-size: 1.1rem;
  margin-top: 0.2em;
  flex-shrink: 0;
}
.vd-contact-info-band__item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--vd-warm-gray-light);
  margin-bottom: 0.2rem;
}
.vd-contact-info-band__item a,
.vd-contact-info-band__item span {
  font-size: 0.92rem;
  color: var(--vd-cream);
}
.vd-contact-info-band__item a:hover {
  color: var(--vd-mustard-light);
}
@media (min-width: 600px) {
  .vd-contact-info-band__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .vd-contact-info-band__grid { grid-template-columns: repeat(4, 1fr); }
}


.vd-thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding-top: 80px;
}

.vd-thanks {
  padding: var(--vd-space-2xl) var(--vd-space-md);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}


.vd-thanks__envelope-wrap {
  margin-bottom: var(--vd-space-xl);
  display: flex;
  justify-content: center;
}

.vd-thanks__envelope {
  width: 120px;
  height: 90px;
  position: relative;
  animation: vd-envelope-float 3s ease-in-out infinite;
}

@keyframes vd-envelope-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.vd-thanks__envelope-body {
  width: 120px;
  height: 90px;
  background: var(--vd-cream);
  border: 3px solid var(--vd-mustard);
  border-radius: var(--vd-r-md);
  position: relative;
  overflow: visible;
  box-shadow: var(--vd-shadow-mustard);
}

.vd-thanks__envelope-flap {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 50px;
  background: var(--vd-cream-dark);
  border: 3px solid var(--vd-mustard);
  border-bottom: none;
  border-radius: var(--vd-r-md) var(--vd-r-md) 0 0;
  transform-origin: top center;
  animation: vd-flap-open 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  border-radius: 0;
  border: none;
  background: var(--vd-mustard);
  opacity: 0.7;
}

@keyframes vd-flap-open {
  0% { transform: rotateX(0deg); opacity: 0.7; }
  100% { transform: rotateX(-160deg); opacity: 0; }
}

.vd-thanks__envelope-letter {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 60px;
  background: var(--vd-off-white);
  border: 2px solid rgba(201,147,42,0.3);
  border-radius: var(--vd-r-sm);
  animation: vd-letter-rise 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
  transform: translateY(20px);
  opacity: 0;
  padding: 8px;
}

@keyframes vd-letter-rise {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(-30px); opacity: 1; }
}

.vd-thanks__letter-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 4px;
}
.vd-thanks__letter-lines span {
  display: block;
  height: 2px;
  background: rgba(201,147,42,0.4);
  border-radius: 2px;
}
.vd-thanks__letter-lines span:nth-child(1) { width: 80%; }
.vd-thanks__letter-lines span:nth-child(2) { width: 60%; }
.vd-thanks__letter-lines span:nth-child(3) { width: 70%; }

.vd-thanks__text {
  animation: vd-fade-up 0.8s ease 1.5s both;
}

@keyframes vd-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.vd-thanks__title {
  color: var(--vd-bark);
  margin-bottom: var(--vd-space-sm);
}
.vd-thanks__lead {
  color: var(--vd-bark-light);
  font-size: 1rem;
  margin-bottom: var(--vd-space-lg);
  line-height: 1.7;
}
.vd-thanks__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vd-space-sm);
  justify-content: center;
}


.vd-legal-hero {
  background: var(--vd-grad-hero);
  padding: calc(80px + var(--vd-space-xl)) 0 var(--vd-space-xl);
}
.vd-legal-hero__title {
  color: var(--vd-off-white);
  margin-bottom: 0.5rem;
}
.vd-legal-hero__meta {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
  margin: 0;
}

.vd-legal-content {
  background: var(--vd-off-white);
  padding: var(--vd-space-2xl) 0;
}

.vd-legal-card {
  background: var(--vd-cream);
  border-radius: var(--vd-r-lg);
  padding: var(--vd-space-lg);
  margin-bottom: var(--vd-space-md);
  box-shadow: var(--vd-shadow-card);
  border: 1px solid rgba(201,147,42,0.1);
  transition: box-shadow var(--vd-transition);
}
.vd-legal-card:hover {
  box-shadow: var(--vd-shadow-hover);
}
.vd-legal-card--accent {
  border-left: 4px solid var(--vd-mustard);
}
.vd-legal-card--wide {
  border-top: 3px solid rgba(201,147,42,0.2);
}

.vd-legal-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vd-bark);
  margin-bottom: var(--vd-space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,147,42,0.15);
}
.vd-legal-card__subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vd-bark);
  margin: var(--vd-space-sm) 0 0.4rem;
}
.vd-legal-card p {
  font-size: 0.9rem;
  color: var(--vd-bark-light);
  line-height: 1.75;
}
.vd-legal-link {
  color: var(--vd-mustard);
  text-decoration: underline;
}
.vd-legal-link:hover {
  color: var(--vd-mustard-dark);
}


.vd-cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 2rem);
  max-width: 480px;
  pointer-events: none;
}
.vd-cookie-consent--visible {
  pointer-events: all;
}

.vd-cookie-card {
  background: var(--vd-bark);
  border: 1px solid rgba(201,147,42,0.25);
  border-radius: var(--vd-r-xl);
  padding: var(--vd-space-md) var(--vd-space-lg);
  box-shadow: 0 8px 40px rgba(61,46,30,0.4), 0 2px 12px rgba(201,147,42,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
  opacity: 0;
}
.vd-cookie-card--visible {
  transform: translateY(0);
  opacity: 1;
}
.vd-cookie-card--expanded {
  max-width: 520px;
}

.vd-cookie-card__compact {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-sm);
}
.vd-cookie-card__text {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.85);
  line-height: 1.5;
  margin: 0;
}
.vd-cookie-card__text a {
  color: var(--vd-mustard-light);
  text-decoration: underline;
}
.vd-cookie-card__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.vd-cookie-btn {
  font-family: var(--vd-font);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55em 1.2em;
  border-radius: var(--vd-r-md);
  border: none;
  cursor: pointer;
  transition: all var(--vd-transition);
  min-height: 36px;
}
.vd-cookie-btn--accept {
  background: var(--vd-mustard);
  color: var(--vd-off-white);
}
.vd-cookie-btn--accept:hover {
  background: var(--vd-mustard-dark);
}
.vd-cookie-btn--settings {
  background: rgba(245,240,232,0.1);
  color: rgba(245,240,232,0.8);
  border: 1px solid rgba(245,240,232,0.2);
}
.vd-cookie-btn--settings:hover {
  background: rgba(245,240,232,0.18);
  color: var(--vd-off-white);
}
.vd-cookie-btn--save {
  background: var(--vd-mustard);
  color: var(--vd-off-white);
}
.vd-cookie-btn--save:hover {
  background: var(--vd-mustard-dark);
}

.vd-cookie-card__expanded {
  display: none;
}
.vd-cookie-card--expanded .vd-cookie-card__compact {
  display: none;
}
.vd-cookie-card--expanded .vd-cookie-card__expanded {
  display: block;
}
.vd-cookie-card__expanded-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vd-off-white);
  margin-bottom: var(--vd-space-sm);
}
.vd-cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6em 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vd-cookie-toggle-row:last-of-type {
  border-bottom: none;
  margin-bottom: var(--vd-space-sm);
}
.vd-cookie-toggle-label {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.85);
  font-weight: 500;
}
.vd-cookie-toggle-sublabel {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.5);
  display: block;
}
.vd-cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.vd-cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.vd-cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--vd-transition);
}
.vd-cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--vd-transition);
}
.vd-cookie-toggle input:checked + .vd-cookie-toggle-slider {
  background: var(--vd-mustard);
}
.vd-cookie-toggle input:checked + .vd-cookie-toggle-slider::before {
  transform: translateX(20px);
}
.vd-cookie-toggle input:disabled + .vd-cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}


.vd-contact-split__form-col:has(.vd-form-input:focus) {
  border-color: rgba(201,147,42,0.3);
}
section:has(.vd-service-card--note) {
  position: relative;
}
.vd-faq__item:has(.vd-faq__question:hover) {
  border-color: rgba(201,147,42,0.25);
}


.vd-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


@media (max-width: 599px) {
  .vd-hero__actions { flex-direction: column; }
  .vd-hero__actions .vd-btn { width: 100%; justify-content: center; }
  .vd-service-cta__actions { flex-direction: column; }
  .vd-service-cta__actions .vd-btn { width: 100%; justify-content: center; }
  .vd-thanks__actions { flex-direction: column; }
  .vd-service-detail__item { padding: var(--vd-space-md); }
}

@media (min-width: 900px) {
  .vd-who__text-col { padding-left: var(--vd-space-md); }
  .vd-map-section__inner { align-items: center; }
}


[id] {
  scroll-margin-top: 90px;
}


@media print {
  .vd-nav, .vd-mobile-menu, .vd-cookie-consent { display: none; }
  body { background: white; color: black; }
}