* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1f1b;
  --muted: #5b6a60;
  --accent: #2f7b57;
  --accent-dark: #1f5e43;
  --surface: #f5f6f2;
  --surface-strong: #e6e9e2;
  --highlight: #f0f7f2;
  --warm: #f7f2ea;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  padding: 2.5rem 6vw 1.5rem;
  background: var(--surface);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.9rem;
  background: #fff3d6;
  color: #6a4b1f;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 600;
}

.nav-links a:hover {
  text-decoration: underline;
}

.hero {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 3rem 6vw 4rem;
  position: relative;
  background: var(--surface);
}

.hero-media {
  flex: 1 1 52%;
  min-width: 280px;
  position: relative;
  background-color: #c7d5cb;
  border-radius: 24px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-copy {
  flex: 1 1 38%;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn:hover,
.btn.secondary:hover {
  transform: translateY(-1px);
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0 6vw 5rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.split {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 45%;
  min-width: 260px;
}

.split .media {
  flex: 1 1 45%;
  min-width: 260px;
  background-color: #dce5de;
  border-radius: 20px;
  overflow: hidden;
}

.split .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offset {
  background: var(--highlight);
  padding: 2.5rem;
  border-radius: 24px;
  max-width: 880px;
}

.offset.right {
  margin-left: auto;
}

.offset.left {
  margin-right: auto;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 260px;
  background: var(--surface-strong);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-media {
  background-color: #d3dcd3;
  border-radius: 16px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.sticky-cta {
  position: sticky;
  top: 2rem;
  align-self: flex-start;
  background: var(--warm);
  padding: 1.5rem;
  border-radius: 20px;
  max-width: 260px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 24px;
}

.form-wrap {
  background: #ffffff;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid #e0e5e1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #c8d2cb;
  font-size: 1rem;
}

footer {
  background: var(--surface-strong);
  padding: 2.5rem 6vw 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #d6ddd6;
  padding: 1.2rem;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.page-heading {
  padding: 2.5rem 6vw 1.5rem;
  background: var(--surface);
}

.page-heading h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 860px;
}

.contact-block {
  background: var(--highlight);
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 620px;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

@media (max-width: 880px) {
  header,
  .hero,
  main,
  footer,
  .page-heading {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .sticky-cta {
    position: static;
    max-width: none;
  }
}
