* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #5b5b5b;
  --paper: #f7f4ef;
  --accent: #b01e2f;
  --accent-dark: #7b1320;
  --soft: #ece6dd;
  --shadow: 0 18px 40px rgba(18, 18, 18, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  gap: 16px;
  background: rgba(251, 250, 248, 0.92);
  backdrop-filter: blur(6px);
}

.nav-logo {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  padding: 40px 8% 60px;
  background: linear-gradient(120deg, #f3ede3, #ffffff 55%);
}

.article {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.hero-eyebrow {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  box-shadow: none;
}

.section {
  padding: 48px 8%;
}

.section-muted {
  background: var(--paper);
}

.section-soft {
  background: var(--soft);
}

.section .article {
  gap: 22px;
}

.inline-image {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-image span {
  font-size: 0.85rem;
  color: var(--muted);
}

.pull-quote {
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

.data-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.data-card {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.data-card strong {
  font-size: 1.8rem;
}

.split-callout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-callout img {
  border-radius: 26px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
}

.testimonial {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  font-style: italic;
}

.form-wrap {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.92rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d3ccc1;
  font-size: 0.95rem;
  font-family: inherit;
}

.footer {
  padding: 32px 8%;
  background: #121212;
  color: #f5f1e9;
}

.footer a {
  color: #f5f1e9;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 6;
  padding: 12px 20px;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 10;
  display: none;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal {
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 760px) {
  .hero {
    padding: 70px 10% 90px;
  }

  .article {
    gap: 34px;
  }

  .data-row {
    flex-direction: row;
  }

  .service-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split-callout {
    flex-direction: row;
    align-items: stretch;
  }

  .split-callout > div {
    flex: 1;
  }

  .footer-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
