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

:root {
  --vdf-primary: #2563eb;
  --vdf-primary-hover: #1d4ed8;
  --vdf-gold: #d4af37;
  --vdf-gold-hover: #c5a028;
  --vdf-navy: #0f172a;
  --vdf-dark: #0f172a;
  --vdf-gray-50: #f9fafb;
  --vdf-gray-100: #f3f4f6;
  --vdf-gray-200: #e5e7eb;
  --vdf-gray-400: #9ca3af;
  --vdf-gray-600: #4b5563;
  --vdf-gray-700: #374151;
  --vdf-gray-800: #1f2937;
  --vdf-gray-900: #111827;
  --vdf-font-serif: 'Libre Bodoni', serif;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--vdf-gray-900);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vdf-font-serif);
}

.vdf-site {
  width: 100%;
}

.vdf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vdf-header {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0;
}

.vdf-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vdf-header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vdf-phone-btn {
  background: var(--vdf-gold);
  color: var(--vdf-navy);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.vdf-phone-btn:hover {
  background: var(--vdf-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.vdf-mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.vdf-mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--vdf-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.vdf-mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.vdf-mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.vdf-mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.vdf-brand {
  text-decoration: none;
  color: var(--vdf-dark);
  font-weight: 700;
  font-size: 20px;
}

.vdf-brand-logo {
  height: 90px;
  width: auto;
}

.vdf-brand-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--vdf-dark);
}

.vdf-nav {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.vdf-nav li {
  position: relative;
}

.vdf-nav a {
  text-decoration: none;
  color: var(--vdf-gray-700);
  font-weight: 500;
  transition: color 0.2s;
}

.vdf-nav a:hover {
  color: var(--vdf-primary);
}

.vdf-nav-item-dropdown:hover .vdf-dropdown-menu {
  display: block;
}

.vdf-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 200px;
  margin-top: 8px;
}

.vdf-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--vdf-gray-700);
  text-decoration: none;
  transition: background 0.2s;
}

.vdf-dropdown-menu a:hover {
  background: var(--vdf-gray-100);
  color: var(--vdf-primary);
}

.vdf-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vdf-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--vdf-dark) 0%, var(--vdf-gray-800) 100%);
  z-index: -1;
}

.vdf-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1621905251189-c97cde3f325b?auto=format&fit=crop&q=80&w=2000');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.vdf-hero-inner {
  position: relative;
  z-index: 1;
  color: white;
  padding: 80px 20px;
  max-width: 800px;
}

.vdf-hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--vdf-gray-200);
  margin-bottom: 16px;
}

.vdf-hero-title {
  font-family: var(--vdf-font-serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.vdf-hero-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--vdf-gray-200);
  margin-bottom: 32px;
}

.vdf-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.vdf-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.vdf-btn-primary {
  background: var(--vdf-gold);
  color: var(--vdf-navy);
}

.vdf-btn-primary:hover {
  background: var(--vdf-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.vdf-btn-outline {
  border: 2px solid var(--vdf-gold);
  background: transparent;
  color: white;
}

.vdf-btn-outline:hover {
  background: var(--vdf-gold);
  color: var(--vdf-navy);
}

.vdf-section {
  padding: 80px 20px;
}

.vdf-section-light {
  background: white;
}

.vdf-section-alt {
  background: var(--vdf-gray-50);
}

.vdf-section-dark {
  background: var(--vdf-gray-900);
  color: white;
}

.vdf-section-dark .vdf-service-content h2,
.vdf-section-dark .vdf-service-content h3,
.vdf-section-dark .vdf-service-content h4 {
  color: white;
}

.vdf-section-dark .vdf-service-content p,
.vdf-section-dark .vdf-service-content ul {
  color: var(--vdf-gray-200);
}

.vdf-section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.vdf-muted {
  color: var(--vdf-gray-600);
  text-align: center;
  font-size: 18px;
}

.vdf-section-dark .vdf-muted {
  color: var(--vdf-gray-400);
}

.vdf-grid {
  display: grid;
  gap: 24px;
}

.vdf-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.vdf-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.vdf-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.vdf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.vdf-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--vdf-dark);
}

.vdf-card .vdf-muted {
  text-align: left;
  font-size: 16px;
}

.vdf-card-navy {
  background: var(--vdf-navy);
  color: white;
}

.vdf-card-navy h3 {
  color: white;
}

.vdf-card-navy h4 {
  color: white;
}

.vdf-card-navy p {
  color: white;
}

.vdf-service-content .vdf-card.vdf-card-navy h4,
.vdf-service-content .vdf-card.vdf-card-navy p {
  color: white;
}

.vdf-card-light {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: var(--vdf-dark);
  margin-top: 50px;
}

.vdf-card-light h3 {
  margin-bottom: 16px;
  color: var(--vdf-dark);
}

.vdf-card-light .vdf-muted {
  margin-bottom: 24px;
  color: var(--vdf-dark);
}

.vdf-section-dark .vdf-card-light .vdf-muted {
  color: var(--vdf-dark);
}

.vdf-section-dark .vdf-card-light h3,
.vdf-section-dark .vdf-card-light p {
  color: var(--vdf-dark);
}

.vdf-about-intro {
  text-align: left;
  margin-bottom: 16px;
}

.vdf-about-callout {
  border-left: 4px solid var(--vdf-gold);
  background: var(--vdf-gray-50);
  padding: 12px 16px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--vdf-gray-700);
  text-align: left;
  border-radius: 0 6px 6px 0;
}

.vdf-about-callout strong {
  color: var(--vdf-dark);
}

.vdf-content-list {
  margin-top: 16px;
  padding-left: 24px;
  line-height: 1.8;
}

.vdf-grid-spaced {
  margin-top: 20px;
}

.vdf-heading-spaced {
  margin-top: 60px;
}

.vdf-services {
  background: white;
  padding: 0;
}

.vdf-services-header {
  padding: 60px 20px 40px;
  background: white;
}

.vdf-services .vdf-section-title {
  color: var(--vdf-navy);
}

.vdf-service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 0;
  padding: 64px 80px;
}

.vdf-service-item:nth-of-type(odd) {
  background: var(--vdf-navy);
  color: white;
}

.vdf-service-item:nth-of-type(even) {
  background: white;
  color: var(--vdf-navy);
  border-top: 1px solid var(--vdf-gray-200);
  border-bottom: 1px solid var(--vdf-gray-200);
}

.vdf-service-item h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.vdf-service-item:nth-of-type(odd) h3 {
  color: white;
}

.vdf-service-item:nth-of-type(even) h3 {
  color: var(--vdf-navy);
}

.vdf-service-item p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.vdf-service-item:nth-of-type(odd) p {
  color: var(--vdf-gray-400);
}

.vdf-service-item:nth-of-type(even) p {
  color: var(--vdf-gray-600);
}

.vdf-service-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.vdf-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.vdf-gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.2s;
  cursor: pointer;
}

.vdf-gallery img:hover {
  transform: scale(1.05);
}

.vdf-review-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.vdf-review-card {
  background: var(--vdf-gray-800);
  padding: 32px;
  border-radius: 12px;
}

.vdf-stars {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 16px;
}

.vdf-review-card p {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.vdf-review-card p:first-of-type {
  color: white;
  font-style: italic;
}

.vdf-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vdf-contact-form input,
.vdf-contact-form select,
.vdf-contact-form textarea {
  padding: 14px;
  border: 2px solid var(--vdf-gray-200);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.vdf-contact-form input:focus,
.vdf-contact-form select:focus,
.vdf-contact-form textarea:focus {
  outline: none;
  border-color: var(--vdf-primary);
}

.vdf-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.vdf-contact-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--vdf-gray-600);
}

.vdf-contact-form label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.vdf-contact-form button {
  background: var(--vdf-gold);
  color: var(--vdf-navy);
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.vdf-contact-form button:hover {
  background: var(--vdf-gold-hover);
}

.vdf-footer {
  background: var(--vdf-gray-900);
  color: white;
  padding: 48px 20px;
}

.vdf-footer strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.vdf-footer a {
  color: var(--vdf-gray-400);
  text-decoration: none;
  transition: color 0.2s;
}

.vdf-footer a:hover {
  color: var(--vdf-primary);
}

.vdf-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vdf-perfect-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
  align-items: start;
}

.vdf-perfect-for-grid img {
  width: 100%;
  height: 331px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vdf-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vdf-service-hero {
  background: var(--vdf-dark);
  color: white;
  padding: 80px 20px 60px;
  text-align: center;
}

.vdf-service-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.vdf-service-hero-lead {
  font-size: 20px;
  color: var(--vdf-gray-200);
  max-width: 800px;
  margin: 0 auto;
}

.vdf-service-content {
  max-width: 900px;
  margin: 0 auto;
}

.vdf-service-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--vdf-dark);
  margin-bottom: 20px;
}

.vdf-service-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--vdf-dark);
  margin-bottom: 16px;
}

.vdf-service-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--vdf-dark);
}

.vdf-service-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--vdf-gray-700);
  margin-bottom: 16px;
}

.vdf-service-content ul {
  font-size: 18px;
  color: var(--vdf-gray-700);
}

.vdf-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.vdf-gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.2s;
  cursor: pointer;
}

.vdf-gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.vdf-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.vdf-faq-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--vdf-dark);
  margin-bottom: 12px;
}

.vdf-faq-item p {
  line-height: 1.7;
}

@media (max-width: 768px) {
  .vdf-mobile-menu-toggle {
    display: flex;
  }

  .vdf-header-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 30px 30px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 100;
  }

  .vdf-header-right.active {
    right: 0;
  }

  .vdf-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .vdf-nav li {
    width: 100%;
    border-bottom: 1px solid var(--vdf-gray-200);
  }

  .vdf-nav a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
  }

  .vdf-nav-item-dropdown .vdf-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: var(--vdf-gray-50);
    margin-left: 16px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .vdf-nav-item-dropdown.open .vdf-dropdown-menu {
    display: block;
  }

  .vdf-phone-btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  .vdf-hero-title {
    font-size: 28px;
    white-space: normal;
  }

  .vdf-hero-lead {
    font-size: 18px;
  }

  .vdf-section-title {
    font-size: 32px;
  }

  .vdf-service-item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 20px;
  }

  .vdf-service-item img {
    height: 250px;
  }

  .vdf-services-header {
    padding: 40px 20px 30px;
  }

  .vdf-grid-2,
  .vdf-grid-3 {
    grid-template-columns: 1fr;
  }

  .vdf-service-hero h1 {
    font-size: 36px;
  }

  .vdf-service-hero-lead {
    font-size: 18px;
  }

  .vdf-service-content h2 {
    font-size: 28px;
  }

  .vdf-service-content h3 {
    font-size: 24px;
  }

  .vdf-gallery-grid {
    grid-template-columns: 1fr;
  }

  .vdf-faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vdf-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vdf-perfect-for-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vdf-perfect-for-grid img {
    height: 240px;
  }

  .vdf-form-grid {
    grid-template-columns: 1fr;
  }
}
