:root {
  --bg: #f7f6f3;
  --ink: #1c1f24;
  --muted: #5c6672;
  --accent: #2a6f97;
  --accent-2: #7bbf9e;
  --paper: #ffffff;
  --sand: #ece7df;
  --slate: #2f3a44;
  --line: #d8d3cb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 32px 0 80px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1 1 320px;
  min-width: 280px;
}

.split__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split__media {
  display: flex;
  align-items: stretch;
}

.media-frame {
  width: 100%;
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.media-frame img {
  width: 100%;
  height: 100%;
}

.hero {
  padding: 36px 0;
}

.hero .split__content h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0;
}

.hero .split__content p {
  margin: 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  gap: 8px;
}

.button.secondary {
  background: var(--slate);
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.choice-button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font-weight: 600;
}

.form-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
  font-size: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 180px;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.section-tone {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 13px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin: 0 auto;
  width: min(980px, 92%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.sticky-cta p {
  margin: 0;
  font-size: 14px;
}

.footer {
  background: var(--slate);
  color: #f7f7f7;
  padding: 32px 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #cfd6dc;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 16px;
  display: none;
  width: min(920px, 92%);
  z-index: 4;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bg-index-hero {
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  min-height: 360px;
}

.bg-about-hero {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  min-height: 320px;
}

.bg-services-hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  min-height: 320px;
}

.bg-contact-hero {
  background-image: url("https://images.unsplash.com/photo-1507209696998-3c532be9b2b5?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  min-height: 320px;
}

.bg-privacy-hero {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  min-height: 320px;
}

.bg-gdpr-hero {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  min-height: 320px;
}

.bg-cookies-hero {
  background-image: url("https://images.unsplash.com/photo-1453928582365-b6ad33cbcf64?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  min-height: 320px;
}

.bg-terms-hero {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  min-height: 320px;
}

.bg-thanks-hero {
  background-image: url("https://images.unsplash.com/photo-1525182008055-f88b95ff7980?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  min-height: 320px;
}

.image-card {
  background: var(--sand);
  border-radius: 16px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
}

.reference-list {
  font-size: 13px;
  color: #cfd6dc;
}

.hero-media {
  display: flex;
  align-items: stretch;
}

.hero-media .media-frame {
  min-height: 360px;
}

.section-title {
  font-size: 22px;
  margin: 0;
}

.list-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tagline {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-status {
  font-size: 13px;
  color: var(--accent);
}

.notice-box {
  background: var(--sand);
  padding: 16px;
  border-radius: 14px;
}

@media (max-width: 720px) {
  .sticky-cta {
    flex-direction: column;
    border-radius: 18px;
    text-align: center;
  }
}
