:root {
  --primary: #4A1521;
  --primary-dark: #2A0810;
  --accent: #D4AF37;
  --accent-hover: #F3CD57;
  --bg-light: #FAF6F0;
  --bg-white: #FFFFFF;
  --text-dark: #1F1F1F;
  --text-muted: #575757;
  --border: #E2DDD5;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow: 0 4px 20px rgba(74, 21, 33, 0.08);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1.1rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
}

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 10px 20px;
  z-index: 9999;
  transition: top 0.3s;
  font-weight: bold;
}
.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-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

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

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

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

.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--accent);
}

.btn-cta {
  background-color: var(--primary);
  color: var(--bg-white) !important;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.btn-cta:hover {
  background-color: var(--accent);
  color: var(--primary-dark) !important;
}

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

main {
  min-height: 80vh;
}

/* Hero Section */
.hero {
  padding: 80px 20px;
  background-color: var(--bg-white);
  display: flex;
  align-items: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10 10 L90 10 L50 90 Z' fill='none' stroke='%23D4AF37' stroke-opacity='0.03'/%3E%3C/svg%3E");
}

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

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

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

.hero-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Statistics */
.stats {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 50px 20px;
}

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

.stat-item h3 {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Section Common */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Process Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 6px;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow);
}

.step-num {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.2;
  font-family: var(--font-title);
  font-weight: 900;
}

.step-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.step-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Trust Principles */
.trust-principles {
  background-color: var(--bg-white);
  padding: 60px 20px;
  border-radius: 8px;
  margin: 40px auto;
  border: 1px solid var(--border);
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.principle-item {
  display: flex;
  gap: 20px;
}

.principle-item i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-top: 5px;
}

.principle-item h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

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

.service-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h3 {
  margin-bottom: 15px;
}

.service-body p {
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Features Block */
.features-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  background-color: var(--bg-white);
  padding: 50px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.features-img img {
  width: 100%;
  border-radius: 8px;
}

.features-text ul {
  list-style: none;
  margin-top: 20px;
}

.features-text li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

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

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
}

.pricing-card.popular {
  border: 2px solid var(--accent);
  transform: scale(1.03);
}

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

.price {
  font-size: 2.5rem;
  font-family: var(--font-title);
  color: var(--primary);
  margin: 20px 0;
  font-weight: bold;
}

.pricing-card ul {
  list-style: none;
  margin: 25px 0;
  text-align: left;
}

.pricing-card li {
  margin-bottom: 12px;
  color: var(--text-muted);
}

.pricing-card li i {
  color: var(--accent);
  margin-right: 10px;
}

/* Form Section */
.form-section {
  background-color: var(--bg-white);
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 50px;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary);
}

input, textarea, select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--bg-light);
  transition: all 0.3s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(74, 21, 33, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
}

.checkbox-group input {
  width: auto;
  margin-top: 5px;
}

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

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

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

.faq-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-content {
  padding: 0 20px 20px 20px;
  max-height: 500px;
}

.faq-header i {
  transition: transform 0.3s;
}

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

/* Trust Layer Plaque */
.trust-layer {
  background-color: #EFEBE4;
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 6px;
  margin: 40px auto;
  max-width: 1200px;
}

.trust-layer-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: var(--primary);
}

.trust-layer-content {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: var(--bg-light);
  padding: 50px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(250,246,240,0.8);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: rgba(250,246,240,0.6);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 450px;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 25px;
  border-radius: 8px;
  z-index: 10000;
  display: none;
}

.cookie-banner h4 {
  margin-bottom: 10px;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

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

.cookie-btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background-color: var(--primary);
  color: var(--bg-white);
}

.cookie-reject {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border);
}

/* Text pages layout */
.text-page {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.text-page h1 {
  margin-bottom: 30px;
  font-size: 2.8rem;
}

.text-page h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.text-page p, .text-page ul {
  margin-bottom: 20px;
}

.text-page ul {
  padding-left: 20px;
}

/* Map Iframe styling */
.map-container {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 20px 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container, .principles-grid, .features-block, .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .burger {
    display: block;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  .nav-menu.active {
    display: flex;
  }
  .pricing-card.popular {
    transform: none;
  }
}

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