* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4ef;
  --ink: #1c1b1a;
  --muted: #5d5a54;
  --accent: #1f7a63;
  --accent-dark: #135343;
  --soft: #efe7da;
  --highlight: #f3c86b;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 6vw 0;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.nav-links a {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 60px 6vw 30px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 540px;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
}

.hero-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  margin-left: auto;
  max-width: 420px;
}

.hero-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.hero-card li {
  padding-left: 16px;
  position: relative;
}

.hero-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  background: var(--accent-dark);
  color: #f7f4ef;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}

.section-title h2 {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.2;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  margin-left: auto;
  max-width: 520px;
}

.split-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-stack img {
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 6px solid var(--highlight);
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.form-shell label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9d3c7;
  font-size: 15px;
}

.form-shell textarea {
  min-height: 120px;
}

.footer {
  padding: 32px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #141313;
  color: #f7f4ef;
}

.footer a {
  color: #f7f4ef;
  opacity: 0.9;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-header {
  padding: 40px 6vw 20px;
}

.page-header h1 {
  font-size: clamp(30px, 4vw, 46px);
}

.two-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.contact-card {
  background: var(--soft);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
}

.quote {
  font-style: italic;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .asym-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .image-stack {
    max-width: 360px;
  }

  .service-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .two-panel {
    flex-direction: row;
  }

  .panel {
    flex: 1;
  }
}
