@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #18212b;
  --muted: #55606b;
  --surface: #f5f3f0;
  --surface-2: #eef2f4;
  --accent: #9b7cb8;
  --accent-2: #3a5f7d;
  --line: #d7dde2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw 12px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px 8vw 64px;
}

.hero-split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 360px;
  background: #cfd6dd;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.section {
  padding: 64px 8vw;
}

.section.alt {
  background: var(--surface);
}

.section.light {
  background: var(--surface-2);
}

.section-title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.section-lead {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 640px;
}

.asym-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.asym-column {
  flex: 1 1 260px;
}

.offset {
  margin-top: 32px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-media {
  height: 180px;
  background: #d7dfe6;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
}

.story-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.floating-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  max-width: 260px;
}

.inline-image {
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: #d1d8df;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 32px 8vw 48px;
  border-top: 1px solid var(--line);
  background: #ffffff;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 720px;
  width: calc(100% - 32px);
  z-index: 10;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.list-tight {
  margin: 0;
  padding-left: 18px;
}

.spacer {
  height: 24px;
}

.no-underline {
  text-decoration: none;
}
