:root {
  --primary-green: #A8CABA;
  --accent-oatmeal: #F4E4BC;
  --accent-terracotta: #C97C5D;
  --text-charcoal: #3A3A3A;
  --text-light: #F5F5F5;
  --border-light: #E8E8E8;
  --shadow-soft: 0 4px 12px rgba(58, 58, 58, 0.08);
  --transition-smooth: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #FAFAF8;
  color: var(--text-charcoal);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
}

h1 {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-charcoal);
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-charcoal);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--text-charcoal);
}

p, li, span {
  line-height: 1.7;
  font-size: 1rem;
}

em {
  font-style: italic;
  color: var(--accent-terracotta);
  font-weight: 500;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(58, 58, 58, 0.05);
  padding: 1rem 0;
}

.navbar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5vw;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  height: 32px;
  width: 32px;
  object-fit: contain;
}

.navbar-nav {
  gap: 2.5rem;
}

.nav-link {
  color: var(--text-charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Main Content */
main {
  margin-top: 80px;
  overflow-x: hidden;
}

.section {
  width: 100%;
  padding: 5rem 5vw;
}

.section-hero {
  background: linear-gradient(135deg, rgba(168, 202, 186, 0.15) 0%, rgba(244, 228, 188, 0.1) 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  color: var(--text-charcoal);
}

.hero-content h1 {
  color: var(--text-charcoal);
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

/* Content Container */
.container-narrow {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Card Component */
.card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-light);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(58, 58, 58, 0.12);
}

.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-bottom: 0.75rem;
  color: var(--text-charcoal);
}

.card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Image Sections */
.image-side {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.image-featured {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  object-fit: cover;
  margin: 2rem 0;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: #96b5a7;
  box-shadow: 0 4px 12px rgba(168, 202, 186, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--accent-terracotta);
  border-color: var(--accent-terracotta);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-secondary:hover {
  background-color: #b86f52;
  box-shadow: 0 4px 12px rgba(201, 124, 93, 0.3);
}

.btn-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.btn-link:hover {
  color: var(--accent-terracotta);
}

/* Accordion */
.accordion-header {
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.accordion-header:hover {
  background-color: var(--accent-oatmeal);
}

.accordion-header button {
  color: var(--text-charcoal);
  font-weight: 600;
  text-align: left;
}

.accordion-body {
  background-color: #FAFAF8;
  border: 1px solid var(--border-light);
  border-top: none;
  padding: 1.5rem;
  color: #555;
  line-height: 1.7;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

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

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-smooth);
  background-color: white;
  color: var(--text-charcoal);
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(168, 202, 186, 0.1);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: #666;
  background-color: var(--accent-oatmeal);
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-terracotta);
}

/* Footer */
footer {
  background-color: var(--text-charcoal);
  color: var(--text-light);
  padding: 3rem 5vw;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.footer-section p,
.footer-section a,
.footer-section ul {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

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

.footer-section a {
  color: var(--accent-oatmeal);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-section a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  border-top: 1px solid rgba(168, 202, 186, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-message {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid var(--primary-green);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 12px rgba(58, 58, 58, 0.1);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-content {
  flex: 1;
  min-width: 250px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-charcoal);
}

.cookie-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

.cookie-link:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.btn-cookie {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

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

.btn-cookie-accept:hover {
  background-color: #96b5a7;
}

.btn-cookie-reject {
  background-color: #E8E8E8;
  color: var(--text-charcoal);
}

.btn-cookie-reject:hover {
  background-color: #D8D8D8;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

.slide-up {
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
}

.slide-up:nth-child(1) { animation-delay: 0.1s; }
.slide-up:nth-child(2) { animation-delay: 0.2s; }
.slide-up:nth-child(3) { animation-delay: 0.3s; }
.slide-up:nth-child(4) { animation-delay: 0.4s; }
.slide-up:nth-child(5) { animation-delay: 0.5s; }
.slide-up:nth-child(6) { animation-delay: 0.6s; }

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-balance {
  text-wrap: balance;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }

.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }

.max-width-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section {
    padding: 3rem 4vw;
  }

  .section-hero {
    min-height: 400px;
  }

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn-cookie {
    width: 100%;
  }

  header {
    padding: 0.75rem 0;
  }

  .navbar {
    padding: 0 4vw;
  }

  .navbar-nav {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  main {
    margin-top: 70px;
  }

  .image-side,
  .image-featured {
    height: 250px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .section {
    padding: 2rem 3vw;
  }

  .navbar-nav {
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}
