* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1e1f26;
  --muted: #5c616c;
  --surface: #f6f4ef;
  --surface-strong: #ebe6db;
  --accent: #1f6feb;
  --accent-dark: #1554b0;
  --warm: #f1e9dd;
  --highlight: #fff6d8;
  --border: #d6d2c8;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  padding: 20px 6vw;
  background: var(--surface);
  gap: 14px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 18px;
  align-items: center;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--highlight);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.main {
  flex: 1;
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: var(--surface);
}

.section.warm {
  background: var(--warm);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-top {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 260px;
}

.hero-media {
  flex: 1 1 320px;
  min-width: 260px;
  background: #cfe0f1;
  padding: 10px;
  border-radius: 16px;
}

.hero-media img {
  width: 100%;
  height: 340px;
  border-radius: 12px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.8px;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--accent);
  color: #fff;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.column {
  flex: 1 1 260px;
  min-width: 220px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  min-width: 240px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card figure {
  margin: 0;
  background: #e4e4e4;
  border-radius: 12px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 180px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-cta {
  font-weight: 600;
}

.story-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.story-block figure {
  margin: 0;
  flex: 1 1 280px;
  min-width: 260px;
  background: #dbe2d0;
  border-radius: 14px;
  overflow: hidden;
}

.story-block img {
  width: 100%;
  height: 260px;
}

.split-note {
  flex: 2 1 320px;
  min-width: 260px;
}

.callout {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 12px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 12px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer {
  padding: 40px 6vw;
  background: var(--surface-strong);
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--highlight);
  font-size: 0.8rem;
  color: var(--ink);
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  flex: 1 1 120px;
}

.notice {
  background: var(--highlight);
  padding: 12px;
  border-radius: 12px;
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip figure {
  flex: 1 1 200px;
  min-width: 180px;
  margin: 0;
  background: #e0e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.image-strip img {
  width: 100%;
  height: 160px;
}

.bg-context {
  background-image: url("https://images.unsplash.com/photo-1504805572947-34fad45aed93?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-context .card,
.bg-context .callout {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.muted {
  color: var(--muted);
}

@media (max-width: 720px) {
  h1 {
    font-size: 2rem;
  }

  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
