:root {
  color-scheme: light;
  --ink: #1c1c1c;
  --muted: #5b5b5b;
  --accent: #3644c9;
  --accent-soft: #e8ebff;
  --paper: #f7f4ef;
  --sand: #efe8de;
  --line: #d9d2c6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fffaf3;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 6vw 40px;
  align-items: stretch;
  background: var(--paper);
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1 1 320px;
}

.hero-visual .image-frame {
  height: 100%;
}

.image-frame {
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 48px 6vw;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.column {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.strip {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.highlight {
  background: var(--accent-soft);
}

.accent-band {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.accent-band .overlay {
  background: rgba(26, 28, 43, 0.6);
  padding: 42px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: #ffffff;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
}

.form-status {
  font-size: 0.95rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1c1c1c;
  color: #ffffff;
  font-size: 0.9rem;
}

.footer {
  margin-top: auto;
  padding: 36px 6vw;
  border-top: 1px solid var(--line);
  background: #ffffff;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 360px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-title {
  margin: 0 0 16px;
  font-size: 2.2rem;
}

.muted {
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spaced {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
