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

:root {
  --color-fog-grey: #d4d4d8;
  --color-oat-beige: #f5f1e8;
  --color-mist-blue: #e8f1f5;
  --color-sage-green: #a8b89c;
  --color-soft-berry: #d4a5a5;
  --color-muted-navy: #4a5568;
  --color-white: #ffffff;
  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 28px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--color-oat-beige);
  color: var(--color-muted-navy);
  line-height: 1.6;
  font-size: 16px;
}

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

a:hover {
  color: var(--color-sage-green);
}

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

/* Header & Navigation */
header {
  background-color: var(--color-white);
  padding: 24px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-muted-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted-navy);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

nav a:hover,
nav a.active {
  border-bottom-color: var(--color-sage-green);
}

/* Footer */
footer {
  background-color: var(--color-white);
  padding: 48px 0 24px;
  margin-top: 80px;
  border-top: 1px solid var(--color-fog-grey);
}

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

.footer-section h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--color-muted-navy);
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-muted-navy);
  opacity: 0.8;
}

.footer-section a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--color-muted-navy);
}

.footer-bottom {
  border-top: 1px solid var(--color-fog-grey);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--color-muted-navy);
  opacity: 0.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 12px;
}

.footer-links a {
  color: var(--color-muted-navy);
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 48px 48px;
  border-radius: var(--radius-large);
  max-width: 500px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-muted-navy);
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-muted-navy);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 60px 0;
  align-items: stretch;
}

.bento-item {
  background: var(--color-white);
  border-radius: var(--radius-medium);
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.bento-item.large-width {
  grid-column: span 2;
}

.bento-item.large-height {
  grid-row: span 2;
}

.bento-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-muted-navy);
}

.bento-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted-navy);
  opacity: 0.85;
}

/* Soft Glass Panel */
.soft-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-medium);
  padding: 32px;
  transition: all 0.3s ease;
}

.soft-glass:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
  margin: 60px 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-muted-navy);
}

.section-header p {
  font-size: 16px;
  color: var(--color-muted-navy);
  opacity: 0.8;
}

/* Content Blocks */
.content-block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin: 40px 0;
  flex-wrap: wrap;
}

.content-block.reverse {
  flex-direction: row-reverse;
}

.content-block-text {
  flex: 1;
  min-width: 280px;
}

.content-block-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-muted-navy);
}

.content-block-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--color-muted-navy);
}

.content-block-text ul {
  list-style: none;
  margin: 16px 0;
}

.content-block-text ul li {
  font-size: 14px;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--color-muted-navy);
}

.content-block-text ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-sage-green);
  font-weight: 600;
}

.content-block-image {
  flex: 1;
  min-width: 280px;
}

.content-block-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Product Cards */
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.product-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

.product-card-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-muted-navy);
}

.product-card-labels {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.label {
  background: var(--color-oat-beige);
  color: var(--color-muted-navy);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.label.accent {
  background: var(--color-mist-blue);
  color: var(--color-muted-navy);
}

.product-card-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--color-muted-navy);
  opacity: 0.85;
}

.composition-list {
  background: var(--color-oat-beige);
  padding: 12px 16px;
  border-radius: var(--radius-small);
  margin: 12px 0;
}

.composition-list p {
  font-size: 13px;
  margin: 0;
}

.details-link {
  display: inline-block;
  color: var(--color-sage-green);
  font-weight: 500;
  font-size: 14px;
  margin-top: 12px;
  border-bottom: 1px solid var(--color-sage-green);
  transition: all 0.3s ease;
}

.details-link:hover {
  color: var(--color-muted-navy);
  border-bottom-color: var(--color-muted-navy);
}

/* Forms */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-muted-navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-fog-grey);
  border-radius: var(--radius-small);
  font-family: inherit;
  font-size: 14px;
  color: var(--color-muted-navy);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-sage-green);
  box-shadow: 0 0 0 3px rgba(168, 184, 156, 0.1);
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-group.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-size: 13px;
  cursor: pointer;
  flex: 1;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-sage-green);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-small);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  background: var(--color-muted-navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: var(--color-fog-grey);
  color: var(--color-muted-navy);
}

.btn-secondary:hover {
  background: var(--color-muted-navy);
  color: var(--color-white);
}

/* Cookie Banner */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-fog-grey);
  padding: 24px 20px;
  z-index: 1000;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  display: none;
}

#cookieBanner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  font-size: 13px;
  color: var(--color-muted-navy);
  margin-bottom: 16px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--color-sage-green);
  font-weight: 500;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--color-sage-green);
  color: var(--color-white);
}

.cookie-btn-reject {
  background: var(--color-fog-grey);
  color: var(--color-muted-navy);
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* CTA Buttons */
.cta-section {
  background: var(--color-mist-blue);
  padding: 48px;
  border-radius: var(--radius-large);
  text-align: center;
  margin: 60px 0;
}

.cta-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-muted-navy);
}

.cta-section p {
  font-size: 15px;
  color: var(--color-muted-navy);
  margin-bottom: 24px;
  opacity: 0.85;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 16px;
  }

  .hero {
    height: 350px;
    margin-bottom: 40px;
  }

  .hero-content {
    padding: 32px 24px;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bento-item.large-width {
    grid-column: span 1;
  }

  .bento-item.large-height {
    grid-row: span 1;
  }

  .content-block {
    gap: 20px;
  }

  .content-block-text,
  .content-block-image {
    min-width: 100%;
  }

  .content-block.reverse {
    flex-direction: column-reverse;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .cta-section {
    padding: 32px 24px;
  }

  .cta-section h2 {
    font-size: 20px;
  }

  .product-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 24px 16px;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .bento-item {
    padding: 20px;
  }

  section {
    margin: 40px 0;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .product-card-content {
    padding: 16px;
  }

  .cta-section {
    padding: 24px 16px;
  }
}
