@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: local("Inter"), local("Inter Regular");
}

:root {
  --ink: #1c1f1e;
  --muted: #5b6a62;
  --accent: #2f7b5c;
  --accent-soft: #e2f1ea;
  --sand: #f6f4f0;
  --stone: #eff1ee;
  --rose: #f3e7e1;
  --sky: #e8f0f7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: var(--sand);
  padding: 24px 20px 32px;
  border-bottom: 1px solid #e6e1da;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand img {
  width: 36px;
  height: 36px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 20px;
}

.nav a {
  font-size: 0.95rem;
  color: var(--ink);
}

.content {
  display: flex;
  flex-direction: column;
}

.section {
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section--layer {
  background: var(--stone);
}

.section--contrast {
  background: var(--sky);
}

.section--warm {
  background: var(--rose);
}

.section-title {
  font-size: 1.6rem;
  margin: 0;
}

.lede {
  font-size: 1.05rem;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7e3;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}

.button.outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.floating-note {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.form-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e3e8e1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-block label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-block input,
.form-block select,
.form-block textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd8d2;
  font-size: 1rem;
  font-family: inherit;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mini-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  background: var(--sand);
  padding: 32px 20px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #d9dfd8;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .button {
  padding: 10px 14px;
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .site-shell {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    border-bottom: none;
    border-right: 1px solid #e6e1da;
    min-height: 100vh;
    position: relative;
  }

  .content {
    flex: 1;
  }

  .section {
    padding: 64px 56px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .section-grid {
    flex-direction: row;
  }

  .section-grid > div {
    flex: 1;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .mini-gallery {
    flex-direction: row;
  }
}
