@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&family=EB+Garamond:wght@400;600;700&display=swap');

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

:root {
  --accent-teal: #00695C;
  --neutral-light: #FAFAF8;
  --neutral-mid: #F5F5F3;
  --neutral-dark: #3A3A38;
  --neutral-black: #1A1A18;
  --accent-light: #E0F2F1;
  --border-radius: 12px;
  --transition-smooth: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--neutral-light);
}

h1 {
  font-family: 'EB Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--neutral-black);
  margin-bottom: 1.5rem;
}

h2 {
  font-family: 'EB Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--neutral-black);
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}

h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--accent-teal);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: var(--accent-teal);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--neutral-black);
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--neutral-light);
  border-bottom: 1px solid rgba(0, 105, 92, 0.1);
  z-index: 1000;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'EB Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-teal);
  transition: var(--transition-smooth);
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
}

.logo:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--neutral-dark);
  transition: var(--transition-smooth);
  position: relative;
  padding-bottom: 0.25rem;
}

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

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

nav a:hover {
  text-decoration: none;
  color: var(--accent-teal);
}

body {
  padding-top: 70px;
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

section {
  margin-bottom: 5rem;
}

.hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, rgba(0, 105, 92, 0.2) 0%, rgba(224, 242, 241, 0.3) 100%);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 5rem;
  margin-top: -4rem;
  margin-left: -2rem;
  margin-right: -2rem;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  margin-bottom: 0.5rem;
}

.hero-content p {
  color: var(--neutral-dark);
  font-size: 0.95rem;
}

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

.section-content.reverse {
  direction: rtl;
}

.section-content.reverse > * {
  direction: ltr;
}

.section-text {
  padding: 1rem 0;
}

.section-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 105, 92, 0.15);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.section-image:hover img {
  transform: scale(1.02);
}

.content-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 105, 92, 0.08);
}

.disclaimer-box {
  background: var(--accent-light);
  border-left: 4px solid var(--accent-teal);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  font-size: 0.9rem;
  color: var(--neutral-dark);
}

.cta-button {
  display: inline-block;
  background: var(--accent-teal);
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition-smooth);
  border: 2px solid var(--accent-teal);
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
}

.cta-button:hover {
  background: var(--neutral-black);
  border-color: var(--neutral-black);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: transparent;
  color: var(--accent-teal);
  border: 2px solid var(--accent-teal);
}

.cta-button.secondary:hover {
  background: var(--accent-teal);
  color: white;
}

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

.product-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 105, 92, 0.1);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 105, 92, 0.15);
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  margin-top: 0;
}

.product-description {
  font-size: 0.9rem;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-content .cta-button {
  display: block;
  text-align: center;
  margin-top: 1rem;
}

footer {
  background: var(--neutral-black);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 2rem;
  margin-top: 5rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.footer-section h4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-light);
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

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

.footer-section p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

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

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

.cookie-message {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.cookie-button {
  padding: 0.65rem 1.25rem;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-smooth);
  font-family: 'Rubik', sans-serif;
  white-space: nowrap;
}

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

.cookie-button.accept:hover {
  background: var(--accent-light);
  color: var(--neutral-black);
}

.cookie-button.close {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-button.close:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  nav {
    gap: 1rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  nav a {
    font-size: 0.85rem;
  }

  main {
    padding: 2rem 1rem;
  }

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

  .section-content.reverse {
    direction: ltr;
  }

  .hero {
    height: 300px;
  }

  .hero-content {
    max-width: 100%;
  }

  .content-wrapper {
    padding: 1.5rem;
  }

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

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

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

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