* {
  box-sizing: border-box;
}

:root {
  --ink: #111114;
  --muted: #5b5f6a;
  --paper: #f7f4ef;
  --accent: #b73b2b;
  --accent-dark: #8c2a1e;
  --sage: #cbd2c6;
  --stone: #e2ded6;
  --shadow: rgba(18, 22, 35, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--stone);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: var(--stone);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 0 32px;
}

.hero-copy {
  flex: 1 1 360px;
  min-width: 280px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0 0 20px;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-media {
  flex: 1 1 320px;
  min-width: 260px;
  position: relative;
}

.hero-media img {
  border-radius: 18px;
  box-shadow: 0 24px 60px var(--shadow);
}

.hero-overlay {
  position: absolute;
  bottom: -18px;
  left: 18px;
  background: var(--paper);
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 14px 30px var(--shadow);
  font-size: 0.95rem;
}

.cta-primary,
.cta-secondary,
.cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-primary {
  background: var(--accent);
  color: #fff;
}

.cta-secondary {
  background: var(--ink);
  color: #fff;
}

.cta-ghost {
  background: transparent;
  border: 1px solid var(--ink);
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-ghost:hover {
  transform: translateY(-2px);
}

.section {
  padding: 54px 0;
  border-bottom: 1px solid var(--stone);
}

.section:last-of-type {
  border-bottom: none;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.col-60 {
  flex: 1 1 60%;
  min-width: 280px;
}

.col-40 {
  flex: 1 1 34%;
  min-width: 220px;
}

.col-50 {
  flex: 1 1 46%;
  min-width: 240px;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quote-card {
  background: var(--paper);
  padding: 22px;
  border-radius: 14px;
  font-style: italic;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  flex: 1 1 160px;
  background: var(--ink);
  color: #fff;
  padding: 18px;
  border-radius: 16px;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
}

.layered {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: var(--sage);
  border-radius: 50%;
  opacity: 0.6;
}

.panel {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 20px 50px var(--shadow);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  border-radius: 12px;
  height: 140px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-family: inherit;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

.testimonial {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #fff;
}

.footer {
  padding: 44px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--stone);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px var(--shadow);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid var(--stone);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 40px var(--shadow);
  z-index: 6;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.muted {
  color: var(--muted);
}

.page-title {
  font-size: 2rem;
  margin: 40px 0 10px;
}

.contact-block {
  background: var(--paper);
  padding: 22px;
  border-radius: 16px;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.image-strip img {
  flex: 1 1 180px;
  border-radius: 12px;
  height: 140px;
  object-fit: cover;
}

.policy {
  max-width: 860px;
}

@media (max-width: 720px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-overlay {
    position: static;
    margin-top: 12px;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    text-align: center;
  }
}
