* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1a2324;
  --muted: #4a5b5c;
  --mist: #eef3f2;
  --leaf: #3a6f4b;
  --sun: #f6c35b;
  --clay: #e7d8c7;
  --night: #0f1b1d;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fafafa;
  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;
  gap: 64px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 6vw 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
  font-weight: 600;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 6vw;
  position: relative;
}

.section.alt {
  background: var(--mist);
  padding: 48px 6vw;
}

.section.clay {
  background: var(--clay);
  padding: 48px 6vw;
}

.section.night {
  background: var(--night);
  color: #fff;
  padding: 56px 6vw;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.section.night .eyebrow {
  color: #d0e2e1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-box {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(18, 34, 32, 0.12);
}

.offset-box.sun {
  background: #fff5e4;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(26, 35, 36, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h4 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--leaf);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--leaf);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-link {
  font-weight: 600;
  border-bottom: 2px solid currentColor;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  border-radius: 999px;
  padding: 6px 14px;
  background: #fff;
  font-size: 0.85rem;
  box-shadow: 0 12px 24px rgba(26, 35, 36, 0.08);
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(26, 35, 36, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd8d7;
  font-size: 1rem;
  font-family: inherit;
}

.form-card button {
  margin-top: 8px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--leaf);
  font-weight: 600;
}

.floating-caption {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  max-width: 280px;
  box-shadow: 0 16px 40px rgba(26, 35, 36, 0.12);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  background: var(--leaf);
  color: #fff;
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 0.8rem;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.footer {
  background: var(--night);
  color: #d6e6e5;
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #d6e6e5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--sun);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(15, 27, 29, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(26, 35, 36, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ghost-button {
  background: transparent;
  border: 2px solid var(--leaf);
  color: var(--leaf);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.wide-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wide-list li {
  margin-left: 18px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .wide-list {
    flex-direction: row;
  }
}
