* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a2b24;
  --muted: #4c6357;
  --mist: #f3f6f0;
  --sage: #cad7c8;
  --moss: #2f5d48;
  --sun: #f0c66b;
  --river: #2c728d;
  --white: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-block span {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.brand-block h1 {
  font-size: 28px;
}

.nav-split {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.nav-split a {
  font-size: 14px;
  color: var(--muted);
}

.hero {
  padding: 24px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(26, 43, 36, 0.1);
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 16px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--moss);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--moss);
  color: var(--moss);
  padding: 10px 18px;
  border-radius: 999px;
}

.section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-title {
  font-size: 24px;
}

.offset-panel {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(26, 43, 36, 0.08);
  margin-left: 12px;
}

.layered {
  background: var(--sage);
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 20px 12px auto;
  height: 120px;
  background: var(--sun);
  opacity: 0.3;
  border-radius: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--moss);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(26, 43, 36, 0.08);
}

.card h4 {
  font-size: 18px;
}

.card p {
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--river);
}

.form-wrap {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(26, 43, 36, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9d4cc;
  font-size: 14px;
  background: var(--mist);
}

button {
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.cta-secondary {
  background: var(--river);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
}

.inline-link {
  color: var(--river);
  text-decoration: underline;
}

.testimonial {
  padding: 18px;
  background: var(--white);
  border-radius: 16px;
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--sage);
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  padding: 40px 6vw 60px;
  background: #12221c;
  color: #d7e2d9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #d7e2d9;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(26, 43, 36, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

@media (min-width: 860px) {
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .nav-split {
    align-items: flex-end;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-copy {
    flex: 1;
    margin-right: -40px;
  }

  .hero-media {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
