* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f2;
  --ink: #1b1b1b;
  --muted: #5f5f5f;
  --accent: #2e6f6a;
  --accent-dark: #235753;
  --paper: #ffffff;
  --sand: #efe9e1;
  --stone: #e1e7e6;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--sand);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 6px 0;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 64px;
}

.section.narrow {
  padding: 56px 96px;
}

.section.alt {
  background: var(--paper);
}

.section.stone {
  background: var(--stone);
}

.section.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section.bg-insight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 28, 27, 0.64);
}

.bg-insight .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.section.hero {
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.section.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 27, 0.68);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.title {
  font-size: 38px;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  border: 1px solid #ffffff;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 280px;
}

.image-frame {
  background-color: #d9d5ce;
  padding: 12px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--paper);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #d4dfe0;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 13px;
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.form-card {
  background: var(--paper);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c8c8c8;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.footer {
  background: var(--sand);
  padding: 32px 64px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--paper);
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-weight: 600;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: #b8b8b8;
  color: #1a1a1a;
}

.page-hero {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 21, 22, 0.58);
}

.page-hero .hero-inner {
  position: relative;
  z-index: 1;
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1488590528505-98d2b5aba04b?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1504805572947-34fad45aed93?w=1400&q=80");
}

.bg-privacy {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
}

.bg-gdpr {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.bg-cookies {
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
}

.bg-terms {
  background-image: url("https://images.unsplash.com/photo-1515879218367-8466d910aaa4?w=1400&q=80");
}

.bg-thanks {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
}

.highlight {
  background: var(--stone);
  padding: 16px;
  border-radius: 12px;
}

.inline-cta {
  font-weight: 600;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: var(--paper);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.service-row span {
  font-weight: 600;
}

.legal-image {
  max-width: 480px;
}

.legal-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #d7d7d7;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .section {
    padding: 40px 24px;
  }

  .section.narrow {
    padding: 40px 24px;
  }
}
