* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #6b6b6b;
  --paper: #f7f3ee;
  --warm: #efe3d6;
  --coal: #2b2b2b;
  --ember: #d9663a;
  --leaf: #2d6a4f;
  --tone-1: #f4eee7;
  --tone-2: #f1e4d6;
  --tone-3: #e8dccf;
  --tone-4: #f6efe8;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 32px 0 72px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid #d9cfc4;
  border-radius: 999px;
  background: #fff;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid transparent;
}

.nav-link:hover {
  border-bottom: 1px solid var(--ember);
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 40px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.split-media {
  flex: 1;
  min-height: 320px;
}

.hero-title {
  font-size: clamp(2.4rem, 3.4vw, 3.4rem);
  line-height: 1.1;
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.2;
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2d7cc;
  width: fit-content;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-btn,
.ghost-btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cta-btn {
  background: var(--ember);
  color: #fff;
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.cta-btn:hover,
.ghost-btn:hover {
  transform: translateY(-1px);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list-item span {
  font-weight: 600;
  color: var(--ember);
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eadfd3;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.img-frame {
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
  background: var(--tone-1);
}

.tone-2 {
  background: var(--tone-2);
}

.tone-3 {
  background: var(--tone-3);
}

.tone-4 {
  background: var(--tone-4);
}

.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #eadfd3;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9cfc4;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.footer {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e1d5c9;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--coal);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid #eadfd3;
  border-radius: 16px;
  padding: 18px;
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.accept {
  background: var(--leaf);
  border-color: var(--leaf);
  color: #fff;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eadfd3;
  padding: 24px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
