:root {
  --primary: #4A1521;      /* Deep Wine Red */
  --primary-light: #6B2333;
  --accent: #D4AF37;       /* Soft Luxurious Gold */
  --accent-hover: #B2912D;
  --bg-cream: #FDFBF7;     /* High-contrast warm cream background */
  --bg-dark: #1F070B;
  --text-dark: #2C2C2C;
  --text-light: #FDFBF7;
  --border: #E8E2D7;
  --font-family-sans: 'Lato', sans-serif;
  --font-family-serif: 'Playfair Display', serif;
}

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

body {
  font-family: var(--font-family-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-family-serif);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; line-height: 1.2; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: var(--accent);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 10px 20px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

header {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 1.2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--accent);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img {
  width: 45px;
  height: 45px;
}

.logo-area span {
  font-family: var(--font-family-serif);
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--text-light);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
}

nav a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.05rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--bg-dark);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  text-align: center;
}

.btn:hover, .btn:focus {
  background-color: var(--accent-hover);
  color: var(--text-light);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(31,7,11,0.95) 0%, rgba(74,21,33,0.9) 100%), url('images/hero.jpg') center/cover no-repeat;
  color: var(--text-light);
  padding: 8rem 2rem;
  text-align: center;
}

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

.hero-section h1 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  color: #E8E2D7;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  margin: 15px auto 0;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: var(--primary);
  color: var(--text-light);
  padding: 3rem 2rem;
  border-radius: 8px;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-family-serif);
  font-size: 2.8rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 5px;
}

/* Steps Block */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-card {
  background: #FFF;
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  border-radius: 6px;
  text-align: center;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.step-num-badge {
  font-size: 1rem;
  font-weight: bold;
  background: var(--primary);
  color: var(--text-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* Services section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-body {
  padding: 2rem;
}

/* Features asymmetric structure */
.features-split {
  display: flex;
  align-items: center;
  gap: 50px;
}

.features-split img {
  width: 50%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.features-text {
  width: 50%;
}

.features-list {
  list-style: none;
  margin-top: 1.5rem;
}

.features-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 30px;
}

.features-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: #FFF;
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.85rem;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
}

.price {
  font-family: var(--font-family-serif);
  font-size: 2.6rem;
  color: var(--primary);
  font-weight: 700;
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.price-features li {
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

/* FAQ accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  background: #FFF;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: #555;
}

/* Form block */
.form-section {
  background-color: #F3ECE2;
  padding: 5rem 2rem;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #FFF;
  padding: 3.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 1.5rem;
}

.form-checkbox input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
}

.form-checkbox label {
  font-size: 0.95rem;
  font-weight: normal;
}

/* Trust Layer */
.trust-layer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-top: 2px solid var(--accent);
  padding: 4rem 2rem 2rem;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  font-size: 0.95rem;
}

.trust-info h3 {
  color: var(--accent);
}

.trust-disclaimer {
  color: #B2AAA2;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 1.5rem;
}

/* Footer */
footer {
  background-color: #120406;
  color: #B2AAA2;
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #2C1015;
}

.footer-nav {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #E8E2D7;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 1.5rem 2rem;
  z-index: 9999;
  border-top: 3px solid var(--accent);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn-accept {
  background-color: var(--accent);
  color: var(--bg-dark);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--text-light);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pricing-card.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-container {
    position: relative;
  }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: -2rem;
    right: -2rem;
    background-color: var(--bg-dark);
    padding: 1.5rem;
    border-bottom: 2px solid var(--accent);
  }
  nav.active {
    display: block;
  }
  nav ul {
    flex-direction: column;
    gap: 15px;
  }
  .mobile-menu-btn {
    display: block;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .features-split {
    flex-direction: column;
  }
  .features-split img, .features-text {
    width: 100%;
  }
  .trust-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-buttons {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}