:root {
  color-scheme: light;
  --ink: #111318;
  --muted: #5a626d;
  --paper: #f6f2ee;
  --stone: #e6e1da;
  --accent: #2f5d50;
  --accent-dark: #1d3c33;
  --plum: #5a3d5c;
  --sand: #f3ede6;
  --sun: #d5b37a;
  --border: rgba(17, 19, 24, 0.12);
  --shadow: 0 18px 40px rgba(17, 19, 24, 0.12);
  --radius: 18px;
  --max-width: 1100px;
  --sidebar-width: 260px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  background: var(--ink);
  color: #fff;
  padding: 12px 24px;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.ad-label {
  font-size: 0.8rem;
  background: #fff;
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
}

.layout {
  display: flex;
  flex: 1;
}

.sidebar {
  width: var(--sidebar-width);
  padding: 28px 22px;
  background: var(--sand);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.sidebar .nav-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar .nav-group span {
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.content {
  flex: 1;
  padding: 0 0 48px;
}

.section {
  padding: 60px 7vw;
  position: relative;
}

.section.narrow {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero {
  color: #fff;
  padding: 80px 7vw;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 24, 0.55);
}

.hero .hero-content {
  position: relative;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

h2 {
  font-size: clamp(1.4rem, 2.4vw, 2.3rem);
}

.lede {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border-color: #fff;
}

.btn.outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split > * {
  flex: 1;
  min-width: 240px;
}

.image-frame {
  background: var(--stone);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
}

.card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.card .meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.highlight {
  background: var(--sand);
}

.accent-block {
  background: var(--plum);
  color: #fff;
}

.accent-block a {
  color: #fff;
  text-decoration: underline;
}

.quote {
  padding: 24px;
  border-left: 3px solid var(--accent);
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.price-board {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.price-row span {
  font-weight: 600;
}

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.form-card button {
  align-self: flex-start;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > * {
  flex: 1;
  min-width: 260px;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  padding: 40px 7vw;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer .reference-list {
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: none;
  z-index: 20;
}

.cookie-banner p {
  margin-top: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.hero.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-briefing {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-overlay {
  position: relative;
  color: #fff;
}

.section-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 24, 0.6);
}

.section-overlay > * {
  position: relative;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
