* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f5f3ef;
  --bg-dark: #1f2a22;
  --accent: #e26b2a;
  --accent-soft: #f2c4a8;
  --text: #1b1b1b;
  --muted: #5a5a5a;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 26px 6vw 12px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 6vw 40px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--card);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 32px;
  margin-top: 18px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.offset-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 6vw;
}

.offset-card {
  background: var(--card);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.offset-card.tilt-right {
  margin-left: 6vw;
}

.offset-card.tilt-left {
  margin-right: 6vw;
}

.split-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-stack .split-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-dark);
  color: #fff;
  padding: 28px;
  border-radius: 24px;
}

.light-panel {
  background: var(--card);
  padding: 34px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--card);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-row .image-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stats-band {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 24px;
  background: var(--accent-soft);
}

.stats-band .stat {
  font-weight: 600;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: italic;
}

.form-section {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d2d2d2;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background: #111;
  color: #f5f5f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.footer a {
  color: #f5f5f5;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-header {
  padding: 30px 6vw 10px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 20px 6vw 60px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list-block li {
  list-style: disc;
}

.contact-card {
  background: var(--card);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

@media (min-width: 820px) {
  .hero {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-wrap {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .offset-row {
    flex-direction: row;
  }

  .offset-card {
    flex: 1;
  }

  .split-stack {
    flex-direction: row;
  }

  .split-stack .split-item {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 20px);
  }

  .image-row {
    flex-direction: row;
  }

  .image-row .image-block {
    flex: 1;
  }

  .stats-band {
    flex-direction: row;
    justify-content: space-between;
  }

  .form-section {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-section .light-panel {
    flex: 1;
  }

  .form-section form {
    flex: 1;
  }
}
