* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1f2a;
  --muted: #5b6275;
  --brand: #1f5f7a;
  --accent: #c08b2d;
  --paper: #f6f4f1;
  --surface: #ffffff;
  --soft: #e7ecef;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 28px 6vw 10px;
  background: var(--surface);
  border-bottom: 1px solid var(--soft);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 6vw;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--paper);
}

.section.dark {
  background: #1f2a36;
  color: #f3f5f7;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--accent);
}

.headline {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

.muted {
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.image-frame {
  width: 100%;
  height: 260px;
  background: #d9dde2;
  overflow: hidden;
}

.image-frame.tall {
  height: 360px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  background: var(--soft);
  border-radius: 999px;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
}

.inline-link {
  color: var(--brand);
  text-decoration: underline;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 16px;
  padding: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbd2d9;
  font-size: 1rem;
  background: #fff;
}

.notice {
  padding: 16px;
  border-left: 4px solid var(--accent);
  background: #fdf6e8;
  color: #5c4512;
}

.footer {
  padding: 40px 6vw 60px;
  background: #10151d;
  color: #e6e9ee;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #1b1b1b;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid var(--soft);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.tiny {
  font-size: 0.85rem;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.columns .col {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
