* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #121217;
  --muted: #5b5f6a;
  --soft: #f4f2ef;
  --panel: #ffffff;
  --accent: #8c3b6f;
  --accent-dark: #5e2046;
  --highlight: #f0e3d0;
  --border: #e4e1dc;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  background: #111218;
  color: #f7f4ef;
  padding: 12px 6vw;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.topbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  background: #f3c77f;
  color: #201709;
  padding: 6px 10px;
  border-radius: 16px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  color: #f7f4ef;
}

.hero {
  position: relative;
  padding: 90px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #1a1a21;
  color: #f9f7f1;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.32;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 780px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero p {
  margin: 0;
  color: #e6e1d7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 24px;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--accent-dark);
}

.section {
  padding: 70px 6vw;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.asym-card {
  flex: 1 1 280px;
  background: var(--panel);
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(25, 20, 35, 0.08);
}

.asym-card.offset {
  transform: translateY(18px);
}

.image-frame {
  background: #d9d4cd;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.wide-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  background: var(--highlight);
  border-radius: 26px;
  padding: 32px;
  align-items: center;
}

.wide-text {
  flex: 1 1 320px;
}

.wide-image {
  flex: 1 1 280px;
  min-height: 240px;
}

.services-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--panel);
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 12px;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--border);
}

.form-panel {
  background: #16151b;
  color: #f6f1e8;
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-panel label {
  font-size: 0.9rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  margin-top: 6px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row > div {
  flex: 1 1 200px;
}

.footer {
  margin-top: auto;
  background: #0f0f14;
  color: #e9e3d7;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #f0d7b2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cfc6ba;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(20, 18, 28, 0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  color: var(--ink);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(20, 18, 28, 0.18);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner.is-hidden {
  display: none;
}

.bg-context {
  background: #101018;
  color: #f2eee7;
  position: relative;
  overflow: hidden;
}

.bg-context::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.bg-context .section-content {
  position: relative;
}

.bg-crowd {
  background: #f0ece5;
  position: relative;
  overflow: hidden;
}

.bg-crowd::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.bg-crowd .section-content {
  position: relative;
}

.legal-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.notice {
  background: #f7efe3;
  padding: 14px 18px;
  border-radius: 14px;
}

@media (max-width: 800px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
