:root {
  color-scheme: light;
  --ink: #1c1f2a;
  --muted: #5b6270;
  --accent: #2b5cff;
  --accent-dark: #1c3fb2;
  --sand: #f4f2ee;
  --mist: #eef1f6;
  --night: #0f172a;
  --paper: #ffffff;
  --line: #d9dee8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  background: var(--paper);
}

.site-header {
  padding: 24px 8vw 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent-dark);
  text-decoration: underline;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.section {
  padding: 80px 8vw;
}

.tone-sand {
  background: var(--sand);
}

.tone-mist {
  background: var(--mist);
}

.tone-night {
  background: var(--night);
  color: var(--paper);
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1;
  min-width: 0;
}

.hero {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}

.hero .split {
  position: relative;
  z-index: 1;
}

.hero h1,
.hero p {
  color: var(--paper);
}

.hero .cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--paper);
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
}

.button.secondary:hover,
.button.secondary:focus {
  background: rgba(255, 255, 255, 0.15);
}

.stat-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
  border-radius: 14px;
  min-width: 150px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.title {
  font-size: 2.4rem;
  margin: 12px 0 16px;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.85);
}

.media-box {
  background: #cfd6e5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.18);
}

.media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list {
  padding-left: 18px;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.card h3 {
  margin: 0 0 8px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.card button {
  margin-top: 12px;
}

.card .card-media {
  flex: 0 0 120px;
  height: 120px;
  background: #dbe2f1;
  border-radius: 14px;
  overflow: hidden;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: var(--paper);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

.form-panel {
  background: var(--paper);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

.inline-link:hover,
.inline-link:focus {
  text-decoration: underline;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1515169067865-5387ec356754?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 242, 238, 0.9);
}

.section-bg .split {
  position: relative;
  z-index: 1;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--night);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
  z-index: 5;
}

.sticky-cta a {
  color: var(--paper);
}

.site-footer {
  padding: 48px 8vw;
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-block {
  max-width: 320px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--ink);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  text-decoration: underline;
}

.disclaimer {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  display: none;
  z-index: 6;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.hero-about .split {
  position: relative;
  z-index: 1;
}

.hero-about h1 {
  color: var(--paper);
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-services::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
}

.hero-services .split {
  position: relative;
  z-index: 1;
}

.hero-services h1 {
  color: var(--paper);
}

@media (max-width: 980px) {
  .split {
    flex-direction: column;
  }

  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
    max-width: none;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-content: space-between;
  }
}
