* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f0;
  --ink: #1d1f22;
  --muted: #5b6068;
  --brand: #2c5a4b;
  --accent: #d7b98e;
  --surface: #ffffff;
  --surface-alt: #f0ede8;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: underline;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  background: var(--surface);
  border-radius: 16px;
  margin: 24px auto;
  max-width: 1200px;
}

header nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 56px 0;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero {
  padding: 64px 0;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.tagline {
  color: var(--muted);
  font-size: 1.1rem;
}

.image-frame {
  background: #d9d2c5;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.image-frame.small {
  min-height: 220px;
}

.image-frame.tall {
  min-height: 420px;
}

.bg-hero {
  background: #cbbfae url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80")
    center/cover no-repeat;
}

.bg-insight {
  background: #d4d7db url("https://images.unsplash.com/photo-1472224371017-08207f84aaae?w=1400&q=80")
    center/cover no-repeat;
}

.bg-business {
  background: #c8d1c8 url("https://images.unsplash.com/photo-1487015307662-6ce6210680f2?w=1400&q=80")
    center/cover no-repeat;
}

.bg-about {
  background: #dad2c6 url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80")
    center/cover no-repeat;
}

.bg-services {
  background: #d9d8d1 url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80")
    center/cover no-repeat;
}

.bg-contact {
  background: #d5d7dc url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1400&q=80")
    center/cover no-repeat;
}

.bg-thanks {
  background: #d6d2c8 url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80")
    center/cover no-repeat;
}

.surface {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.surface.alt {
  background: var(--surface-alt);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  border: none;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: var(--accent);
  color: #2a2015;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--surface);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.card .image-frame {
  width: 120px;
  height: 120px;
  min-height: auto;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(44, 90, 75, 0.12);
  color: var(--brand);
  font-size: 0.85rem;
  width: fit-content;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form label {
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c3b7;
  font-size: 1rem;
}

.form button {
  margin-top: 8px;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--surface);
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 40;
}

.sticky-cta button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1f1f1f;
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 50;
}

.cookie-banner button {
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #d7b98e;
  color: #2a2015;
}

.cookie-reject {
  background: #ffffff;
  color: #1f1f1f;
}

footer {
  padding: 48px 24px 80px;
  background: var(--surface);
  margin-top: 40px;
}

footer .split {
  align-items: flex-start;
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .split,
  header {
    flex-direction: column;
  }

  .sticky-cta {
    left: 18px;
  }
}
