* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c2220;
  --muted: #5b6761;
  --sand: #f6f2ed;
  --eucalyptus: #2d5c51;
  --sun: #f3b45d;
  --sea: #2a6d7a;
  --leaf: #6aa84f;
  --cloud: #ffffff;
  --shadow: 0 18px 45px rgba(28, 34, 32, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 80px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw 0;
}

.nav-split {
  display: flex;
  gap: 26px;
  align-items: center;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--eucalyptus);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 6vw;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--cloud);
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-offset {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-offset img {
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-chip {
  position: absolute;
  bottom: -18px;
  right: 12px;
  background: var(--sun);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn-primary {
  background: var(--eucalyptus);
  color: var(--cloud);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--eucalyptus);
  color: var(--eucalyptus);
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section-title {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--cloud);
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.offset-block {
  background: var(--eucalyptus);
  color: var(--cloud);
  padding: 26px;
  border-radius: 24px;
  align-self: flex-start;
  box-shadow: var(--shadow);
}

.floating {
  margin-left: auto;
  background: var(--cloud);
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  background: var(--cloud);
  padding: 16px 20px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat span {
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  border-left: 4px solid var(--sun);
  background: var(--cloud);
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--eucalyptus);
}

.form-shell {
  background: var(--cloud);
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-shell label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d6ddd8;
  font-size: 1rem;
  font-family: inherit;
}

.form-shell textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  padding: 30px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #1d2522;
  color: #e9efec;
}

.footer a {
  color: #e9efec;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 20px;
  background: var(--sun);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: var(--cloud);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.subtle {
  color: var(--muted);
}

.banner {
  background: linear-gradient(120deg, rgba(45, 92, 81, 0.92), rgba(42, 109, 122, 0.85)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80")
    center/cover;
  color: var(--cloud);
  padding: 60px 6vw 70px;
  border-radius: 28px;
  margin: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.banner a {
  text-decoration: underline;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-strip img {
  border-radius: 22px;
}

.page-header {
  padding: 30px 6vw 0;
}

.page-title {
  font-size: 2rem;
}

.contact-card {
  background: var(--cloud);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.grid-two {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-panel {
    flex: 1.1;
  }

  .hero-offset {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 260px;
  }

  .form-row {
    flex-direction: row;
    gap: 16px;
  }

  .form-row > div {
    flex: 1;
  }

  .image-strip {
    flex-direction: row;
  }

  .grid-two {
    flex-direction: row;
  }

  .grid-two > * {
    flex: 1;
  }
}
