* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1b1a1a;
  --muted: #5f5a58;
  --accent: #b0585a;
  --accent-dark: #7c3c3e;
  --bg: #f7f1ee;
  --bg-alt: #f0e2dc;
  --surface: #ffffff;
  --border: rgba(27, 26, 26, 0.12);
  --shadow: 0 20px 40px rgba(27, 26, 26, 0.12);
  --radius: 24px;
  --radius-sm: 12px;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 32px 0 80px;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 220px;
  height: 220px;
  background: var(--bg-alt);
  border-radius: 50%;
  transform: translate(40%, 40%);
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.asym-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  position: relative;
}

.asym-section.offset-left {
  transform: translateX(-12px);
}

.asym-section.offset-right {
  transform: translateX(12px);
}

.asym-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.asym-grid.two-col {
  flex-direction: column;
}

.highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-dark);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--accent-dark);
  font-size: 0.9rem;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 1.1rem;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.testimonial {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: border 0.3s ease, color 0.3s ease;
}

.pill.active {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.footer {
  background: #121212;
  color: #f6f2ef;
  padding: 40px 0;
}

.footer a {
  color: #f6f2ef;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 auto;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 8px 14px;
  cursor: pointer;
  background: var(--bg);
}

.cookie-actions button.accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-stack img:nth-child(2) {
  transform: translateX(12px);
}

.notice {
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
}

.table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--bg);
}

@media (min-width: 760px) {
  .split-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero-content {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .asym-grid.two-col {
    flex-direction: row;
  }

  .stacked-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 16px);
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid .field {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .card {
    flex: 1 1 calc(33% - 16px);
  }

  .asym-section.offset-left {
    transform: translateX(-28px);
  }

  .asym-section.offset-right {
    transform: translateX(28px);
  }
}
