* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a1f;
  background-color: #f7f5f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1a5a3a;
}

header {
  background-color: #f0ece3;
  padding: 22px 6vw;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-title {
  margin: 0;
  font-size: 26px;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  color: #4a5b4a;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section-inner {
  position: relative;
}

.section-alt {
  background-color: #ffffff;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefcf7;
}

.bg-care {
  background-image: url("https://images.unsplash.com/photo-1512087499053-023f060e2cea?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw1Mnx8Q3VpZGFkbyUyMGRpJUMzJUExcmlvJTIwZSUyMHNlcmVubyUyMHBhcmElMjBhbmltYWlzJTIwcXVlJTIwdml2ZW0lMjBjb25zaWdvfHB0fDB8MHx8fDE3ODI4OTUwMzZ8MA&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-care::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 34, 24, 0.55);
}

.bg-care .section-inner {
  position: relative;
}

.bg-quiet {
  background-image: url("https://images.unsplash.com/photo-1518717758536-85ae29035b6d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefcf7;
}

.bg-quiet::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 20, 0.6);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 29, 0.65);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-end;
}

.hero-copy {
  flex: 1 1 360px;
  max-width: 520px;
}

.hero-card {
  flex: 1 1 260px;
  background-color: rgba(248, 244, 235, 0.95);
  color: #1f2a1f;
  padding: 24px;
  border-radius: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #1a5a3a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
}

.btn-outline {
  background-color: transparent;
  border-color: #1a5a3a;
  color: #1a5a3a;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-box {
  flex: 1 1 320px;
  background-color: #f5efe6;
  padding: 28px;
  border-radius: 20px;
  margin-top: 24px;
}

.image-frame {
  flex: 1 1 320px;
  background-color: #dbe2d0;
  padding: 10px;
  border-radius: 20px;
}

.image-frame img {
  width: 100%;
  height: 360px;
  border-radius: 16px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
}

.card-image {
  background-color: #cdd6c3;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 180px;
}

.price-tag {
  font-weight: 700;
  color: #1a5a3a;
}

.highlight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: stretch;
}

.strip-block {
  flex: 1 1 240px;
  background-color: #e8efe1;
  padding: 22px;
  border-radius: 18px;
}

.quote {
  font-style: italic;
  background-color: #fff5e2;
  padding: 20px;
  border-radius: 16px;
}

.form-wrap {
  background-color: #ffffff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c3c7bd;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background-color: #1a5a3a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

footer {
  background-color: #1f2a1f;
  color: #f7f5f0;
  padding: 40px 6vw;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid a {
  color: #f7f5f0;
}

.footer-note {
  font-size: 13px;
  color: #d6d2c8;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subtle-link {
  text-decoration: none;
  font-weight: 600;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  background-color: #e7e0d6;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.page-hero {
  background-color: #e7ede0;
  padding: 50px 6vw;
}

.page-hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.wide-image {
  background-color: #d6ddcf;
  padding: 8px;
  border-radius: 18px;
  flex: 1 1 320px;
}

.wide-image img {
  width: 100%;
  height: 260px;
  border-radius: 14px;
}

.list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-plain li {
  margin-bottom: 10px;
}
