* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2421;
  --muted: #5f6b66;
  --stone: #f4f1ec;
  --sand: #e6e1d6;
  --sage: #d9e2da;
  --clay: #c9b6a3;
  --accent: #3b5f54;
  --accent-dark: #2a453d;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0;
  border-bottom: 1px solid var(--sand);
}

.topbar .nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
  color: var(--muted);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  background: var(--sand);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.hero {
  background: var(--stone);
  padding: 50px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.media {
  background: var(--sand);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--stone);
}

.section.deep {
  background: var(--sage);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(32px, 4vw, 46px);
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--sand);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .card-media {
  background: var(--clay);
  height: 180px;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.form-wrap {
  background: #ffffff;
  border: 1px solid var(--sand);
  padding: 24px;
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border: 1px solid var(--sand);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: var(--ink);
  color: #f7f4ef;
  padding: 40px 0;
}

.footer a {
  color: #f7f4ef;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: rgba(247, 244, 239, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--sand);
  border-radius: 10px;
  padding: 16px 18px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 100px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 20;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--sand);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.section-banner {
  background: var(--clay);
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-legal {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-privacy {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-gdpr {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-cookies {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-terms {
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1472224371017-08207f84aaae?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-thanks {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 780px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 80px;
  }
}
