:root {
  --bg: #f7f5f2;
  --text: #1f1f1f;
  --muted: #5c5c5c;
  --accent: #f05d3b;
  --accent-dark: #d84b2a;
  --surface: #ffffff;
  --border: #e3dfd8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 6vw;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-mark {
  font-weight: 700;
  font-size: 1.2rem;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.site-nav a {
  font-weight: 500;
  color: var(--muted);
}

.site-nav a.link-cta {
  color: var(--accent);
  font-weight: 600;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 56px 6vw;
  background: var(--bg);
}

.split.reverse {
  background: #f0ebe6;
}

.split-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-text h1,
.split-text h2,
.split-text h3 {
  margin: 0;
  line-height: 1.2;
}

.split-text h1 {
  font-size: 2.4rem;
}

.split-text h2 {
  font-size: 2rem;
}

.split-media {
  display: flex;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin: 0;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease, border 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-accent {
  background: #111;
  border-color: #111;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist li {
  padding-left: 26px;
  position: relative;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  padding: 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
}

.service-form label {
  font-weight: 600;
}

.service-form input,
.service-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.note {
  color: var(--muted);
}

.contact-box {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 6vw;
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

@media (min-width: 900px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-text,
  .split-media {
    flex: 1;
  }
}
