* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f0;
  --bg-alt: #eef0f6;
  --ink: #1e1f24;
  --muted: #5a606b;
  --accent: #3b6be3;
  --accent-2: #1f8a7a;
  --border: #d9dde7;
  --card: #ffffff;
  --warm: #f3e9dd;
}

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 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand__name {
  font-size: 20px;
  font-weight: 700;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-color: var(--border);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg-alt);
}

.split {
  display: flex;
  gap: 32px;
  padding: 64px 0;
  align-items: center;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1;
}

.split__content h1,
.split__content h2 {
  margin-top: 0;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.pill {
  padding: 8px 14px;
  background: var(--bg-alt);
  border-radius: 999px;
  font-size: 13px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-row--spaced {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn--accent {
  background: var(--accent-2);
}

.section-alt {
  background: var(--bg-alt);
}

.section-warm {
  background: var(--warm);
}

.img-frame {
  background: #dfe6f2;
  border-radius: 18px;
  overflow: hidden;
  height: 320px;
}

.img-frame--tall {
  height: 420px;
}

.img-frame--short {
  height: 240px;
}

.inline-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0;
}

.inline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.inline-item span {
  font-weight: 700;
  color: var(--accent);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
}

.card__media {
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: #e7e7ea;
}

.price {
  font-size: 18px;
  font-weight: 700;
}

.split-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-form label {
  font-size: 14px;
  font-weight: 600;
}

.split-form select,
.split-form input,
.split-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.footer {
  margin-top: auto;
  padding: 32px 0 40px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer__grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__col {
  flex: 1 1 220px;
}

.fineprint {
  font-size: 12px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  z-index: 30;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.notice {
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff6e8;
  border: 1px solid #f0d7b3;
}

.notice--spaced {
  margin-top: 16px;
}

.meta-strip {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.simple-hero {
  padding: 48px 0;
}

.simple-hero h1 {
  margin-bottom: 12px;
}

.legal-content {
  padding: 40px 0 60px;
}

.legal-content h2 {
  margin-top: 28px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split--reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
