* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #14251e;
  --subtle-ink: #30463c;
  --muted: #6a7d74;
  --mist: #eef3ef;
  --leaf: #2f6b4a;
  --sand: #f6f0e9;
  --sun: #f3c86b;
  --rose: #f7e6e2;
  --line: #d8e3dc;
  --shadow: 0 18px 50px rgba(18, 33, 28, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fbfcfb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 24px 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf);
  font-size: 14px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--subtle-ink);
}

.nav-list a {
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--mist);
}

.nav-list a:hover {
  background: var(--leaf);
  color: #ffffff;
}

.main {
  flex: 1;
}

.section {
  padding: 56px 22px;
}

.section--tint {
  background: var(--mist);
}

.section--sand {
  background: var(--sand);
}

.section--rose {
  background: var(--rose);
}

.section--wide {
  padding: 70px 22px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.card small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}

.hero-title {
  font-size: 32px;
  line-height: 1.1;
  margin: 0;
}

.lead {
  font-size: 18px;
  color: var(--subtle-ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: var(--leaf);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.btn-light {
  background: #ffffff;
  color: var(--leaf);
  border: 1px solid var(--leaf);
}

.inline-link {
  color: var(--leaf);
  text-decoration: underline;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  border-left: 3px solid var(--leaf);
  padding-left: 12px;
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--leaf);
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--sun);
  padding: 18px 20px;
  border-radius: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 12px;
}

.timeline-step span {
  font-weight: 700;
  color: var(--leaf);
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--sun);
  color: #2b1c00;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 20;
}

.footer {
  background: #0d1b16;
  color: #e8efe9;
  padding: 40px 22px;
}

.footer a {
  color: #e8efe9;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--leaf);
  color: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.banner {
  background: url("https://images.unsplash.com/photo-1456926631375-92c8ce872def?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  border-radius: 24px;
  padding: 44px 26px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 22, 0.55);
}

.banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  padding: 16px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    border-bottom: none;
    border-right: 1px solid var(--line);
    min-height: 100vh;
    position: sticky;
    top: 0;
    align-self: flex-start;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 70px 56px;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split > * {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-row .card {
    flex: 1 1 220px;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service {
    flex: 1 1 260px;
  }

  .gallery {
    flex-direction: row;
  }

  .gallery img {
    flex: 1 1 0;
  }
}
