:root {
  color-scheme: light;
  --ink: #1c1c1c;
  --muted: #5c646b;
  --brand: #0f4d2f;
  --brand-soft: #e7f1ea;
  --accent: #c97a2b;
  --bg: #f8f6f2;
  --line: #e2ded6;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(23, 23, 23, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
}

.nav a.active,
.nav a:hover {
  color: var(--ink);
}

.sidebar-cta {
  margin-top: auto;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.alt {
  background: var(--white);
}

.section.dark {
  background: #0b2e1f;
  color: #f4f2ed;
}

.hero {
  background: linear-gradient(120deg, #f8f1e6 0%, #ffffff 80%);
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 280px;
  box-shadow: var(--shadow);
  border-radius: 18px;
  overflow: hidden;
}

.section-title {
  font-size: 2.2rem;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-weight: 600;
  border: 1px solid var(--brand);
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

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

.split > div {
  flex: 1 1 280px;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  border-radius: 12px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 2px solid var(--line);
  padding-left: 20px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.layered {
  background: var(--brand-soft);
  overflow: hidden;
}

.layered .shape {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(15, 77, 47, 0.15);
  border-radius: 40px;
  top: 20px;
  right: 8vw;
  transform: rotate(18deg);
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  font-style: italic;
}

.form-wrap {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--brand);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta a {
  color: var(--white);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 340px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

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

.footer {
  padding: 36px 8vw 48px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }

  .sidebar-cta {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 48px 6vw;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .sticky-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 12px;
  }
}
