* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e1f22;
  background: #f5f4f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  padding: 24px 20px 0;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.nav-rail {
  margin-top: 24px;
  background: #0f1b22;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-rail a {
  font-size: 0.95rem;
  letter-spacing: 0.06rem;
}

.nav-note {
  font-size: 0.78rem;
  opacity: 0.7;
}

.hero {
  margin: 32px 20px 0;
  border-radius: 28px;
  padding: 40px 24px;
  background: linear-gradient(135deg, rgba(15, 27, 34, 0.82), rgba(15, 27, 34, 0.2)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.hero .cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: #ff7a42;
  color: #1e1f22;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.section {
  margin: 30px 20px;
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.section.dark {
  background: #101b22;
  color: #f2f5f7;
}

.section.accent {
  background: #ffe8d7;
}

.section.offset-left {
  margin-right: 40px;
}

.section.offset-right {
  margin-left: 40px;
}

.layered-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(15, 27, 34, 0.12);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split img {
  border-radius: 16px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e7ecef;
  font-size: 0.85rem;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: #f0f2f4;
}

.price {
  font-size: 1.15rem;
  font-weight: 600;
}

.quote {
  font-style: italic;
  border-left: 3px solid #ff7a42;
  padding-left: 14px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6dbe0;
  font-size: 1rem;
}

.inline-cta {
  color: #ff7a42;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #0f1b22;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  box-shadow: 0 18px 40px rgba(15, 27, 34, 0.25);
}

.footer {
  padding: 40px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #3b3f44;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 32px rgba(15, 27, 34, 0.2);
  max-width: 300px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #0f1b22;
  color: #fff;
}

.cookie-reject {
  background: #e7ecef;
}

.page-hero {
  margin: 24px 20px 0;
  padding: 30px 22px;
  border-radius: 24px;
  background: #101b22;
  color: #fff;
}

.contact-card {
  background: #f0f2f4;
  border-radius: 16px;
  padding: 18px;
}

@media (min-width: 900px) {
  .site-shell {
    flex-direction: row;
  }

  .header {
    width: 260px;
    padding: 30px;
  }

  .main-content {
    flex: 1;
    padding-bottom: 60px;
  }

  .hero {
    margin: 40px 40px 0 0;
    padding: 60px;
  }

  .section {
    margin: 40px 60px 0 0;
    padding: 34px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .footer {
    padding-left: 0;
  }

  .page-hero {
    margin-right: 60px;
  }
}
