:root {
  --bg-white: #ffffff;
  --bg-cream: #FDF8F2;
  --bg-cream-dark: #F5EDE0;
  --text-dark: #3D2B1F;
  --accent-green: #7A9E7E;
  --accent-rose: #C4897A;
  --accent-rose-hover: #b07869;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: system-ui, -apple-system, sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6, .logo {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text-dark);
}

h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.max-w-lg { max-width: 800px; margin-inline: auto; }
.max-w-md { max-width: 500px; margin-inline: auto; }

.section {
  padding: 80px 0;
}

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

.grid {
  display: grid;
  gap: 30px;
}

.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--bg-cream-dark);
  color: var(--text-dark);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-rose);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--accent-rose-hover);
  color: #fff;
}
.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}
.btn-block {
  display: block;
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  z-index: 1000;
  border-bottom: 1px solid var(--bg-cream-dark);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  position: relative;
  transition: var(--transition);
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  left: 0;
  transition: var(--transition);
}
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

@media (max-width: 767px) {
  .mobile-menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
}

.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(61, 43, 31, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  color: #fff;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.split-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.split-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(61, 43, 31, 0.1);
}

.split-text p {
  margin-bottom: 1rem;
}
.split-text ul {
  list-style: none;
  margin-bottom: 1rem;
}
.split-text li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.split-text li::before {
  content: '🌿';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
  top: 3px;
}

@media (min-width: 768px) {
  .split-layout {
    flex-direction: row;
  }
  .split-layout.reverse {
    flex-direction: row-reverse;
  }
  .split-text, .split-image {
    flex: 1;
  }
}

.card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(61, 43, 31, 0.05);
  border: 1px solid var(--bg-cream-dark);
}

.step {
  text-align: center;
}
.step-num {
  width: 50px;
  height: 50px;
  background-color: var(--accent-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: var(--font-serif);
  margin: 0 auto 1rem;
}

.check-list {
  list-style: none;
  text-align: left;
  display: inline-block;
}
.check-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-rose);
  font-weight: bold;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.gallery-item p {
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent-green);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-cream-dark);
  border-radius: 4px;
}
.faq-item summary {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.faq-item[open] summary::after { content: '−'; }
.faq-content {
  padding: 0 20px 20px;
}

.lead-card {
  background-color: var(--bg-cream);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(61, 43, 31, 0.08);
}
.form-group {
  margin-bottom: 20px;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
}
.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--accent-green);
  border-radius: 4px;
  font-family: var(--font-sans);
  background-color: #fff;
  transition: var(--transition);
}
.form-group input:focus {
  outline: none;
  border-color: var(--text-dark);
  box-shadow: 0 0 0 2px rgba(122, 158, 126, 0.2);
}

.footer {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  padding: 60px 0 20px;
}
.footer h1, .footer h2, .footer h3, .footer h4, .footer .logo {
  color: var(--bg-cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-links a, .footer-legal a {
  display: block;
  margin-bottom: 10px;
  color: var(--bg-cream-dark);
}
.footer-links a:hover, .footer-legal a:hover {
  color: var(--accent-rose);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(253, 248, 242, 0.1);
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(253, 248, 242, 0.6);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(61, 43, 31, 0.95);
  color: #fff;
  padding: 15px;
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}
.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cookie-content a {
  color: var(--accent-rose);
  text-decoration: underline;
}
@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  animation: fadeUpAnim 1s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUpAnim {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.success-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.success-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon {
  font-size: 4rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
}
