* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --ink: #1f1f1f;
  --muted: #5e5e5e;
  --accent: #1b6b5c;
  --accent-dark: #12463d;
  --sand: #efe7dc;
  --sky: #e7f2f7;
  --stone: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: var(--stone);
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  color: var(--accent-dark);
}

.sidebar nav {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-link {
  font-size: 15px;
  color: var(--ink);
}

.nav-link:hover {
  color: var(--accent);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 28px 22px 80px;
}

.section {
  padding: 26px;
  background: var(--stone);
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.sand {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
}

.title {
  font-size: 28px;
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn:hover {
  transform: translateY(-2px);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: var(--stone);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.grid-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.7);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 15px;
  width: 100%;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 30px 22px 50px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 250px;
    min-height: 100vh;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: none;
  }

  .content {
    padding: 36px 40px 100px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .grid-row {
    flex-direction: row;
  }

  .grid-row > * {
    flex: 1;
  }
}
