:root {
  --bg-light: #cae2d4;
  --bg-dark: #163550;
  --text-dark: #2f4a38;
  --text-muted: #74817a;
  --text-light: #ffffff;
  --accent-yellow: #f3c244;
  --max-width: 1200px;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

img {
  max-width: 100%;
  display: block;
}

.page {
  width: 100%;
  min-height: 100vh;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.top-bar {
  background-color: var(--bg-dark);
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  margin-top: 32px;
  border-radius: 0 0 24px 24px;
}

.top-bar__headline {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.top-bar__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.language-switcher {
  display: flex;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: 8px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-family: 'Manrope', Arial, sans-serif;
}

.lang-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.lang-btn.active {
  background-color: rgba(255, 255, 255, 0.25);
  color: var(--text-light);
}

.social-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero {
  text-align: center;
  padding: 40px 0 16px;
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 0;
  font-weight: 700;
}

.hero__subtitle {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  font-weight: 600;
  color: var(--text-muted);
}

.hero__description {
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 56ch;
}

.feature {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.feature:nth-of-type(even) {
  flex-direction: row-reverse;
}

.feature__copy,
.feature__media {
  flex: 1 1 0;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border-radius: 32px;
}

.feature__copy h3 {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
}

.feature__copy p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.highlight-yellow {
  color: var(--accent-yellow);
  font-weight: 600;
}

.feature__copy {
  background-color: var(--bg-dark);
  color: var(--text-light);
  box-shadow: 0 24px 48px rgba(22, 53, 80, 0.25);
}

.feature__media {
  background-color: #8bbca6;
  align-items: center;
  box-shadow: 0 24px 48px rgba(22, 53, 80, 0.15);
}

.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature.feature--sustainability {
  flex-direction: column !important;
}

.feature--sustainability .feature__media {
  order: 1;
}

.feature--sustainability .feature__copy {
  order: 2;
}

.values {
  background-color: var(--bg-dark);
  padding: 48px;
  border-radius: 24px;
}

.values img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.footer {
  background: var(--bg-dark) url("assets/images/footer.png") center/cover no-repeat;
  color: rgba(255, 255, 255, 0.85);
  padding: 32px;
  border-radius: 24px 24px 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .feature {
    flex-direction: column;
  }

  .feature__media,
  .feature__copy {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 0 16px 60px;
    gap: 48px;
  }

  .top-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .top-bar__social {
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature {
    flex-direction: column;
  }

  .feature:nth-of-type(even) {
    flex-direction: column;
  }

  .feature__media {
    order: 1;
  }

  .feature__copy {
    order: 2;
  }

  .hero__description {
    font-size: 0.95rem;
  }

  .values {
    padding: 32px;
  }
}

