* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1c1c;
  --muted: #5a5a5a;
  --bg: #f5f3ef;
  --paper: #ffffff;
  --accent: #1f6feb;
  --accent-soft: #d9e6fb;
  --sand: #efe7db;
  --stone: #e3e1dc;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 1.5rem 4vw 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-left,
.nav-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--stone);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--paper);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 3rem 4vw 4rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--paper);
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}

.section.split {
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.compact {
  padding: 2rem;
}

.section.soft {
  background: var(--sand);
}

.section.stone {
  background: var(--stone);
}

.section.hero {
  min-height: 60vh;
  color: #f7f6f3;
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.25));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.alt {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.media-frame {
  flex: 1;
  background: var(--accent-soft);
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tagline {
  color: var(--muted);
  font-size: 1rem;
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.card .price {
  font-weight: 700;
  font-size: 1.15rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 600;
}

.divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  width: 100%;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form label {
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid #d6d6d6;
  font-size: 1rem;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sticky-cta {
  position: sticky;
  bottom: 1rem;
  align-self: flex-end;
  margin-top: -2rem;
}

.footer {
  padding: 3rem 4vw 2.5rem;
  background: #111;
  color: #e9e9e9;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer .muted {
  color: #bdbdbd;
}

.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  left: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: 18px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.notice {
  font-size: 0.92rem;
  color: var(--muted);
}

.bg-board {
  background-image: url("https://images.unsplash.com/photo-1484704849700-f032a568e944?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f6f3;
  position: relative;
}

.bg-board::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  border-radius: 24px;
}

.bg-board .text-block,
.bg-board .list,
.bg-board .pill {
  position: relative;
  z-index: 1;
}

.bg-board .pill {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.section.narrow {
  max-width: 900px;
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.inline-cta {
  font-weight: 600;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.legal-content h2 {
  font-size: 1.3rem;
}

@media (max-width: 900px) {
  .section.split,
  .section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin-top: 0;
    align-self: stretch;
  }
}
