:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #5b5b5b;
  --accent: #2f5bff;
  --accent-dark: #1c3cd6;
  --surface: #f5f3ef;
  --surface-alt: #eef1f7;
  --line: #d8d6d0;
  --soft: #ffffff;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fafafa;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  padding: 24px 6vw 8px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: var(--ink);
}

.menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu a {
  font-size: 0.95rem;
  color: var(--ink);
}

.menu a:hover {
  color: var(--accent);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface);
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: var(--surface);
}

.section.alt-2 {
  background: var(--surface-alt);
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.content {
  flex: 1;
  min-width: 280px;
}

.media {
  flex: 1;
  min-width: 280px;
}

.image-frame {
  background: #d7d4ce;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2c2f3a;
  color: #fff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 20, 0.55);
}

.hero .split {
  position: relative;
  z-index: 1;
}

.hero h1,
.hero p {
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #e0e0e0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.callout {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
}

.meta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.meta-row span {
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--soft);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
}

.service-card .thumb {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  background: #d9d9d9;
  flex-shrink: 0;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.quotes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
}

.quotes li {
  padding: 14px 16px;
  background: #ffffff;
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  color: var(--muted);
}

.form-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

footer {
  padding: 40px 6vw 60px;
  border-top: 1px solid var(--line);
  background: #fdfdfd;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-grid div {
  min-width: 220px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  padding: 12px 6vw;
  background: rgba(21, 21, 21, 0.92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 5;
}

.sticky-cta a {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 10;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1500522144261-ea64433bbe27?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a2f36;
  color: #fff;
  position: relative;
}

.hero-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 30, 0.6);
}

.hero-about .split {
  position: relative;
  z-index: 1;
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #28303a;
  color: #fff;
  position: relative;
}

.hero-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 30, 0.6);
}

.hero-services .split {
  position: relative;
  z-index: 1;
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2b3038;
  color: #fff;
  position: relative;
}

.hero-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 30, 0.6);
}

.hero-contact .split {
  position: relative;
  z-index: 1;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2f3540;
  color: #fff;
}

.section-bg .callout {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
