:root {
  color-scheme: light;
  --bg: #f7f4f1;
  --bg-alt: #ffffff;
  --bg-contrast: #e9efe9;
  --text: #1f1f1f;
  --muted: #4a4a4a;
  --accent: #2f6f5f;
  --accent-dark: #1f4d41;
  --soft: #f0e7de;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: var(--bg-alt);
  padding: 20px 0;
  border-bottom: 1px solid #e2e2e2;
}

.topbar-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  background: var(--bg-alt);
  padding: 48px 0 60px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  padding: 0 0 12px;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 16px;
}

.section-sub {
  color: var(--muted);
  margin: 0 0 20px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-contrast);
  font-size: 0.8rem;
}

.image-frame {
  background: #d8d8d8;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame.tall {
  height: 320px;
}

.image-frame.square {
  height: 260px;
}

.image-frame.short {
  height: 200px;
}

.image-frame img {
  height: 100%;
}

.stagger {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.highlight {
  background: var(--bg-contrast);
  padding: 24px;
  border-radius: 20px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 12px;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.quote {
  font-style: italic;
  margin: 0;
}

.form-section {
  background: var(--bg-alt);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d0d0;
  font-family: inherit;
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(47, 111, 95, 0.3);
  border-color: var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.banner {
  background: var(--accent-dark);
  color: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  background: #101814;
  color: #f4f4f4;
  padding: 36px 0;
  margin-top: 60px;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.footer small {
  color: #cfcfcf;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: #1f1f1f;
  color: #f4f4f4;
  padding: 16px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.accept {
  background: #f0f0f0;
  color: #1f1f1f;
}

.cookie-btn.reject {
  background: transparent;
  color: #f0f0f0;
  border: 1px solid #f0f0f0;
}

.notice {
  background: var(--soft);
  padding: 18px;
  border-radius: 16px;
}

@media (min-width: 860px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .stagger {
    flex-direction: row;
  }

  .stagger > div {
    flex: 1;
  }
}
