* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #132017;
  --muted: #5a6a60;
  --accent: #2e7d4f;
  --accent-dark: #1f5a38;
  --sand: #f4f1ea;
  --mist: #edf3ef;
  --storm: #1f2b26;
  --sun: #f7c948;
  --line: rgba(19, 32, 23, 0.12);
}

body {
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfbf8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  padding: 70px 0 40px;
  position: relative;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-card {
  background: var(--mist);
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.hero-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.hero-card p {
  color: var(--muted);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(31, 43, 38, 0.08);
}

.hero-image {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  pointer-events: none;
}

.section {
  padding: 60px 0;
  position: relative;
}

.section--tint {
  background: var(--sand);
}

.section--mist {
  background: var(--mist);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 18px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 560px;
}

.offset-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.offset-item {
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(31, 43, 38, 0.08);
  border: 1px solid var(--line);
}

.offset-item--alt {
  background: var(--storm);
  color: #fff;
}

.offset-item--alt p {
  color: rgba(255, 255, 255, 0.7);
}

.split-band {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-band .panel {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mist);
  font-size: 0.8rem;
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 25px 50px rgba(31, 43, 38, 0.12);
  border: 1px solid var(--line);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  background: #fbfbfb;
}

button {
  cursor: pointer;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row--spaced {
  margin-top: 18px;
}

.quote {
  font-size: 1.05rem;
  font-style: italic;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px dashed var(--line);
}

.footer {
  background: var(--storm);
  color: #fff;
  padding: 40px 0 50px;
  margin-top: auto;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--storm);
  font-weight: 700;
  box-shadow: 0 15px 30px rgba(31, 43, 38, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(31, 43, 38, 0.18);
  border: 1px solid var(--line);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.accent-block {
  background: var(--accent);
  color: #fff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accent-block p {
  color: rgba(255, 255, 255, 0.8);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-block {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

.notice {
  background: var(--mist);
  border-radius: 16px;
  padding: 18px;
  font-size: 0.95rem;
}

.spaced-top {
  margin-top: 16px;
}

@media (min-width: 820px) {
  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
    transform: translateY(16px);
  }

  .offset-grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .offset-item {
    flex: 1;
  }

  .offset-item:nth-child(2) {
    transform: translateY(28px);
  }

  .split-band {
    flex-direction: row;
  }

  .split-band .panel {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 12px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}
