.root {
  color: #1b1b1b;
  background-color: #f6f4f0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #f6f4f0;
  color: #1b1b1b;
}

a {
  color: #1b1b1b;
  text-decoration: underline;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid #1b1b1b;
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 12px;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.ad-label {
  font-size: 12px;
  color: #444;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom: 1px solid #1b1b1b;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel p {
  margin: 0;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a4e3d;
  font-weight: 600;
}

.hero-title {
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}

.hero-subtitle {
  font-size: 18px;
  color: #3b3b3b;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #f6f4f0;
  padding: 12px 22px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.secondary {
  background: transparent;
  color: #1b1b1b;
}

.button:hover {
  filter: brightness(1.05);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 16px;
  border: 1px solid #e1ddd6;
}

.card img {
  width: 120px;
  height: 100px;
  object-fit: cover;
}

.image-frame {
  padding: 0;
}

.bg-sand {
  background-color: #d9d2c7;
}

.bg-clay {
  background-color: #d5cec4;
}

.bg-ochre {
  background-color: #d7d1c6;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.band {
  background-color: #e6e0d7;
  padding: 24px;
}

.band.split {
  padding: 48px 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid #c9c1b6;
}

.form-card {
  background-color: #fff;
  padding: 24px;
  border: 1px solid #e1ddd6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #b8b0a6;
  font-size: 14px;
  font-family: inherit;
}

.quote {
  font-size: 20px;
  font-weight: 600;
}

.notice {
  font-size: 13px;
  color: #555;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  margin: 24px 0 64px;
  background-color: #1b1b1b;
  color: #f6f4f0;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta a {
  color: #f6f4f0;
  text-decoration: none;
  border-bottom: 1px solid #f6f4f0;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid #d5cfc4;
  font-size: 14px;
}

.footer .columns {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.footer .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer a:hover {
  border-bottom: 1px solid #1b1b1b;
}

.legal-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.background-split {
  background-color: #3d3c39;
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.background-split .panel {
  background-color: rgba(17, 17, 17, 0.7);
  padding: 24px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: 24px;
  background-color: #fff;
  border: 1px solid #1b1b1b;
  padding: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .split,
  .band.split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .card {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer .columns {
    flex-direction: column;
  }
}
