* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1a16;
  --muted: #6e625b;
  --accent: #b4572a;
  --accent-soft: #f3e7df;
  --surface: #fbf8f4;
  --surface-strong: #f0e6dc;
  --line: #e3d7cd;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: var(--surface-strong);
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 500;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom-color: var(--accent);
}

.nav .cta-link {
  color: var(--accent);
  font-weight: 600;
}

main {
  flex: 1;
  padding: 32px 20px 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

section {
  padding: 28px 24px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(42, 27, 18, 0.06);
}

.section-muted {
  background: var(--accent-soft);
}

.section-contrast {
  background: var(--ink);
  color: white;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero .hero-media {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 11, 8, 0.35), transparent);
}

.hero .hero-media img {
  border-radius: 0;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-strong);
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-item span {
  background: var(--accent);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.service-item strong {
  font-size: 1.1rem;
}

.price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: var(--ink);
  color: white;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.sticky-cta a {
  color: white;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.footer {
  background: var(--surface-strong);
  padding: 28px 24px;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  color: inherit;
  margin-right: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  font-weight: 600;
  cursor: pointer;
}

@media (min-width: 900px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 250px;
    border-bottom: none;
    border-right: 1px solid var(--line);
    min-height: 100vh;
  }

  main {
    padding: 40px 48px 80px;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero .hero-media img {
    height: 320px;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }
}
