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

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: #fcf4ea;
  color: #243023;
  line-height: 1.7;
}

a {
  color: #305f32;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: #f6e9d4;
  border-bottom: 1px solid #e0cfb2;
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #243023;
}

.logo span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7b8769;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

nav a {
  font-size: 0.88rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

nav a:hover {
  border-color: #d0c0a3;
  background: #fbf1e2;
}

main {
  max-width: 1140px;
  margin: 2.2rem auto 3.2rem;
  padding: 0 1.5rem;
}

.hero-garden {
  border-radius: 2rem;
  border: 1px solid #e1d1b7;
  padding: 1.8rem 1.8rem 2rem;
  background: linear-gradient(135deg, #f8ecdd, #fdf7ef);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.4rem;
}

.hero-garden-text h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-garden-text p {
  margin-bottom: 0.7rem;
}

.hero-tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7b8769;
  margin-bottom: 0.5rem;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d0c0a3;
  font-size: 0.78rem;
  color: #5d6a49;
  margin-bottom: 0.9rem;
  background: #fbf0e0;
}

.hero-garden-visual {
  position: relative;
  padding-left: 0.5rem;
}

.hero-garden-visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #305f32, #a5bf80);
}

.hero-garden-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.6rem;
  border: 1px solid #e1d1b7;
}

.hero-note {
  font-size: 0.78rem;
  color: #7b8769;
  margin-top: 0.55rem;
}

.section {
  margin-bottom: 2.8rem;
}

.section-header-with-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.section-header-with-icon img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #dcc8aa;
  padding: 4px;
  background: #fdf7ef;
}

.section h1 {
  font-size: 2rem;
}

.section h2 {
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}

.section h3 {
  font-size: 1.12rem;
  margin: 0.8rem 0 0.4rem;
}

.section p {
  margin-bottom: 0.6rem;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.card-soft {
  background: #faf0e1;
  border-radius: 1.2rem;
  border: 1px solid #e3d3ba;
  padding: 1.1rem 1.2rem;
}

.card-soft h3 {
  margin-bottom: 0.5rem;
}

ul, ol {
  margin-left: 1.25rem;
  margin-bottom: 0.8rem;
}

.text-with-chip-image {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.6fr);
  gap: 1.6rem;
  align-items: flex-start;
  margin-top: 0.3rem;
}

.text-with-chip-image .chip-image {
  background: #f8eedf;
  border-radius: 1.4rem;
  border: 1px solid #e1d1b7;
  padding: 0.9rem;
}

.text-with-chip-image .chip-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

.text-with-chip-image .chip-caption {
  font-size: 0.8rem;
  color: #7b8769;
  margin-top: 0.4rem;
}

form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input, textarea, select {
  padding: 0.55rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid #d9ccb9;
  font: inherit;
  background: #fff;
}

button {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #305f32;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}

button:hover {
  background: #244723;
}

footer {
  background: #243023;
  color: #f5eee3;
  padding: 1.7rem 1.5rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-inner a {
  color: #e3d6c2;
}

.footer-inner a:hover {
  text-decoration: underline;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(36, 48, 35, 0.98);
  color: #f5eee3;
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
}

.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: #e3d6c2;
  text-decoration: underline;
}

.cookie-banner button {
  border-radius: 999px;
  border: none;
  padding: 0.45rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background: #305f32;
  color: #fff;
  white-space: nowrap;
  font-size: 0.86rem;
}

.cookie-banner button:hover {
  background: #244723;
}

@media (max-width: 900px) {
  .hero-garden {
    grid-template-columns: 1fr;
  }
  .text-with-chip-image {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul {
    justify-content: flex-start;
  }
  .cookie-banner-inner {
    align-items: flex-start;
  }
}
