* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2a23;
  --muted: #4f5b55;
  --accent: #1f6f5c;
  --accent-dark: #174e41;
  --sand: #f3f0e8;
  --mist: #eef3ef;
  --sun: #d9cba9;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfcfa;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-nav {
  padding: 18px 0;
  border-bottom: 1px solid #e3e7e1;
  background: #ffffff;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--accent-dark);
  background: var(--mist);
  padding: 6px 10px;
  border-radius: 18px;
}

.section {
  padding: 64px 0;
}

.section.light {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  padding-top: 72px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 22px;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.image-frame {
  background-color: var(--sun);
  padding: 12px;
  border-radius: 24px;
}

.image-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
}

.inline-image {
  background-color: var(--sun);
  padding: 10px;
  border-radius: 20px;
}

.inline-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.bg-panel {
  background-color: #dfe6da;
  background-image: url("https://images.unsplash.com/photo-1426604966848-d7adac402bff?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 64px 0;
}

.bg-panel .panel-card {
  background: rgba(255, 255, 255, 0.92);
  padding: 32px;
  border-radius: 24px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e3e7e1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 180px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e3e7e1;
}

.testimonial {
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #ffffff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6cf;
  font-size: 1rem;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid #e3e7e1;
}

.footer {
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid #e3e7e1;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.disclaimer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #e3e7e1;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid var(--accent-dark);
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--accent-dark);
  color: #ffffff;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #e3e7e1;
  padding: 12px 0;
  z-index: 9;
}

.sticky-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 48px 0;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.small-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.small-image {
  background-color: var(--sun);
  padding: 10px;
  border-radius: 20px;
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .image-frame img {
    height: 280px;
  }

  .sticky-cta .container {
    justify-content: center;
  }
}
