* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f4ef;
  --ink: #1f2a26;
  --muted: #5b6b63;
  --accent: #2f6f5f;
  --accent-dark: #244f44;
  --sand: #e6dfd2;
  --sky: #d9e8e3;
  --stone: #efe9e1;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-header {
  padding: 20px 6vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 220px;
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 48px 6vw;
  background: #fff;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section.tight {
  padding-top: 28px;
  padding-bottom: 28px;
}

.split-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero {
  background: var(--sky);
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 24, 0.4);
}

.hero-bg .panel-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.button:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
}

.inline-cta {
  font-weight: 600;
}

.image-frame {
  background: var(--sand);
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.image-frame.tall {
  min-height: 360px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--stone);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .image-frame {
  min-height: 180px;
  border-radius: 14px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: #fff;
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c9d2cd;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.lead-form:not(.ready) .lockable {
  opacity: 0.6;
}

.lead-form:not(.ready) .lockable input,
.lead-form:not(.ready) .lockable textarea {
  pointer-events: none;
}

.cta-sticky {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 8;
}

.footer {
  padding: 40px 6vw 60px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  font-size: 0.88rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--sky);
}

.page-hero .image-frame {
  min-height: 300px;
}

.legal-block {
  background: var(--stone);
  padding: 24px;
  border-radius: 18px;
}

@media (max-width: 960px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .site-header {
    flex-direction: column;
  }

  .cta-sticky {
    right: 16px;
    bottom: 16px;
  }
}
