@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+Pro:wght@400;600;700&display=swap');

:root {
  --primary-slate: #708090;
  --accent-ivory: #FFFFF0;
  --accent-teal: #669999;
  --charcoal: #333333;
  --light-bg: #f8f8f5;
  --border-subtle: rgba(112, 128, 144, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--charcoal);
  background-color: var(--accent-ivory);
  line-height: 1.72;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', serif;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.section-lead {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--primary-slate);
  margin-bottom: 1.5rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-ivory);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 32px;
  height: 32px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav a {
  font-family: 'Libre Baskerville', serif;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 1rem;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-teal);
  transition: width 0.4s ease;
}

nav a:hover::after {
  width: 100%;
}

main {
  margin-top: 80px;
  padding-top: 0;
}

.hero-section {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, rgba(112, 128, 144, 0.6) 0%, rgba(102, 153, 153, 0.5) 100%), url('images/hero-whole-foods.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--accent-ivory);
  overflow: hidden;
}

.hero-content h1 {
  color: var(--accent-ivory);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.3rem;
  max-width: 700px;
  color: var(--accent-ivory);
  line-height: 1.6;
}

section {
  padding: 150px 110px;
  max-width: 1620px;
  margin: 0 auto;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: 110px;
  padding-right: 110px;
}

.section-gradient-1 {
  background: linear-gradient(180deg, rgba(255, 255, 240, 0.8) 0%, rgba(112, 128, 144, 0.08) 100%);
}

.section-gradient-2 {
  background: linear-gradient(180deg, rgba(102, 153, 153, 0.05) 0%, rgba(255, 255, 240, 0.9) 100%);
}

.content-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}

.content-grid.reverse {
  grid-template-columns: 45% 55%;
}

.content-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-height: 400px;
  object-fit: cover;
}

.button {
  display: inline-block;
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border: 2px solid var(--accent-teal);
  background-color: var(--accent-teal);
  color: var(--accent-ivory);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.4s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.button:hover {
  background-color: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--accent-ivory);
}

.button-secondary {
  border: 2px solid var(--primary-slate);
  background-color: transparent;
  color: var(--charcoal);
}

.button-secondary:hover {
  background-color: var(--primary-slate);
  color: var(--accent-ivory);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 60px 0;
}

.article-card {
  background-color: var(--accent-ivory);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}

.article-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

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

.article-card-content {
  padding: 24px;
}

.article-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.article-card p {
  color: var(--primary-slate);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.article-card a {
  color: var(--accent-teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.article-card a:hover {
  color: var(--charcoal);
}

.accordion {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.accordion-item {
  border-bottom: 1px solid var(--border-subtle);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 20px;
  background-color: var(--accent-ivory);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-family: 'Libre Baskerville', serif;
  color: var(--charcoal);
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(112, 128, 144, 0.05);
}

.accordion-header.active {
  background-color: rgba(102, 153, 153, 0.1);
}

.accordion-toggle {
  font-size: 1.5rem;
  color: var(--accent-teal);
  transition: transform 0.3s ease;
}

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

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

.accordion-content.active {
  max-height: 600px;
}

.accordion-body {
  padding: 20px;
  color: var(--charcoal);
  line-height: 1.72;
}

footer {
  background-color: var(--charcoal);
  color: var(--accent-ivory);
  padding: 80px 110px 40px;
  margin-top: 100px;
}

.footer-content {
  max-width: 1620px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-section h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: var(--accent-ivory);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.footer-section p, .footer-section a {
  color: rgba(255, 255, 240, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 240, 0.2);
  padding-top: 40px;
  margin-top: 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 240, 0.6);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.form-group label {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--charcoal);
  background-color: var(--accent-ivory);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(102, 153, 153, 0.1);
}

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

.disclaimer {
  background-color: rgba(112, 128, 144, 0.05);
  border-left: 4px solid var(--accent-teal);
  padding: 20px;
  border-radius: 4px;
  font-size: 0.95rem;
  margin: 30px 0;
  color: var(--charcoal);
}

.disclaimer strong {
  color: var(--charcoal);
}

.disclaimer a {
  color: var(--accent-teal);
  text-decoration: none;
}

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

.thank-you-message {
  text-align: center;
  padding: 100px 50px;
  max-width: 600px;
  margin: 100px auto;
}

.thank-you-message h1 {
  margin-top: 0;
}

.thank-you-message p {
  font-size: 1.1rem;
  color: var(--primary-slate);
  margin-bottom: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--charcoal);
  color: var(--accent-ivory);
  padding: 24px 40px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.show {
  display: flex;
}

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

.cookie-content {
  max-width: 1620px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-teal);
  text-decoration: none;
}

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

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: 1px solid var(--accent-ivory);
  background-color: transparent;
  color: var(--accent-ivory);
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-buttons button.accept {
  background-color: var(--accent-teal);
  border-color: var(--accent-teal);
  color: var(--accent-ivory);
}

.cookie-buttons button:hover {
  background-color: var(--accent-ivory);
  color: var(--charcoal);
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 30px;
  }

  .header-content {
    padding: 1rem 30px;
  }

  .full-bleed {
    padding-left: 30px;
    padding-right: 30px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .content-grid,
  .content-grid.reverse {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-content p {
    font-size: 1.1rem;
  }

  nav ul {
    gap: 1.5rem;
    font-size: 0.9rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

  .cookie-buttons button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  section {
    padding: 60px 20px;
  }

  .header-content {
    padding: 0.75rem 20px;
    flex-direction: column;
    gap: 1rem;
  }

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  body {
    font-size: 16px;
  }

  .article-grid {
    gap: 20px;
  }

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