*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2933;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: #14532d;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background: #f3efe6;
  border-bottom: 1px solid #d7d2c7;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #4b5563;
  border: 1px solid #c7c0b2;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff6e8;
  flex-shrink: 0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw 64px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(31, 41, 51, 0.12);
  max-width: 520px;
}

.hero-media {
  align-self: flex-end;
  max-width: 720px;
  width: 100%;
  margin-top: -60px;
  border-radius: 28px;
  overflow: hidden;
  background: #d6d0c4;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: #f0ebe2;
}

.section.deep {
  background: #1f2933;
  color: #f9fafb;
}

.section.backdrop {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #f9fafb;
}

.section.backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}

.backdrop-content {
  position: relative;
  z-index: 1;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row.split {
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
}

.asym-block {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.08);
}

.asym-block.dark {
  background: #20412d;
  color: #f1f5f9;
}

.media-frame {
  background: #d6d0c4;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
}

.media-frame img {
  width: 100%;
  height: 100%;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1 1 240px;
  min-width: 220px;
  box-shadow: 0 14px 30px rgba(31, 41, 51, 0.12);
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-tag {
  font-weight: 700;
  color: #14532d;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: #14532d;
  color: #fffaf0;
}

.btn.secondary {
  background: #f5e9d6;
  color: #1f2933;
}

.btn.light {
  background: #ffffff;
  color: #1f2933;
  border: 1px solid #ded6c7;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid #14532d;
  padding-bottom: 2px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.14);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4ccc0;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 6vw;
  background: #20412d;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.sticky-cta button {
  background: #f5e9d6;
  color: #1f2933;
}

.site-footer {
  background: #1f2933;
  color: #e5e7eb;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  max-width: 360px;
  box-shadow: 0 16px 36px rgba(31, 41, 51, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-wrapper {
  padding: 48px 6vw 72px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.content-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.08);
}

@media (max-width: 900px) {
  .hero-media {
    margin-top: 0;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
  }
}
