* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --forest: #1f3d2b;
  --moss: #2f5b3d;
  --meadow: #e7f2e4;
  --river: #cfe7f2;
  --stone: #3b3b3b;
  --sun: #f4c065;
  --clay: #f7efe6;
  --paper: #fbfbf8;
  --accent: #0f7a5e;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--stone);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 96px;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 24px;
  background: var(--meadow);
}

.mag-section {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mag-hero {
  background: var(--meadow);
  border-radius: 24px;
  padding: 32px 24px;
}

.mag-hero h1 {
  margin: 0 0 12px;
  font-size: 2rem;
  color: var(--forest);
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
}

.mag-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mag-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mag-card h3 {
  margin: 0;
  color: var(--moss);
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--river);
  font-size: 0.8rem;
  font-weight: 600;
}

.split-band {
  background: var(--clay);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-band .columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-button {
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-title h2 {
  margin: 0;
  color: var(--forest);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background: white;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(31, 61, 43, 0.1);
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.form-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.testimonial {
  background: var(--river);
  border-radius: 18px;
  padding: 18px;
  font-size: 0.95rem;
}

.footer {
  background: var(--forest);
  color: white;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--sun);
  color: var(--forest);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  z-index: 30;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 12px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: white;
}

.cookie-reject {
  background: #e2e2e2;
}

.section-background {
  background: linear-gradient(120deg, rgba(15, 122, 94, 0.08), rgba(244, 192, 101, 0.14));
  border-radius: 28px;
  padding: 24px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-stack img {
  border-radius: 16px;
}

.meta-columns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px 0;
  }

  .mag-section {
    padding: 40px;
  }

  .mag-hero {
    display: flex;
    gap: 32px;
    align-items: center;
  }

  .hero-meta {
    max-width: 320px;
  }

  .mag-grid {
    flex-direction: row;
  }

  .mag-grid .mag-card {
    flex: 1;
  }

  .split-band .columns {
    flex-direction: row;
  }

  .split-band .columns > div {
    flex: 1;
  }

  .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 calc(50% - 16px);
  }

  .meta-columns,
  .image-stack {
    flex-direction: row;
  }

  .cookie-banner {
    max-width: 640px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
}

@media (min-width: 1024px) {
  .mag-hero h1 {
    font-size: 2.6rem;
  }

  .mag-grid .mag-card {
    min-height: 260px;
  }

  .service-item {
    flex: 1 1 calc(33.333% - 16px);
  }
}
