* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1b1b;
  background: #f6f5f2;
  line-height: 1.6;
}

a {
  color: #1b4b3a;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 12px;
  background: #f6f5f2;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.nav-disclosure {
  padding: 6px 10px;
  border: 1px solid #d7d2c9;
  border-radius: 999px;
  font-size: 12px;
  color: #4a4a4a;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 6vw 60px;
  gap: 32px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 32px;
  max-width: 520px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-left: auto;
}

.hero-image {
  width: 100%;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #d4dcd6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  background: #1b4b3a;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  border: 1px solid #1b4b3a;
  color: #1b4b3a;
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: #ffffff;
}

.section-photo {
  background-color: #1e2a26;
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 24, 0.65);
}

.section-photo .simple-content {
  position: relative;
}

.asymmetric-row {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.asymmetric-row.split {
  flex-direction: row;
  align-items: stretch;
}

.offset-panel {
  background: #eef1ed;
  padding: 28px;
  border-radius: 16px;
  margin-top: 18px;
  margin-left: auto;
  width: 75%;
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #e3e5df;
}

.image-frame.tall {
  height: 360px;
}

.image-frame.short {
  height: 260px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 240px;
  min-width: 240px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.service-card .price {
  font-weight: 700;
  color: #1b4b3a;
}

.service-card button {
  align-self: flex-start;
}

.floating-cta {
  position: sticky;
  bottom: 12px;
  margin-left: auto;
  background: #1b4b3a;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 18px;
  max-width: 320px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
}

.testimonial {
  background: #2b3d35;
  color: #ffffff;
  padding: 28px;
  border-radius: 18px;
}

.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.form-card label {
  font-size: 14px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2d2d2;
  font-size: 14px;
}

.form-card button {
  width: fit-content;
}

.footer {
  margin-top: auto;
  background: #1c2420;
  color: #f4f3ee;
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f4f3ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 6vw 40px;
}

.page-hero .image-frame {
  height: 240px;
}

.simple-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-image {
    flex: 1 1 50%;
    height: 460px;
  }

  .hero-card {
    margin-left: -120px;
  }

  .asymmetric-row {
    flex-direction: row;
    align-items: center;
  }

  .asymmetric-row.reverse {
    flex-direction: row-reverse;
  }

  .asymmetric-row.split > div {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-card {
    flex: 1;
  }
}
