*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d2621;
  --muted: #5d6b63;
  --soft: #eef3ef;
  --accent: #2e6f4f;
  --accent-2: #8bbf9b;
  --accent-3: #d9ebe0;
  --highlight: #f4c36b;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(20, 30, 25, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #f6f8f4;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 16px;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.nav-chip {
  padding: 8px 14px;
  border: 1px solid #cdd8d0;
  border-radius: 999px;
  background: #fefefe;
}

.hero {
  padding: 12px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  max-width: 520px;
}

.hero-card h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 3vw, 3.2rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-light {
  background: var(--accent-3);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-image {
  position: relative;
  align-self: flex-end;
  max-width: 560px;
}

.hero-image img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  bottom: -24px;
  left: -36px;
  background: var(--highlight);
  padding: 16px 20px;
  border-radius: 18px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 6vw 100px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.offset-panel {
  background: var(--white);
  padding: 30px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tilt-card {
  background: var(--accent-3);
  padding: 24px;
  border-radius: 20px;
  transform: rotate(-1deg);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.service-card img {
  border-radius: 18px;
  height: 180px;
  object-fit: cover;
}

.tagline {
  color: var(--muted);
  font-size: 1rem;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.form-wrap {
  background: #fff7e8;
  padding: 26px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cad6cc;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

footer {
  padding: 40px 6vw 60px;
  background: #e3eee6;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  max-width: 320px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--white);
  color: var(--accent);
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: var(--white);
}

.page-hero {
  padding: 24px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.legal {
  max-width: 780px;
}

.legal h2 {
  margin-top: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  padding: 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (min-width: 880px) {
  .hero-split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 280px;
  }

  .metrics {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .metric-item {
    flex: 1 1 180px;
  }

  .contact-cards {
    flex-direction: row;
  }
}
