* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b262c;
  --muted: #4c5966;
  --accent: #1f6f8b;
  --accent-soft: #d8eef4;
  --sand: #f5efe6;
  --peach: #f5d9c7;
  --sage: #dce8dd;
  --dark: #0f1a20;
  --card: #ffffff;
  --border: #d7dde2;
  --shadow: 0 18px 40px rgba(15, 26, 32, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #f7f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: var(--dark);
  color: #f6f7f9;
  padding: 28px 22px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.sidebar p {
  font-size: 0.95rem;
  color: #c7d3dd;
  margin-bottom: 20px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 500;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.sidebar .aside-cta {
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-weight: 600;
}

main {
  flex: 1;
}

.section {
  padding: 52px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section--soft {
  background: var(--sand);
}

.section--sage {
  background: var(--sage);
}

.section--accent {
  background: var(--accent-soft);
}

.section--dark {
  background: var(--dark);
  color: #f5f7f9;
}

.section h1,
.section h2,
.section h3 {
  line-height: 1.2;
}

.section h1 {
  font-size: 2.4rem;
}

.section h2 {
  font-size: 1.7rem;
}

.section h3 {
  font-size: 1.2rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--card);
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.button--primary {
  background: var(--accent);
  color: #fff;
}

.button--ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.button--light {
  background: #fff;
  color: var(--dark);
}

.media-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split img {
  border-radius: 16px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 54px;
  height: 54px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  background: var(--card);
  padding: 18px;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
}

.quote-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service .price {
  font-weight: 700;
  color: var(--accent);
}

.selection-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.selection-item {
  background: var(--card);
  padding: 16px;
  border-radius: 14px;
  border: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-card {
  background: var(--card);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card {
  padding: 18px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border);
}

.footer {
  padding: 28px 22px;
  background: #0d151b;
  color: #dfe6ec;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #dfe6ec;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 8;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f2f4f6;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

@media (min-width: 860px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
  }

  .section {
    padding: 70px 64px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .media-row {
    flex-direction: row;
  }

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .timeline {
    flex-direction: row;
  }

  .timeline-item {
    flex: 1;
  }

  .quote-row {
    flex-direction: row;
  }

  .quote {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service {
    flex: 1 1 220px;
  }

  .selection-grid {
    flex-direction: row;
  }

  .selection-item {
    flex: 1;
  }

  .info-row {
    flex-direction: row;
  }
}
