* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1c1a;
  --muted: #5d5a55;
  --accent: #1e6c5b;
  --accent-light: #e2f0ec;
  --sand: #f5f0ea;
  --rose: #f4e1dd;
  --stone: #ece7e2;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--ink);
}

.ad-label {
  padding: 6px 10px;
  background: var(--accent-light);
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 6vw 70px;
  background: linear-gradient(120deg, var(--sand), #fff 60%);
}

.hero-text {
  flex: 1 1 52%;
  align-self: center;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-image {
  flex: 1 1 40%;
  background: #dbe7e1;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 64px 6vw;
  position: relative;
}

.section-muted {
  background: var(--stone);
}

.section-rose {
  background: var(--rose);
}

.bg-marketplace {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-marketplace p {
  color: #f3f0eb;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section p {
  color: var(--muted);
}

.split {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 280px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.panel img {
  border-radius: 14px;
  background: #ccd9d3;
}

.offset-card {
  margin-top: -50px;
  align-self: flex-start;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.card img {
  height: 180px;
  width: 100%;
  background: #d1dcd6;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.cta-inline {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--accent);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 40;
}

.sticky-cta a {
  color: var(--accent);
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c9c4bd;
  font-size: 1rem;
  width: 100%;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  background: #11100f;
  color: #f8f4ef;
  padding: 40px 6vw;
}

.footer a {
  color: #f8f4ef;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid div {
  flex: 1 1 220px;
}

.legal {
  font-size: 0.85rem;
  color: #cfc9c2;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  padding: 16px;
  background: #fff;
  border: 1px solid #c9c4bd;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  padding: 18px;
  background: var(--accent-light);
  border-radius: 10px;
  margin-top: 18px;
}

.hero-band {
  position: absolute;
  bottom: -30px;
  left: 8%;
  padding: 14px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  color: var(--muted);
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.meta-list span {
  font-weight: 600;
}

.thanks-panel {
  max-width: 720px;
  margin: 40px auto;
  padding: 40px;
  background: var(--sand);
  border-radius: 20px;
}

.page-title {
  padding: 40px 6vw 10px;
}

.page-title h1 {
  font-size: 2.2rem;
}

.plain-section {
  padding: 30px 6vw 60px;
}
