* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #20351f;
  background: #fbf6ed;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
}

p {
  line-height: 1.6;
}

.header {
  background: #fbf6ed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 6%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 50%;
}

.brand h1 {
  margin: 0;
  font-size: 34px;
}

.brand p {
  margin: 4px 0 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #3f642e;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #1f1f1f;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}

nav a:hover {
  color: #3f642e;
}

button,
.btn {
  background: #27451f;
  color: white;
  border: none;
  padding: 13px 22px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.hero {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.62), rgba(0,0,0,0.15)),
    url("images/fleurs-ail.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  padding: 7%;
}

.hero-content {
  max-width: 700px;
}

.hero h2 {
  font-size: 78px;
  margin: 0;
}

.slogan {
  font-family: cursive;
  font-size: 42px;
  margin: 8px 0 20px;
}

.hero p {
  font-size: 22px;
}

.section {
  padding: 70px 7%;
}

.intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 45px;
  align-items: center;
}

.small-title {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #3f642e;
  font-weight: bold;
}

.center {
  text-align: center;
}

.logo-box {
  text-align: center;
}

.logo-box img {
  max-width: 310px;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.products {
  background: #fffaf2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 35px;
}

.product-card {
  background: white;
  border: 1px solid #e1d4c0;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
}

.product-card h3 {
  font-size: 25px;
  padding: 0 18px;
}

.product-card p {
  padding: 0 22px;
}

.product-card span {
  display: inline-block;
  margin: 15px 0 25px;
  background: #e8eadb;
  color: #27451f;
  padding: 10px 15px;
  border-radius: 20px;
  font-weight: bold;
}

.method {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #27451f;
  color: white;
}

.method-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.method-text {
  padding: 70px 7%;
}

.method .small-title {
  color: #dfcf99;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  background: #eee1cc;
}

form {
  background: #20351f;
  padding: 30px;
  border-radius: 12px;
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 5px;
  font-family: Arial, Helvetica, sans-serif;
}

textarea {
  min-height: 140px;
}

form button {
  background: #e3cda7;
  color: #20351f;
}

footer {
  background: #342518;
  color: white;
  text-align: center;
  padding: 22px;
}

@media (max-width: 900px) {
  .header {
    display: block;
    text-align: center;
  }

  .brand {
    justify-content: center;
  }

  nav {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
  }

  .hero h2 {
    font-size: 48px;
  }

  .slogan {
    font-size: 32px;
  }

  .intro,
  .product-grid,
  .method,
  .contact {
    grid-template-columns: 1fr;
  }

  .method-image img {
    min-height: 320px;
  }
}
