* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f23;
  background: #f6f3ef;
}

a {
  color: #1b1f23;
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 24px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: #1b1f23;
  color: #f6f3ef;
  font-size: 12px;
  border-radius: 16px;
}

.hero {
  padding: 40px 0 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-content {
  flex: 1 1 360px;
  padding: 18px 18px 18px 0;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 54px);
  margin: 0 0 18px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  border: none;
  background: #1b1f23;
  color: #f6f3ef;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 600;
}

.button-link {
  display: inline-block;
  background: #1b1f23;
  color: #f6f3ef;
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
}

.button-link.alt {
  background: #d6c2a3;
  color: #1b1f23;
}

.button.alt {
  background: #d6c2a3;
  color: #1b1f23;
}

.hero-media {
  flex: 1 1 380px;
  position: relative;
  background: #dfe2e8;
  min-height: 360px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  border-radius: 18px;
  overflow: hidden;
  transform: translateY(20px);
}

.offset-strip {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-card {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(27, 31, 35, 0.08);
  transform: translateY(-18px);
}

.offset-card h2,
.offset-card h3 {
  margin-top: 0;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 50px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-text h2 {
  margin-top: 0;
}

.img-wrap {
  flex: 1 1 340px;
  background: #d7d3c8;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.bg-hero {
  background: #dfe2e8;
}

.bg-paper {
  background: #e0dbd0;
}

.bg-warm {
  background: #d7d3c8;
}

.bg-soft {
  background: #e4ddd3;
}

.bg-cloud {
  background: #dfe2e8;
}

.layered {
  background: #1b1f23;
  color: #f6f3ef;
  padding: 60px 0;
  margin: 40px 0;
}

.bg-section {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  margin: 40px 0;
  color: #f6f3ef;
  overflow: hidden;
  background: #1b1f23;
}

.bg-section .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.bg-section .bg-overlay {
  position: relative;
  z-index: 1;
  background: rgba(27, 31, 35, 0.72);
  padding: 24px;
  border-radius: 18px;
  width: min(560px, 90%);
}

.layered .card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  color: #1b1f23;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.service-body button {
  align-self: flex-start;
}

.form-section {
  background: #f0e8dc;
  padding: 50px 0;
  margin-top: 40px;
}

.form-box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
}

.form-box form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box label {
  font-weight: 600;
}

.form-box input,
.form-box select,
.form-box textarea {
  padding: 10px 12px;
  border: 1px solid #c9c3b9;
  border-radius: 8px;
  font-size: 16px;
}

.form-note {
  flex: 1 1 260px;
}

.form-note h3 {
  margin-top: 0;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.testimonial {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
}

.footer {
  padding: 40px 0 80px;
  background: #1b1f23;
  color: #f6f3ef;
  margin-top: 40px;
}

.footer a {
  color: #f6f3ef;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 14px;
  line-height: 1.6;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1b1f23;
  color: #f6f3ef;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: #d6c2a3;
  color: #1b1f23;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(27, 31, 35, 0.15);
  max-width: 320px;
  z-index: 11;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
}

.cookie-accept {
  background: #1b1f23;
  color: #f6f3ef;
}

.cookie-reject {
  background: #d6c2a3;
  color: #1b1f23;
}

.page-hero {
  padding: 40px 0 20px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
}

.list-section {
  padding: 30px 0 40px;
}

.list-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #ddd5c9;
}

.list-item:last-child {
  border-bottom: none;
}

.list-content {
  flex: 1 1 320px;
}

.list-media {
  flex: 1 1 260px;
  background: #e0dbd0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 30px 0;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
}

.legal-content {
  padding: 20px 0 40px;
  line-height: 1.7;
}

.back-link {
  margin-top: 20px;
  display: inline-block;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
