:root {
  --ivory: #FDF7E6;
  --white: #FFFFFF;
  --green: #0D3A2B;

  --text-primary: #1E1E1E;
  --text-muted: #5F5F5F;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--ivory);
  color: var(--text-primary);
  line-height: 1.6;
}





h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

h1 {
  font-size: 3.4rem;
  line-height: 1.15;
}

h2 {
  font-size: 2.4rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.9rem;
}

h4 {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}


p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 20px auto 0;
  line-height: 1.65;
}





section {
  padding: 120px 20px;
  text-align: center;
}






a {
  text-decoration: none;
}

.btn-primary,
.btn-secondary {
  padding: 14px 30px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}


.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-secondary {
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
}

.btn-primary:hover,
.btn-secondary:hover {
  opacity: 0.85;
}



.hero {
  background: var(--ivory);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-sub {
  margin-top: 16px;
  font-size: 1.1rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.hero-image img {
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.hero-image img {
  background: #eee;
}


.hero-text h1 {
  max-width: 480px;
}

.hero-text p {
  margin-left: 0;
}


.our-way h3 {
  margin-bottom: 64px;
}

.principles {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.principle h4 {
  margin-bottom: 12px;
}

.principle p {
  font-size: 0.95rem;
}

.products {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

.product-card {
  background: var(--white);
  padding: 64px 48px;
  text-align: center;
}

.product-card img {
  filter: saturate(0.95);
}


.product-card h3 {
  margin-bottom: 12px;
}

.closing {
  background: var(--green);
  color: var(--white);
}

.closing p {
  color: rgba(255, 255, 255, 0.8);
}


@media (max-width: 900px) {
  section {
    padding: 80px 20px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-text {
    text-align: center;
  }

  .principles {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .products {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}


.hero {
  padding-top: 140px;
  padding-bottom: 140px;
}

.philosophy p {
  margin-top: 32px;
}

.our-way {
  padding-top: 140px;
  padding-bottom: 160px;
}

.products {
  padding-top: 160px;
  padding-bottom: 160px;
}

.closing {
  padding-top: 140px;
  padding-bottom: 140px;
}


.btn-primary,
.btn-secondary {
  padding: 14px 30px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.product-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
  filter: saturate(0.9);
}


@media (max-width: 600px) {
  .product-card img {
    max-width: 180px; /* smaller cap on phones */
    margin-bottom: 24px;
  }

  .hero-image img {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 420px) {
  .product-card img {
    max-width: 160px;
  }
}

@media (max-width: 600px) {
  .product-icon {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }
}

