* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a22;
  --muted: #5b6b5f;
  --accent: #2a6f5f;
  --soft: #e8f0ea;
  --sand: #f5f1ea;
  --sun: #f7d9a5;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: #1f554a;
}

header {
  padding: 28px 7vw 18px;
  border-bottom: 1px solid #e5ece7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.2rem;
}

.ad-label {
  background: var(--sun);
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 0.85rem;
  color: #5a4a2a;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
}

.hero {
  padding: 42px 7vw 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-panel {
  flex: 1 1 360px;
  min-width: 280px;
  position: relative;
}

.image-frame {
  background: #dae6dd;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-panel .image-frame {
  height: 420px;
}

.badge {
  align-self: flex-start;
  background: var(--soft);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn:hover,
.btn:focus {
  background: #1f554a;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--soft);
}

.section {
  padding: 48px 7vw;
}

.section.alt {
  background: var(--sand);
}

.section.sun {
  background: #fff3dc;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
  min-width: 260px;
}

.split .image-block {
  flex: 1 1 320px;
  min-width: 260px;
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.asym-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(16, 25, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.asym-card img {
  border-radius: 12px;
  height: 180px;
}

.offset {
  margin-top: -32px;
}

.price-tag {
  font-weight: 700;
  color: #1f554a;
}

.form-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-box {
  flex: 1 1 340px;
  min-width: 280px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(16, 25, 20, 0.08);
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd9d2;
  font-size: 0.95rem;
  width: 100%;
  font-family: inherit;
}

.inline-link {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(16, 25, 20, 0.12);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.85rem;
  color: var(--muted);
}

footer {
  padding: 36px 7vw 48px;
  background: #1a2420;
  color: #dbe7df;
}

footer a {
  color: #dbe7df;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.legal {
  font-size: 0.85rem;
  color: #b9c8be;
  max-width: 560px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  width: min(360px, 90vw);
  box-shadow: 0 14px 40px rgba(16, 25, 20, 0.2);
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 36px 7vw 16px;
}

.list {
  padding-left: 18px;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(16, 25, 20, 0.08);
}

@media (max-width: 860px) {
  .sticky-cta {
    position: static;
    margin: 0 7vw 24px;
  }

  .hero-panel .image-frame {
    height: 320px;
  }
}
