* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5d5d5d;
  --accent: #c74b1e;
  --accent-strong: #a93d17;
  --cream: #f7f2ea;
  --paper: #ffffff;
  --stone: #ece6dc;
  --shadow: 0 20px 50px rgba(26, 26, 26, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid #e6e0d6;
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.main {
  padding: 36px 6vw 80px;
}

.mag-hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.mag-hero .hero-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mag-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.mag-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mag-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mag-card {
  background: var(--paper);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mag-card h3 {
  font-size: 1.2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

.split-highlight {
  background: var(--stone);
  padding: 32px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list span {
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.services-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e0d9cf;
  background: #fff;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.mag-form {
  background: var(--paper);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mag-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.mag-form input,
.mag-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d1c6;
  font-size: 1rem;
}

.mag-form button {
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1f1f1f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 10;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.site-footer {
  padding: 36px 6vw 48px;
  background: #141311;
  color: #f7f2ea;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #f7f2ea;
  opacity: 0.85;
}

.page-hero {
  background: var(--paper);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.info-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e0d9cf;
}

@media (min-width: 900px) {
  .mag-hero {
    flex-direction: row;
    align-items: stretch;
  }

  .mag-hero .hero-top {
    flex: 1.2;
  }

  .mag-hero .hero-image {
    flex: 1;
  }

  .mag-row {
    flex-direction: row;
  }

  .mag-row .mag-card {
    flex: 1;
  }

  .info-columns {
    flex-direction: row;
  }

  .info-columns .info-box {
    flex: 1;
  }
}
