* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4f1;
  --ink: #1e1e1e;
  --muted: #5a5a5a;
  --accent: #2b5b8a;
  --accent-soft: #d6e5f3;
  --card: #ffffff;
  --sand: #efe7de;
  --olive: #e3ebe1;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  background-color: var(--card);
  border-bottom: 1px solid #e6e1dc;
}

.nav-wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 18px 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
}

.ad-label {
  background-color: var(--accent-soft);
  color: #16324f;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
}

.image-frame {
  background-color: var(--sand);
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-title {
  font-size: 28px;
  margin: 0 0 12px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  background-color: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.bg-story {
  background-color: var(--olive);
}

.bg-hero {
  background-color: #1b2f3f;
  color: #f6f6f6;
  position: relative;
  overflow: hidden;
}

.bg-hero .hero-media {
  border-radius: 24px;
  overflow: hidden;
  background-color: #2a3f52;
}

.bg-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-wrap {
  display: flex;
  gap: 36px;
  align-items: center;
}

.hero-wrap .text {
  flex: 1.1;
}

.hero-wrap .media {
  flex: 0.9;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background-color: var(--card);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .image-frame {
  height: 160px;
  background-color: var(--accent-soft);
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  color: var(--muted);
  font-style: italic;
}

.form-panel {
  background-color: var(--card);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d4d0cb;
  font-size: 14px;
  width: 100%;
}

.footer {
  background-color: #0f1e2a;
  color: #d7dbe0;
  padding: 30px 24px;
}

.footer a {
  color: #b5d0ea;
}

.footer-columns {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.legal-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  background-color: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a2a36;
  color: #f6f6f6;
  padding: 16px 22px;
  display: none;
  z-index: 1000;
}

.cookie-content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  background-color: #f6f6f6;
  color: #1a2a36;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

.cookie-btn.outline {
  background-color: transparent;
  color: #f6f6f6;
  border: 1px solid #f6f6f6;
}

.section-muted {
  background-color: var(--sand);
}

.meta-box {
  background-color: #f0f4f7;
  border-radius: 16px;
  padding: 20px;
}

.notice {
  background-color: #fff5e6;
  border-left: 4px solid #ffb547;
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  color: #5c3b09;
}

.page-hero {
  background-color: #f2f2f2;
  border-radius: 20px;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 900px) {
  .split,
  .hero-wrap {
    flex-direction: column;
  }
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
