* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2328;
  --muted: #5e6673;
  --paper: #f7f4ef;
  --sand: #efe9e1;
  --stone: #e3ded7;
  --brand: #2b4b7c;
  --accent: #b06a4f;
  --line: #d2cbc3;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: var(--sand);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid var(--line);
}

.brand {
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.disclosure {
  font-size: 12px;
  padding: 8px 10px;
  background: #fff3da;
  border: 1px solid #f0d9b2;
  color: #704f2a;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--line);
  background: #fff;
}

.sidebar-foot {
  margin-top: auto;
  font-size: 13px;
  color: var(--muted);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 8vw;
  border-bottom: 1px solid var(--line);
}

.section-tight {
  padding: 42px 8vw;
}

.section-alt {
  background: var(--sand);
}

.hero {
  color: #fff;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
}

.hero-inner {
  background: rgba(20, 24, 30, 0.6);
  padding: 32px 36px;
  max-width: 520px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 38px;
}

.hero p {
  margin: 0 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-alt {
  background: transparent;
  border: 1px solid #fff;
}

.btn-light {
  background: var(--accent);
}

.inline-link {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 1px solid var(--brand);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.img-wrap {
  background: #d9d5ce;
  border-radius: 16px;
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  background: #fff;
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
}

.sticky-cta a {
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.footer {
  padding: 28px 8vw;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  max-width: 360px;
  z-index: 30;
  display: none;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-visible {
  display: flex;
  flex-direction: column;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 60vh;
  }
}
