* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1e242a;
  --muted: #5d6a75;
  --accent: #1c6f6a;
  --accent-dark: #124a46;
  --surface: #f6f4f1;
  --surface-strong: #e8e1d7;
  --highlight: #fff4d6;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
  background: #ffffff;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border-right: 1px solid #e1d8cc;
  width: 260px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.95rem;
}

.nav-list a {
  color: var(--muted);
}

.nav-list a:hover {
  color: var(--ink);
}

.sidebar-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 3.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section.alt {
  background: var(--surface);
}

.section.strong {
  background: var(--surface-strong);
}

.hero {
  background: linear-gradient(120deg, rgba(28, 111, 106, 0.15), rgba(255, 244, 214, 0.8)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=60")
      center/cover;
  color: var(--ink);
  min-height: 70vh;
  justify-content: flex-end;
}

.hero-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
}

.title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 12px 28px rgba(12, 20, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn.outline {
  background: transparent;
  color: var(--accent);
}

.btn.light {
  background: #ffffff;
  color: var(--accent-dark);
  border-color: #ffffff;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  background: var(--highlight);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.image-stack img {
  border-radius: 18px;
}

.quote {
  font-style: italic;
  color: var(--accent-dark);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.6rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e6e1db;
}

.service-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.process-row {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-index {
  background: var(--accent);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #d5d1ca;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 2.5rem 6vw;
  background: #141f22;
  color: #f5f4f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer a {
  color: #f5f4f2;
}

.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 20;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #ffffff;
  border: 1px solid #e0d6cb;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 30;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.muted {
  color: var(--muted);
}

@media (min-width: 860px) {
  .split-row {
    flex-direction: row;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split > * {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .process-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 220px;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 860px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e1d8cc;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-cta {
    right: 1rem;
  }
}
