* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c2a27;
  --muted: #50645f;
  --accent: #2d6f5a;
  --accent-dark: #1e4b3d;
  --sand: #f2efe9;
  --mist: #f7faf8;
  --sun: #f0d37c;
  --line: #d8e0dc;
  --card: #ffffff;
}
[hidden] {
  display: none !important;
}
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.sidebar {
  background: var(--sand);
  padding: 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--accent);
}

.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.cta-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 24px;
}

.section {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(28, 42, 39, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
  border: 1px solid var(--line);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mist);
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.service-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.service-option input {
  accent-color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(28, 42, 39, 0.2);
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 24px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(28, 42, 39, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight {
  background: var(--sun);
  padding: 2px 6px;
  border-radius: 6px;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tagline {
  font-size: 1.3rem;
  font-weight: 600;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.notice {
  background: #fff6df;
  border: 1px solid #ecd89f;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
}

@media (min-width: 900px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }

  .main {
    padding: 40px;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero .hero-content {
    flex: 1.1;
  }

  .hero-visual {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: 220px;
  }

  .section-grid {
    flex-direction: row;
  }

  .image-row {
    flex-direction: row;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }

  .footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
