* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #141414;
  --muted: #4b4b4b;
  --bg: #f6f5f2;
  --accent: #0f6b6b;
  --accent-dark: #0a4a4a;
  --soft: #e9ece7;
  --highlight: #f0e9dc;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  background: var(--bg);
  border-bottom: 1px solid #dedbd3;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  max-width: 320px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  padding: 56px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1;
  background: var(--soft);
  padding: 16px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-a {
  background: #e0e5ea;
}

.bg-b {
  background: #efe7dd;
}

.bg-c {
  background: #dfe6e1;
}

.bg-d {
  background: #e4e8ec;
}

.bg-e {
  background: #f0e9dc;
}

.bg-f {
  background: #e3e8e1;
}

.split .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  max-height: 360px;
}

.tag {
  display: inline-block;
  background: var(--highlight);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.2px;
  width: fit-content;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  width: fit-content;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background: var(--bg);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  background: #d8dedc;
  border-radius: 12px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 18px;
}

.band {
  background: var(--soft);
  padding: 40px 24px;
}

.band.alt {
  background: var(--highlight);
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e2e2e2;
}

.form-wrap label {
  font-weight: 600;
  font-size: 14px;
}

.form-wrap select,
.form-wrap input,
.form-wrap textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfcfcf;
  font-size: 14px;
}

.inline-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--accent-dark);
}

.footer {
  background: #121212;
  color: #f4f4f4;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 14px;
}

.footer a {
  color: #f4f4f4;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1a1a1a;
  color: #ffffff;
  padding: 18px;
  border-radius: 14px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 13px;
}

.cookie-accept {
  background: #f4f4f4;
  color: #1a1a1a;
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.sticky-cta {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 9;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: auto;
    right: 20px;
  }
}
