* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f3f0;
  --text: #1f1f1f;
  --muted: #5a5653;
  --accent: #d45a3f;
  --accent-dark: #a5422f;
  --panel: #ffffff;
  --shadow: 0 22px 45px rgba(32, 20, 14, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 32px 0 80px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 0 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 0;
}

.split-section.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  background: var(--panel);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--muted);
}

.panel {
  background: var(--panel);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--panel);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #d6d1cc;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  padding: 18px;
  border-radius: 18px;
  background: #1f1f1f;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  border-top: 1px solid #ded7d1;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: var(--panel);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.split-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: #f1e9e5;
  border-radius: 18px;
  padding: 14px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .split-section {
    flex-direction: row;
    align-items: center;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .split-content,
  .split-media,
  .split-aside {
    flex: 1;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 18px);
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
