* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2933;
  --muted: #5f6c72;
  --accent: #c76a2c;
  --accent-dark: #9d4f1f;
  --paper: #f6f2ed;
  --stone: #e6dfd7;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #faf8f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px 18px 80px;
}

header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 18px 10px;
}

.split-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-nav .logo {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.split-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mag-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.mag-columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mag-columns .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mag-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.pull-quote {
  font-style: italic;
  background: var(--paper);
  padding: 18px;
  border-radius: 18px;
}

.highlight {
  background: var(--paper);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--stone);
}

.section-image {
  border-radius: 20px;
  overflow: hidden;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--stone);
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-dark);
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

.form-card {
  background: var(--paper);
  padding: 24px;
  border-radius: 22px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd2d6;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 90px;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer {
  padding: 40px 18px 120px;
  background: #181817;
  color: #f8f6f3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.hero-bg {
  background: linear-gradient(120deg, rgba(246, 242, 237, 0.9), rgba(255, 255, 255, 0.8)),
    url("https://images.unsplash.com/photo-1519710164239-da123dc03ef4?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 24px;
}

.map-bg {
  background: linear-gradient(120deg, rgba(27, 29, 30, 0.6), rgba(27, 29, 30, 0.2)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.compare-bg {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(246, 242, 237, 0.6)),
    url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.section-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  main {
    padding: 40px 60px 120px;
  }

  .hero {
    flex-direction: row;
  }

  .hero .hero-text {
    flex: 1.1;
  }

  .hero-image {
    flex: 1;
  }

  .mag-columns {
    flex-direction: row;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  main {
    padding: 50px 120px 160px;
  }

  .mag-section {
    padding: 32px 40px;
  }
}
