:root {
  --bg: #f6f5f2;
  --ink: #1b1b1b;
  --muted: #5c5c5c;
  --accent: #1f4a7c;
  --accent-2: #8a6d3b;
  --paper: #ffffff;
  --soft: #eef1f4;
  --line: #d7d7d7;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

body {
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.topbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  background: #f1e9db;
  color: #5c4320;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  justify-content: space-between;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 0;
  min-width: 260px;
}

.split .col.narrow {
  flex: 0 1 42%;
}

.split .col.wide {
  flex: 1 1 58%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  color: var(--accent-2);
}

h1,
h2,
h3 {
  margin: 12px 0 14px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(34px, 4vw, 48px);
}

h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.muted {
  color: var(--muted);
}

.btn,
.btn-secondary,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: var(--accent-2);
  color: #fff;
}

.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 10px;
}

.card.highlight {
  border-color: #b9c8d8;
  background: #f7f9fb;
}

.price {
  font-size: 22px;
  font-weight: 700;
}

.img-frame {
  background: #dfe6ee;
  border-radius: 14px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-media {
  background: #d6dde8;
  border-radius: 16px;
  min-height: 360px;
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-panel {
  background: #f1f4f7;
  border-radius: 16px;
  padding: 26px;
}

.panel-image {
  background: #d9e0e7;
  border-radius: 16px;
  min-height: 280px;
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-bg {
  background: #edf1f6;
}

.section-bg .panel-image {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
}

.inline-image {
  width: 100%;
  height: 280px;
}

.inline-image img {
  height: 100%;
}

.card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card-grid .card {
  flex: 1 1 220px;
}

.list {
  padding-left: 18px;
}

.footer {
  padding: 40px 0 80px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  margin-top: 40px;
}

.footer .row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.form-box {
  background: var(--paper);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--line);
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfd6dd;
  font-size: 15px;
}

.field {
  margin-bottom: 14px;
}

.banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: 12px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 25;
}

.banner .actions {
  display: flex;
  gap: 10px;
}

.notice {
  background: #f8f4ec;
  border-left: 4px solid var(--accent-2);
  padding: 14px 16px;
  border-radius: 10px;
}

.legal-box {
  background: #f7f7f7;
  border: 1px dashed var(--line);
  padding: 18px;
  border-radius: 10px;
}

.policy-hero {
  background: #dbe4ef;
  min-height: 220px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.policy-hero.one {
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
}

.policy-hero.two {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=80");
}

.policy-hero.three {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.policy-hero.four {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.page-image {
  background: #e1e7ef;
  border-radius: 14px;
  overflow: hidden;
}

.page-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
