* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f4f2ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 240px;
  padding: 32px 24px;
  background: #f9f6f1;
  border-right: 1px solid #e2ded6;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #57524a;
}

.sidebar .side-note {
  font-size: 13px;
  color: #605a52;
}

.sidebar .side-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 24px;
  background: #171717;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.4px;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #fff;
  color: #171717;
  border: 1px solid #d0cbc2;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f4f2ef;
  border-bottom: 1px solid #e2ded6;
}

.topbar .meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #6f6860;
}

main {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.section {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.transparent {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hero {
  background: #0f0f10 url("hero.svg") right center/contain no-repeat;
  color: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0;
}

.hero p {
  max-width: 520px;
  margin: 0;
  font-size: 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split .split-text {
  flex: 1 1 300px;
}

.split .split-media {
  flex: 1 1 260px;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #f6f3ef;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-size: 20px;
  font-weight: 700;
}

.layered {
  background: #f6f0ea;
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  pointer-events: none;
}

.quote {
  font-style: italic;
  padding: 16px 20px;
  border-left: 3px solid #232323;
  background: #f9f6f1;
}

.cta-inline {
  color: #0f4b8f;
  font-weight: 600;
  text-decoration: underline;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4cec6;
  font-size: 14px;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row > * {
  flex: 1 1 200px;
}

.form-status {
  font-size: 13px;
  color: #2d4f35;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.footer {
  padding: 24px 32px 36px;
  background: #f9f6f1;
  border-top: 1px solid #e2ded6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.highlight-bar {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #7a7268;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0ebe4;
}

.dense {
  padding: 20px;
}

.image-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-strip img {
  flex: 1 1 140px;
  border-radius: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 18px;
  background: #f6f3ef;
}

.service-item h3 {
  margin: 0;
}

.service-item span {
  font-weight: 700;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    border-right: none;
    border-bottom: 1px solid #e2ded6;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar .side-cta {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  main {
    padding: 24px;
  }

  .topbar {
    padding: 12px 24px;
  }

  .hero {
    background-position: center bottom;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
