* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f2;
  --ink: #1b1b1b;
  --muted: #5e5e5e;
  --accent: #1f4d3a;
  --accent-soft: #dfe9e3;
  --sand: #efe8de;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0 16px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.2rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid #c9c4bc;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.section {
  padding: 56px 0;
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.split .split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 2.2rem;
  margin: 0 0 16px;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 18px;
}

.hero {
  position: relative;
  color: #fff;
  padding: 90px 0 110px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.light {
  background: #fff;
  color: var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-img {
  border-radius: 12px;
  overflow: hidden;
  background: var(--sand);
}

.card-img img {
  object-fit: cover;
}

.text-columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.9rem;
}

.accent {
  background: var(--sand);
}

.panel {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.img-frame {
  background: #e4e0d7;
  border-radius: 18px;
  overflow: hidden;
}

.inline-img {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d6d2cb;
  font-size: 1rem;
  font-family: inherit;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
}

.footer {
  margin-top: auto;
  padding: 32px 0 46px;
  background: #121212;
  color: #f2f2f2;
}

.footer a {
  color: #f2f2f2;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 0;
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  z-index: 50;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.muted {
  color: var(--muted);
}

.image-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  font-style: italic;
  background: #fff;
  padding: 16px;
  border-left: 3px solid var(--accent);
}

.page-hero {
  padding: 64px 0;
  background: #fff;
}

.page-hero .hero-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.page-hero-image {
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 260px;
}

.insight-bg {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1491557345352-5929e343eb89?w=1400&q=80");
}

.privacy-hero {
  background-image: url("https://images.unsplash.com/photo-1517832207067-4db24a2ae47c?w=1400&q=80");
}

.gdpr-hero {
  background-image: url("https://images.unsplash.com/photo-1503342394128-c104d54dba01?w=1400&q=80");
}

.cookies-hero {
  background-image: url("https://images.unsplash.com/photo-1709979058427-4005f7c65154?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwxOHx8RGVzJTIwdGVudWVzJTIwZGUlMjBzcG9ydCUyMHBlbnMlQzMlQTllcyUyMHBvdXIlMjBsZSUyMHJ5dGhtZSUyMHIlQzMlQTllbCUyMGRlJTIwdm90cmUlMjBzZW1haW5lLnxmcnwwfDB8fHwxNzg0MDE5NzAwfDA&ixlib=rb-4.1.0&q=80&w=1080");
}

.terms-hero {
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
}

.thanks-hero {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

@media (min-width: 860px) {
  .section.split .split-row {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
  }

  .card-row .card {
    flex: 1;
  }

  .text-columns {
    flex-direction: row;
  }

  .text-columns > div {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .pricing-grid .card {
    flex: 1;
  }

  .image-grid {
    flex-direction: row;
  }

  .image-grid .img-frame {
    flex: 1;
  }

  .story-strip {
    flex-direction: row;
  }

  .story-strip .panel {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
