* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --cream: #f5f1ea;
  --forest: #244d3a;
  --moss: #5d7a57;
  --clay: #c49b6b;
  --ink: #1f1f1c;
  --sand: #efe7db;
  --mist: #e2ebe4;
  --sun: #f6c16b;
  --accent: #2f6f62;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.inline-cta:hover {
  color: var(--forest);
}

.container {
  width: min(92%, 1200px);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 10px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--forest);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0 56px;
  position: relative;
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--mist);
}

.hero-media img {
  width: 100%;
}

.hero-content {
  background: var(--sand);
  padding: 28px;
  border-radius: 18px;
  position: relative;
  margin-top: -40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.section {
  padding: 56px 0;
  position: relative;
}

.section.asymmetric {
  padding-top: 72px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 16px;
}

.story-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-card {
  background: var(--mist);
  padding: 20px;
  border-radius: 16px;
  align-self: flex-start;
  max-width: 520px;
}

.story-card.highlight {
  background: var(--forest);
  color: #fff;
  align-self: flex-end;
}

.offset-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(34, 34, 34, 0.08);
}

.offset-item:nth-child(2) {
  margin-left: 24px;
}

.offset-item:nth-child(3) {
  margin-left: 48px;
}

.split-story {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-story .text-block {
  background: var(--sand);
  padding: 24px;
  border-radius: 18px;
}

.services-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
}

.highlight-strip {
  background: var(--forest);
  color: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.process-step .step-index {
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 26px 50px rgba(32, 56, 44, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font: inherit;
  background: #fff;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-note {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--mist);
  padding: 18px;
  border-radius: 14px;
}

.page-footer {
  background: #1e2a24;
  color: #e9eee9;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--sun);
  color: #3c2b10;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.simple-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 0 48px;
}

.image-panel {
  background: var(--mist);
  padding: 20px;
  border-radius: 20px;
}

.image-panel img {
  border-radius: 16px;
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-block {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-media,
  .hero-content {
    flex: 1;
  }

  .hero-content {
    margin-top: 60px;
    margin-left: -80px;
  }

  .story-row {
    flex-direction: row;
    align-items: stretch;
  }

  .offset-grid {
    flex-direction: row;
  }

  .offset-item {
    flex: 1;
  }

  .split-story {
    flex-direction: row;
  }

  .split-story .text-block,
  .split-story .image-panel {
    flex: 1;
  }

  .services-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 18px);
  }

  .process-flow {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 calc(50% - 16px);
  }

  .simple-hero {
    flex-direction: row;
    align-items: stretch;
  }

  .simple-hero .text-block,
  .simple-hero .image-panel {
    flex: 1;
  }
}
