@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #1e1f24;
  --muted: #5a5f6a;
  --paper: #f7f3ee;
  --accent: #2a5b74;
  --accent-soft: #dbe7ee;
  --sun: #f0d28a;
  --berry: #6b4b72;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 28px 6vw 12px;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-disclosure {
  background: var(--sun);
  color: #2a2a2a;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 999px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 14px;
}

nav a {
  font-size: 0.95rem;
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hero {
  padding: 40px 6vw 60px;
}

.split {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.content {
  flex: 1 1 320px;
  min-width: 280px;
}

.media {
  flex: 1 1 320px;
  min-width: 280px;
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.media .caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.85);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--berry);
}

.btn.light {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover,
.inline-cta:hover {
  filter: brightness(0.95);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

section {
  padding: 64px 6vw;
}

.band {
  background: var(--paper);
}

.band-dark {
  background: #22313f;
  color: #f6f2eb;
}

.band-dark .btn.light {
  border-color: #f6f2eb;
  color: #f6f2eb;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6e3de;
  display: flex;
  flex-direction: column;
}

.card figure {
  margin: 0;
  background: #efe9df;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.card .card-action {
  margin-top: auto;
}

.highlight {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--accent-soft);
  border-radius: 18px;
}

.quote {
  font-style: italic;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid #e5e0da;
}

.form-shell label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-shell select,
.form-shell input,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7d2cb;
  font-family: inherit;
}

.form-shell button {
  align-self: flex-start;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

footer {
  padding: 48px 6vw;
  background: #121417;
  color: #f2f2f2;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-grid a {
  color: #f2f2f2;
}

.legal {
  font-size: 0.85rem;
  color: #c9c9c9;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid #ddd4c7;
  border-radius: 16px;
  padding: 18px;
  display: none;
  gap: 16px;
  z-index: 30;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.notice {
  padding: 24px;
  border-radius: 18px;
  background: #f8f1e4;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d9d2c8;
}

.overlay {
  background: rgba(17, 22, 27, 0.6);
  padding: 50px 6vw;
  border-radius: 18px;
}

@media (max-width: 820px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
  }
}
