* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 6vw;
  background: #f3efe8;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand a {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  display: inline-block;
  background: #1f1f1f;
  color: #fff;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 12px;
  width: fit-content;
}

.ad-note {
  font-size: 13px;
  color: #4d4d4d;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.main-nav a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw 20px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 320px;
  background: #c8c2b9;
  display: flex;
  align-items: stretch;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #c8c2b9;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 18px;
  border-radius: 6px;
  border: 0;
  background: #1f1f1f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #e2d8c8;
  color: #1f1f1f;
}

.section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #fff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-card {
  flex: 1 1 280px;
  background: #d8d1c7;
  min-height: 240px;
  display: flex;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #d8d1c7;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  background-color: #d8d1c7;
}

.offset-box {
  margin-left: 8vw;
  background: #1f1f1f;
  color: #fff;
  padding: 24px;
  border-radius: 16px;
}

.testimonial {
  background: #fef7e5;
  padding: 16px;
  border-radius: 12px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-card {
  flex: 1 1 250px;
  border: 1px solid #ded6ca;
  border-radius: 10px;
  padding: 18px;
  background: #fffdf9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #d4cbbd;
  font-size: 15px;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.floating-cta a {
  display: inline-block;
  padding: 12px 16px;
  background: #0f5c4a;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
}

.footer {
  padding: 32px 6vw;
  background: #1f1f1f;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #e1d8cc;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #ded6ca;
  padding: 16px 6vw;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-hero {
  padding: 36px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.simple-hero-image {
  background: #d7cdc1;
  display: flex;
}

.simple-hero-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background-color: #d7cdc1;
}

.list-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.list-columns ul {
  margin: 0;
  padding-left: 18px;
}

.note-box {
  background: #ffffff;
  padding: 18px;
  border-left: 4px solid #0f5c4a;
}

.photo-section {
  background-color: #2a2a2a;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1482192596544-9eb780fc7f66?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.photo-section .panel {
  background: rgba(15, 15, 15, 0.6);
  padding: 18px;
  border-radius: 12px;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .offset-box {
    margin-left: 0;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
  }
}
