* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1d21;
  --muted: #5e6671;
  --paper: #f6f3ee;
  --surface: #ffffff;
  --accent: #1f6f78;
  --accent-strong: #0f4f55;
  --highlight: #f2d9b1;
  --line: #d8d2c7;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.sidebar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--paper);
}

.main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 28px 24px 120px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  background: var(--surface);
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.section.alt {
  background: var(--highlight);
}

.section.dark {
  background: var(--ink);
  color: #f8f6f1;
}

.section.dark p,
.section.dark li,
.section.dark small {
  color: #f0ece4;
}

.section .split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 20px;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  text-align: center;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-strong);
  border-color: var(--accent-strong);
}

.btn.ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.inline-link {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: underline;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-strong);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 111, 120, 0.12);
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  color: var(--muted);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-hint {
  font-size: 12px;
  color: var(--muted);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px 40px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta a {
  padding: 12px 16px;
  background: var(--accent-strong);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.section-columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-columns .panel {
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-image {
  border-radius: 22px;
  overflow: hidden;
}

.note {
  padding: 16px;
  border-left: 4px solid var(--accent);
  background: rgba(31, 111, 120, 0.08);
  color: var(--ink);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.services-list .service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.muted {
  color: var(--muted);
}

@media (min-width: 900px) {
  .page {
    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 {
    flex-direction: column;
    align-items: flex-start;
  }

  .main {
    padding: 48px 40px 120px;
  }

  .section .split {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 220px;
  }

  .section-columns {
    flex-direction: row;
  }

  .section-columns .panel {
    flex: 1;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero > div {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > div {
    flex: 1;
  }

  .image-strip {
    flex-direction: row;
  }
}
