* {
  box-sizing: border-box;
}

:root {
  --ink: #1c2630;
  --muted: #5b6b73;
  --accent: #2f7a64;
  --accent-strong: #215a4a;
  --paper: #f7f5f0;
  --mist: #e6eef0;
  --stone: #d9e0da;
  --sun: #f2e6c9;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: var(--paper);
}

.brand {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
}

.main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
}

.section-alt {
  background: var(--paper);
}

.section-mist {
  background: var(--mist);
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent-strong);
  border: 1px solid var(--accent-strong);
}

.button.ghost {
  background: var(--paper);
  color: var(--accent-strong);
  border: 1px solid var(--paper);
}

.button:hover,
.button:focus {
  background: var(--accent-strong);
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--accent-strong);
  color: #fff;
}

.inline-cta {
  font-weight: 600;
}

.image-frame {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.image-frame.tall img {
  height: 460px;
  width: 100%;
}

.image-frame.mid img {
  height: 320px;
  width: 100%;
}

.image-frame.small img {
  height: 220px;
  width: 100%;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 600;
  color: var(--accent-strong);
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sun);
  font-size: 0.8rem;
  color: var(--muted);
}

.form-panel {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.form-panel label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd7d5;
  font-size: 1rem;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row > div {
  flex: 1;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-strong);
}

.footer {
  padding: 36px 6vw;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal {
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  z-index: 10;
  display: none;
  gap: 12px;
  flex-direction: column;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  background: var(--mist);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.center {
  text-align: center;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
