* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1c1a;
  --muted: #5d5a55;
  --sand: #f4f0ea;
  --stone: #e6e0d8;
  --clay: #c9b9a6;
  --moss: #3b4b44;
  --sun: #d89b5a;
  --sky: #c9d7e5;
  --accent: #3c5a73;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 28px 0 12px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--moss);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  margin: 40px 0;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  padding: 40px 0 20px;
}

.hero-title {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.panel {
  background: var(--sand);
  padding: 28px;
  border-radius: 20px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--stone);
  color: #f8f6f3;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--clay);
  color: #ffffff;
}

.bg-work {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--sky);
  color: #f7f4f1;
}

.panel.dark {
  background: var(--moss);
  color: #f7f4f1;
}

.panel.light {
  background: #ffffff;
  border: 1px solid var(--stone);
}

.img-frame {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.img-frame.tall {
  height: 100%;
}

.img-frame img {
  height: 100%;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.cta-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: var(--accent);
  color: #ffffff;
  font-size: 1rem;
}

.outline-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-cta {
  border-bottom: 2px solid var(--sun);
  color: var(--ink);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  background: #fff;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

.grid-break {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.grid-break > div {
  flex: 1 1 260px;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

footer {
  margin-top: 40px;
  padding: 30px 0 60px;
  border-top: 1px solid var(--stone);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.sticky-cta {
  position: sticky;
  bottom: 10px;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--stone);
  padding: 16px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  z-index: 999;
  max-width: 700px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wide-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.subtle {
  color: var(--muted);
}
