* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f1c;
  --muted: #5b6a61;
  --sand: #f6f2ec;
  --reef: #0b6c6c;
  --sun: #f2b447;
  --fog: #e7ece8;
  --leaf: #2a6b4f;
  --paper: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw 18px;
  background: var(--paper);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--sun);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px 6vw 60px;
  position: relative;
}

.hero-panel {
  background: var(--sand);
  padding: 32px;
  border-radius: 18px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  margin-bottom: 16px;
}

.hero-copy {
  color: var(--muted);
  margin-bottom: 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--reef);
  color: var(--paper);
  border-color: var(--reef);
}

.btn.ghost {
  border-style: dashed;
  color: var(--muted);
}

.hero-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  transform: translateX(8%);
}

.floating-note {
  position: absolute;
  right: 10%;
  bottom: -24px;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  font-size: 0.85rem;
}

.section {
  padding: 52px 6vw;
  position: relative;
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-dark {
  background: var(--fog);
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-bottom: 16px;
}

.section-lead {
  color: var(--muted);
  max-width: 620px;
}

.offset-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  transform: translateX(12%);
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--paper);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat strong {
  font-size: 1.4rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.service-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card img {
  width: 64px;
}

.price {
  font-weight: 700;
  color: var(--reef);
}

.ticker {
  background: var(--reef);
  color: var(--paper);
  padding: 18px 6vw;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.layer-block {
  background: var(--sand);
  padding: 26px;
  border-radius: 18px;
  margin-top: -32px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.process-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.process-step span {
  font-weight: 700;
  color: var(--sun);
}

.form-shell {
  background: var(--paper);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.service-pick {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.pick-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pick-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sand);
  border-radius: 12px;
  padding: 12px 14px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 1rem;
}

.inline-cta {
  color: var(--reef);
  font-weight: 600;
  border-bottom: 1px solid var(--reef);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 10;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  padding: 42px 6vw 60px;
  background: #101514;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: var(--paper);
  opacity: 0.8;
}

.policy-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy-block {
  background: var(--fog);
  padding: 20px;
  border-radius: 14px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fog);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 20;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-panel {
    flex: 1;
  }

  .hero-image {
    flex: 1;
  }

  .section.split {
    flex-direction: row;
    align-items: center;
  }

  .stats-row,
  .service-grid,
  .process-row,
  .image-strip,
  .policy-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat,
  .service-card,
  .process-step,
  .policy-block {
    flex: 1 1 220px;
  }

  .form-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-grid input,
  .form-grid select {
    flex: 1 1 220px;
  }

  .form-grid textarea {
    flex: 1 1 100%;
  }

  .pick-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pick-row label {
    flex: 1 1 220px;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
