* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1c1e;
  --muted: #5c6166;
  --accent: #b24b2a;
  --accent-dark: #8a3a21;
  --paper: #f7f2ee;
  --stone: #ece6e1;
  --line: #ddd4ce;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 240px;
  background: var(--paper);
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.brand span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.04em;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.sidebar nav a {
  font-size: 15px;
  color: var(--muted);
}

.sidebar nav a:hover {
  color: var(--accent);
}

.sidebar .side-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.content {
  flex: 1;
  padding: 32px 40px 80px;
}

.section {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.section:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 30px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 640px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.hero {
  background: var(--stone);
  border-radius: 24px;
  padding: 32px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero .cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-size: 20px;
  color: var(--accent);
  font-weight: 600;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 16px;
}

.list li {
  margin-left: 16px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: #fff;
}

.media-block {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.media-block img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.media-block .media-content {
  padding: 20px;
}

.testimonial {
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  flex: 1 1 240px;
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea,
button {
  font-family: inherit;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
}

button {
  border: none;
  cursor: pointer;
}

.service-choice {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-choice label {
  flex: 1 1 200px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: var(--paper);
}

.service-choice input {
  margin-right: 8px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  z-index: 30;
  max-width: 360px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.notice {
  background: var(--stone);
  border-radius: 18px;
  padding: 18px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .content {
    padding: 28px 20px 80px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 70px;
    max-width: none;
  }
}
