* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4f1;
  --ink: #2c2a27;
  --muted: #6f675f;
  --accent: #b86b4b;
  --accent-soft: #e4c9bd;
  --card: #ffffff;
  --shadow: rgba(44, 42, 39, 0.08);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 16px;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  color: var(--ink);
}

.cta-primary,
.cta-secondary,
.cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 20px var(--shadow);
}

.cta-secondary {
  background: var(--accent-soft);
  color: var(--ink);
}

.cta-ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-ghost:hover {
  transform: translateY(-2px);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 56px 6vw;
}

.split-section.alt {
  background: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-content h1,
.split-content h2,
.split-content h3 {
  margin: 0;
  line-height: 1.2;
}

.split-content h1 {
  font-size: 36px;
}

.split-content h2 {
  font-size: 28px;
}

.split-content h3 {
  font-size: 20px;
}

.split-content p {
  margin: 0;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  width: fit-content;
}

.card-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--card);
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 10px 20px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card strong {
  font-size: 18px;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 24px var(--shadow);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 14px;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd2cb;
  font-size: 15px;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 30px var(--shadow);
  background: #fff;
}

.quote {
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px var(--shadow);
  font-weight: 600;
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #efe8e2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 30px var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-box {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 20px var(--shadow);
}

@media (min-width: 860px) {
  .split-section {
    padding: 80px 8vw;
  }

  .split {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-content h1 {
    font-size: 46px;
  }

  .split-content h2 {
    font-size: 34px;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row .form-field {
    flex: 1;
  }

  .card-group {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
  }
}
