* {
  box-sizing: border-box;
}

:root {
  --ink: #141414;
  --muted: #4b4f56;
  --surface: #f4f1ee;
  --surface-alt: #eef2f4;
  --accent: #1e5b7a;
  --accent-dark: #15485f;
  --warm: #d9c7b8;
  --line: #e1e1e1;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: var(--warm);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 20px 6%;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.top-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 64px 6%;
}

.section.alt {
  background: var(--surface);
}

.section.dark {
  background: #0f1c24;
  color: #f9f9f9;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > .panel {
  flex: 1 1 0;
  min-width: 0;
}

.panel h1,
.panel h2,
.panel h3 {
  margin-top: 0;
  line-height: 1.2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: rgba(30, 91, 122, 0.1);
}

.img-box {
  background: var(--warm);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
  display: flex;
}

.bg-blue {
  background: #cad8e3;
}

.bg-slate {
  background: #cfd2d8;
}

.bg-soft {
  background: #d2d4d7;
}

.bg-sand {
  background: #c7c3bf;
}

.bg-night {
  background: #20303d;
}

.img-box img {
  width: 100%;
  height: 100%;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  align-items: center;
}

.card img {
  width: 110px;
  height: 90px;
  border-radius: 12px;
}

.card h4 {
  margin: 0 0 6px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-alt);
  font-size: 0.85rem;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.metric {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
}

.form-shell {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

.footer {
  padding: 32px 6% 60px;
  background: #0c141a;
  color: #e6e6e6;
}

.footer a {
  color: #e6e6e6;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 50;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  z-index: 60;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.simple-list {
  margin: 0;
  padding-left: 18px;
}

.split-notes {
  background: var(--surface-alt);
  padding: 18px;
  border-radius: 14px;
}

.inline-link {
  text-decoration: underline;
  color: var(--accent);
}

.page-title {
  margin-top: 0;
}

.contact-block {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.contact-block p {
  margin: 6px 0;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
