:root {
  --color-mustard: #c9a96e;
  --color-sage: #4a7043;
  --color-linen: #f8f1e9;
  --color-terracotta: #b85c4a;
  --color-white: #ffffff;
  --color-dark: #1a1a1a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.82;
  color: var(--color-dark);
  background-color: var(--color-white);
}

h1 {
  font-family: 'Spectral', serif;
  font-size: 5rem;
  letter-spacing: 0.6px;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

h2 {
  font-family: 'Spectral', serif;
  font-size: 3rem;
  letter-spacing: 0.4px;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

h3 {
  font-family: 'Spectral', serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: var(--color-mustard);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  max-width: 1540px;
  margin: 0 auto;
}

.logo {
  font-family: 'Spectral', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-dark);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links a:hover {
  color: var(--color-sage);
}

header.scrolled .nav-links a {
  color: var(--color-white);
}

header.scrolled .logo {
  color: var(--color-white);
}

.hero {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/hero-seeds-bowl.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}

.hero-content h1 {
  color: var(--color-white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.8s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-linen);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.8s ease 0.2s both;
}

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

.container {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 120px;
}

.section {
  padding: 160px 120px;
  width: 100%;
}

.section-alt {
  background: linear-gradient(135deg, var(--color-mustard) 0%, var(--color-linen) 100%);
}

.section-sage {
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-linen) 100%);
}

.section h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  animation: slideIn 0.6s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-text {
  animation: slideIn 0.6s ease 0.2s both;
}

.section-text h3 {
  color: var(--color-sage);
  margin-bottom: 1.5rem;
}

.divider {
  width: 60px;
  height: 2px;
  background-color: var(--color-terracotta);
  margin: 2rem 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background-color: var(--color-white);
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  border-color: var(--color-sage);
  box-shadow: inset 0 0 20px rgba(250, 241, 233, 0.5), 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: scale(1.03);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-linen) 0%, var(--color-mustard) 100%);
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  color: var(--color-sage);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.card p {
  color: var(--color-dark);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card-advantages {
  list-style: none;
  margin: 1rem 0;
}

.card-advantages li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--color-dark);
  font-size: 0.95rem;
}

.card-advantages li:before {
  content: "•";
  color: var(--color-mustard);
  position: absolute;
  left: 0;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid var(--color-sage);
  background-color: transparent;
  color: var(--color-sage);
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn:hover {
  background: linear-gradient(135deg, var(--color-linen) 0%, rgba(250, 241, 233, 0.8) 100%);
  box-shadow: 0 4px 16px rgba(74, 112, 67, 0.2);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.btn-terracotta {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
}

.btn-terracotta:hover {
  background: linear-gradient(135deg, rgba(184, 92, 74, 0.1) 0%, rgba(184, 92, 74, 0.05) 100%);
  box-shadow: 0 4px 16px rgba(184, 92, 74, 0.2);
}

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

.footer-content {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Spectral', serif;
  margin-bottom: 1rem;
  color: var(--color-mustard);
}

.footer-section a {
  display: block;
  color: var(--color-linen);
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  max-width: 1540px;
  margin: 0 auto;
  padding: 2rem 120px;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-linen);
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

form {
  max-width: 600px;
  margin: 2rem auto;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-dark);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-mustard);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--color-dark);
  background-color: var(--color-linen);
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 8px rgba(74, 112, 67, 0.1);
}

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

.disclaimer {
  background-color: var(--color-linen);
  padding: 2rem;
  border-left: 4px solid var(--color-terracotta);
  margin: 2rem 0;
  border-radius: 2px;
}

.disclaimer p {
  color: var(--color-dark);
  font-size: 0.95rem;
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 1.5rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-content {
  flex: 1;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #5a8a52;
}

.cookie-decline {
  background-color: var(--color-terracotta);
  color: var(--color-white);
}

.cookie-decline:hover {
  background-color: #a04b38;
}

.cookie-learn {
  background-color: transparent;
  border: 1px solid var(--color-mustard);
  color: var(--color-mustard);
}

.cookie-learn:hover {
  background-color: rgba(201, 169, 110, 0.1);
}

.policy-content {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 120px;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul, 
.policy-content ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.breadcrumb {
  padding: 2rem 120px;
  font-size: 0.9rem;
  color: var(--color-sage);
}

.breadcrumb a {
  color: var(--color-sage);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container,
  .section,
  .footer-content,
  .footer-bottom,
  .policy-content {
    padding: 0 30px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cookie-banner.show {
    flex-direction: column;
    gap: 1rem;
  }

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

  .cookie-btn {
    width: 100%;
  }
}
