* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0c1f1a;
  --muted: #4b5e58;
  --sand: #f4f1ea;
  --leaf: #2b5c48;
  --river: #2f6f79;
  --clay: #d9cdbf;
  --mist: #e6ece8;
  --shadow: rgba(12, 31, 26, 0.12);
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #fbfbf9;
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 6vw 20px;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.brand strong {
  font-size: 24px;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  font-size: 14px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav a:focus {
  outline: 2px solid var(--river);
  outline-offset: 4px;
}

.nav .disclosure {
  font-size: 12px;
  background: var(--mist);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 20px 6vw 80px;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 340px;
  padding: 20px 0;
}

.hero-copy h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-panel {
  flex: 1 1 320px;
  background: var(--clay);
  padding: 18px;
  border-radius: 24px;
  box-shadow: 0 20px 40px var(--shadow);
  transform: translateY(10px);
}

.hero-image {
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--mist);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--leaf);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--leaf);
  border: 1px solid var(--leaf);
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section.mist {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.offset-card {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.offset-card.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 36px var(--shadow);
  transform: translateY(-18px);
}

.offset-image {
  flex: 1 1 320px;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--clay);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card.lifted {
  transform: translateY(16px);
}

.card-image {
  height: 160px;
  background: var(--mist);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-body span {
  color: var(--muted);
  font-size: 13px;
}

.inline-link {
  color: var(--river);
  text-decoration: underline;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.metric {
  flex: 1 1 200px;
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.split-band .band-copy {
  flex: 1 1 320px;
}

.split-band .band-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 30px var(--shadow);
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 16px 30px var(--shadow);
  max-width: 560px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7d3cd;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  padding: 50px 6vw;
  background: var(--ink);
  color: #f6f7f5;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer small {
  color: #cdd6d1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--river);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 14px 28px var(--shadow);
  max-width: 340px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.page-title {
  padding: 40px 6vw 10px;
}

.page-title h1 {
  font-size: 34px;
}

.content-block {
  padding: 20px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--sand);
  padding: 20px;
  border-radius: 16px;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.bg-mist {
  background-color: #d7e3de;
}

.bg-sage {
  background-color: #cfe1d5;
}

.bg-meadow {
  background-color: #d1e4d9;
}

.bg-haze {
  background-color: #d7ded8;
}

.bg-fern {
  background-color: #d8e5dd;
}

.bg-forest {
  background-color: #d7e0d6;
}

@media (max-width: 820px) {
  .hero-copy h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
