:root {
  --bg: #f6f5f2;
  --ink: #1d1e22;
  --muted: #60656f;
  --accent: #2c5c7b;
  --accent-2: #a07a3b;
  --panel: #ffffff;
  --line: #d8d7d2;
  --hero: #17222b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.8px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
}

.container {
  width: min(1100px, 88vw);
  margin: 0 auto;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 70px 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.compact {
  padding: 45px 6vw;
}

.hero {
  background: var(--hero);
  color: #f8f8f4;
}

.section-background-a {
  background-color: #22313b;
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f7f2;
}

.section-background-b {
  background-color: #253240;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f7f2;
}

.hero .eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b7c4cf;
}

.hero h1 {
  font-size: clamp(34px, 4vw, 48px);
  margin: 10px 0 16px;
}

.hero p {
  color: #d7e0e7;
  max-width: 460px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.ghost-link {
  color: var(--accent-2);
  border-bottom: 1px solid var(--accent-2);
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel h3 {
  margin: 0;
  font-size: 22px;
}

.image-frame {
  background: #d9d2c6;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-tall {
  min-height: 320px;
}

.image-wide {
  min-height: 260px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-size: 20px;
  color: var(--accent);
}

.section-title {
  margin: 0 0 12px;
  font-size: 28px;
}

.soft {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-row a,
.cta-row button {
  padding: 12px 20px;
  border-radius: 14px;
  border: none;
  background: var(--accent-2);
  color: #fff;
  cursor: pointer;
}

.cta-row .outline {
  background: transparent;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-size: 14px;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  background: #fff;
}

.form-wrap button {
  align-self: flex-start;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 50px;
  border-top: 1px solid var(--line);
  background: #f2f1ec;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f2d36;
  color: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

.sticky-cta button {
  background: #fff;
  color: #1f2d36;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.sticky-cta .dismiss {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: min(380px, 90vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 6;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 10px;
  border: 1px solid var(--accent);
  padding: 8px 12px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.cookie-actions .reject {
  background: transparent;
  color: var(--accent);
}

.list-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.list-columns ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
