* {
  box-sizing: border-box;
}

:root {
  --ink: #111217;
  --muted: #5b606b;
  --accent: #c94a2c;
  --accent-soft: #f7e1da;
  --paper: #f6f3ee;
  --light: #ffffff;
  --shadow: rgba(15, 18, 26, 0.08);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.mag-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.button {
  border: none;
  background: var(--accent);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.split-mag {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 50px 0;
}

.split-mag .columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.columns.two {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.columns.three {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight {
  background: var(--light);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 40px var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.2;
}

.hero {
  background: var(--light);
  border-radius: 30px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 25px 60px var(--shadow);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.section-band {
  background: var(--accent-soft);
  padding: 40px 0;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--light);
  border-radius: 24px;
  box-shadow: 0 12px 30px var(--shadow);
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 20px;
}

.quote {
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: var(--light);
  border-radius: 14px;
}

.mag-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mag-grid .stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card {
  background: var(--light);
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 20px 50px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d4ce;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 30px 0 50px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: var(--ink);
  color: var(--light);
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.sticky-cta button {
  background: var(--accent);
  border: none;
  color: var(--light);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--light);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
}

.cookie-actions button.accept {
  background: var(--accent);
  color: var(--light);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--light);
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 16px 40px var(--shadow);
}

@media (min-width: 768px) {
  .split-mag .columns,
  .columns.two,
  .columns.three,
  .service-cards,
  .mag-grid {
    flex-direction: row;
  }

  .columns.two > * {
    flex: 1;
  }

  .columns.three > * {
    flex: 1;
  }

  .service-cards .card {
    flex: 1;
  }

  .mag-grid .stack {
    flex: 1;
  }
}
