* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2428;
  --muted: #5f6b75;
  --accent: #1d6fa5;
  --accent-dark: #13547a;
  --paper: #f7f4ef;
  --soft: #e7eef4;
  --warm: #f2e5d5;
  --outline: #d7dfe6;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  font-family: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--outline);
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
}

.hero {
  background: var(--soft);
}

.hero.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-overlay {
  background: rgba(23, 38, 48, 0.7);
  padding: 80px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > .column {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin-bottom: 16px;
}

.hero p {
  max-width: 540px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid #ffffff;
}

.content-section {
  padding: 70px 6vw;
}

.content-section.alt {
  background: var(--paper);
}

.content-section.warm {
  background: var(--warm);
}

.content-section.context {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.context .layer {
  background: rgba(25, 33, 39, 0.7);
  padding: 60px;
  max-width: 860px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card.media {
  padding: 0;
  overflow: hidden;
}

.card .card-body {
  padding: 18px;
}

.card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.image-frame {
  background: #dbe5ec;
  border-radius: 18px;
  overflow: hidden;
}

.bg-frame-1 { background-color: #2b3a44; }
.bg-frame-2 { background-color: #d7e1e7; }
.bg-frame-3 { background-color: #e6edf2; }
.bg-frame-4 { background-color: #e2e7ec; }
.bg-frame-5 { background-color: #dfe6ec; }
.bg-frame-6 { background-color: #f4dfc7; }
.bg-frame-7 { background-color: #e0e5ea; }
.bg-frame-8 { background-color: #dde4ea; }

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.input,
select {
  padding: 10px 12px;
  border: 1px solid var(--outline);
  border-radius: 10px;
  font-size: 1rem;
}

.inline-cta {
  font-weight: 600;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent-dark);
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.site-footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #101418;
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: space-between;
}

.footer-grid a {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--outline);
  padding: 16px 20px;
  display: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.text-small {
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-content {
  max-width: 900px;
}

.page-hero {
  padding: 60px 6vw;
  background: var(--soft);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--outline);
}

.table-row span {
  flex: 1 1 220px;
}

.contact-block {
  background: #ffffff;
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: 22px;
}

.hidden {
  display: none;
}

@media (max-width: 860px) {
  .hero-overlay {
    padding: 60px 6vw;
  }

  .context .layer {
    padding: 36px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
