:root {
  --primary: #6F1A24;
  --primary-light: #8E2530;
  --secondary: #D4AF37;
  --dark: #121214;
  --light: #F7F5F0;
  --text: #2C2C2E;
  --white: #FFFFFF;
  --gray: #7E7E82;
  --font-family: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-name {
  font-family: var(--font-family);
  color: var(--dark);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 1rem;
  z-index: 10000;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* Accessibility focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

/* Header & Nav */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary);
}

.btn-nav {
  background-color: var(--primary);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600 !important;
}

.btn-nav:hover {
  background-color: var(--primary-light);
}

.burger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
}

/* Hero Section */
.hero {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #FFF9F2 0%, #F5EFEB 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-sans);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-light);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  object-fit: cover;
  height: 400px;
}

/* Custom Pattern Background */
.pattern-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  opacity: 0.05;
  pointer-events: none;
}

/* Stats Section */
.stats {
  background-color: var(--white);
  padding: 4rem 2rem;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-weight: 600;
  color: var(--gray);
}

/* Section Common */
section {
  padding: 6rem 2rem;
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-title p {
  font-size: 1.15rem;
  color: var(--gray);
}

/* Grid Sections */
.grid-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-top-color: var(--secondary);
}

.card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Features Block (Asymmetric) */
.features-asymmetric {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-img img {
  width: 100%;
  border-radius: 12px;
  height: 450px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.features-list {
  list-style: none;
}

.features-list li {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.features-list i {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

/* Pricing */
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.price-card {
  background-color: var(--white);
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.popular {
  border: 2px solid var(--secondary);
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.price-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1rem;
  color: var(--gray);
}

.price-features {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
  flex-grow: 1;
}

.price-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-features i {
  color: var(--primary);
}

/* Contact & Form */
.contact-section {
  background-color: var(--white);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-details {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-details li {
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-details i {
  color: var(--primary);
  font-size: 1.25rem;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #D1D1D6;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
}

input:focus, textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input {
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-weight: normal;
  font-size: 0.9rem;
}

/* Trust Layer & Footer */
.trust-layer {
  background-color: #EFECE6;
  padding: 3rem 2rem;
  border-top: 1px solid #DDD;
}

.trust-layer-container {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
}

.trust-layer-container h4 {
  color: var(--dark);
  margin-bottom: 1rem;
}

footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 4rem 2rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links h4 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #AEAEB2;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #2C2C2E;
  text-align: center;
  font-size: 0.9rem;
  color: #AEAEB2;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: var(--white);
  padding: 1.5rem 2rem;
  z-index: 10000;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
  display: none;
}

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

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

.cookie-text a {
  color: var(--secondary);
}

.cookie-btns {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background-color: var(--secondary);
  color: var(--dark);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
}

.btn-cookie-reject {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
}

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

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  overflow: hidden;
}

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

.faq-header i {
  color: var(--primary);
  transition: var(--transition);
}

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

.faq-content p {
  padding-bottom: 1.5rem;
  color: var(--text);
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-item.active .faq-content {
  max-height: 300px;
}

/* Map frame */
.map-container {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-container, .contact-container, .features-asymmetric {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  }
  .nav-menu.active {
    display: flex;
  }
  .burger {
    display: block;
  }
  .stats-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cookie-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

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