@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-terracotta: #D2691E;
  --secondary-terracotta: #CD853F;
  --soft-sage: #87A96B;
  --deep-sage: #6B8E23;
  --warm-gold: #DAA520;
  --light-cream: #FFF8DC;
  --soft-gray: #F5F5F5;
  --charcoal: #36454F;
  --pure-white: #FFFFFF;
  --glass-white: rgba(255, 255, 255, 0.25);
  --text-dark: #2C2C2C;
  --text-light: #FFFFFF;
  --terracotta-gradient: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--secondary-terracotta) 100%);
  --sage-gradient: linear-gradient(135deg, var(--soft-sage) 0%, var(--deep-sage) 100%);
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--pure-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--charcoal);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--charcoal);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--charcoal);
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

strong, b {
  color: inherit;
}

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

a:hover {
  color: var(--primary-terracotta);
}

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

.hero-gradient {
  background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--secondary-terracotta) 25%, var(--soft-sage) 75%, var(--deep-sage) 100%);
}
.hero-gradient {
  background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--secondary-terracotta) 25%, var(--soft-sage) 75%, var(--deep-sage) 100%);
}

.hero-bg-image {
  background: linear-gradient(135deg, rgba(210, 105, 30, 0.8) 0%, rgba(205, 133, 63, 0.8) 25%, rgba(135, 169, 107, 0.8) 75%, rgba(107, 142, 35, 0.8) 100%), url('visuals/1571460-v11.webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.hero-bg-image-compact {
  background: linear-gradient(135deg, rgba(210, 105, 30, 0.8) 0%, rgba(205, 133, 63, 0.8) 25%, rgba(135, 169, 107, 0.8) 75%, rgba(107, 142, 35, 0.8) 100%), url('visuals/382303-v15.webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.sage-gradient {
  background: linear-gradient(135deg, var(--soft-sage) 0%, var(--deep-sage) 100%);
}

.terracotta-gradient {
  background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--secondary-terracotta) 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(54, 69, 79, 0.75);
  z-index: 1;
}

.glass-card {
  background: var(--glass-white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gold-accent {
  color: var(--warm-gold);
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-terracotta), var(--secondary-terracotta));
  color: var(--text-light);
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  text-shadow: none;
}

.btn-primary:hover {
  background: linear-gradient(45deg, var(--secondary-terracotta), var(--primary-terracotta));
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(210, 105, 30, 0.3);
  color: var(--text-light);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--deep-sage);
  border: 2px solid var(--deep-sage);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  text-shadow: none;
}

.btn-secondary:hover {
  background: var(--deep-sage);
  color: var(--text-light);
  text-decoration: none;
}

/* Hero section specific button styling */
.hero-section .btn-secondary {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.hero-section .btn-secondary:hover {
  background: var(--text-light);
  color: var(--charcoal);
}

.section-padding {
  padding: 80px 0;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.hero-section.compact {
  min-height: auto;
  padding: 100px 0 60px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: var(--pure-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(210, 105, 30, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-terracotta), var(--soft-sage));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.price-tag {
  background: var(--terracotta-gradient);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
}

.testimonial-card {
  background: var(--glass-card);
  border-radius: 20px;
  padding: 2rem;
  margin: 1rem 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.testimonial-author {
  font-weight: 600;
  color: var(--deep-sage);
}

.header {
  background: var(--pure-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: var(--glass-white);
  backdrop-filter: blur(10px);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  text-decoration: none;
}

.logo:hover {
  color: var(--primary-terracotta);
}

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

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-link:hover, .nav-link.active {
  background: var(--terracotta-gradient);
  color: var(--text-light);
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

.footer {
  background: var(--charcoal);
  color: var(--text-light);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--warm-gold);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: #ccc;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--warm-gold);
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
  color: #999;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--pure-white);
  color: var(--text-dark);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--deep-sage);
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

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

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--charcoal);
  color: var(--text-light);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  max-width: 600px;
  margin: 0 auto;
}

.cookie-banner h4 {
  color: var(--warm-gold);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.cookie-banner p {
  margin-bottom: 15px;
  color: #ccc;
  font-size: 0.9rem;
}

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

.cookie-btn {
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.cookie-btn.accept {
  background: var(--terracotta-gradient);
  color: var(--text-light);
}

.cookie-btn.decline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.accordion {
  margin: 2rem 0;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--pure-white);
}

.accordion-header {
  background: var(--soft-gray);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: var(--light-cream);
}

.accordion-header h4 {
  margin: 0;
  color: var(--charcoal);
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--deep-sage);
  transition: transform 0.3s ease;
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-content.active {
  padding: 20px;
  max-height: 500px;
}

.accordion-content p {
  color: var(--text-dark);
  margin: 0;
}

.accordion-icon.active {
  transform: rotate(180deg);
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin: 1rem 0;
}

.image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

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

.text-white {
  color: var(--text-light) !important;
}

.text-dark {
  color: var(--text-dark) !important;
}

.bg-white {
  background-color: var(--pure-white) !important;
}

.bg-light {
  background-color: var(--light-cream) !important;
}

.bg-dark {
  background-color: var(--charcoal) !important;
  color: var(--text-light) !important;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.animate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--pure-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero-section {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 15px 15px 0 0;
  }

  .cookie-buttons {
    justify-content: center;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .header-container {
    padding: 0.75rem 15px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .service-card, .glass-card {
    padding: 1.5rem;
  }

  .accordion-header, .accordion-content.active {
    padding: 15px;
  }
}