* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c2a25;
  --muted: #4c5a54;
  --accent: #1f6f5c;
  --accent-soft: #e7f1ed;
  --sand: #f4f1ea;
  --stone: #eef1ee;
  --shadow: 0 16px 40px rgba(22, 36, 30, 0.12);
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fbfbf9;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  background: var(--stone);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #dfe4e1;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h2 {
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand p {
  font-size: 14px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(28, 42, 37, 0.04);
}

.ad-note {
  font-size: 13px;
  color: #6a5a00;
  background: #fff7d6;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #f4e3a1;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 8vw;
  position: relative;
}

.section.compact {
  padding: 40px 8vw;
}

.section.alt {
  background: var(--sand);
}

.section.deep {
  background: var(--accent-soft);
}

.section.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section-title {
  font-size: 36px;
  margin-bottom: 16px;
  max-width: 620px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dfe7e3;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions.spaced {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dfe4e1;
  font-size: 14px;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-size: 14px;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd6d0;
  font-size: 15px;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: 540px;
}

.footer {
  padding: 40px 8vw;
  background: #111f1a;
  color: #f4f1ea;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  box-shadow: var(--shadow);
}

.section-bg {
  position: relative;
  overflow: hidden;
  background: #e3ebe6;
}

.section-bg img.section-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

.section-bg .section-content {
  position: relative;
  z-index: 1;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tiny {
  font-size: 13px;
  color: var(--muted);
}

.two-col {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 240px;
}

.image-frame {
  background: #dfe7e3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex: 0 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
