.root {
  min-height: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2326;
  background-color: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  background-color: #f7f4ef;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 15px;
}

.ad-disclosure {
  font-size: 12px;
  color: #4b4f54;
  background: #e7e1d6;
  padding: 6px 10px;
  border-radius: 999px;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 6% 12px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0;
}

.hero-visual {
  flex: 1 1 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 320px;
}

.hero-visual .image-frame {
  width: 100%;
  max-width: 520px;
  background-color: #e4d9c8;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transform: rotate(-2deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #2b4c3f;
  color: #f9f6f1;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(43, 76, 63, 0.2);
}

.button.secondary {
  background-color: #f0b36a;
  color: #2a1e12;
}

.section {
  padding: 36px 6%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.alt {
  background-color: #efe9df;
}

.asymmetric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.asymmetric-row.reverse {
  flex-direction: row-reverse;
}

.asymmetric-row .column {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.offset-card.pull {
  margin-top: -24px;
}

.image-frame {
  background-color: #d7cbb7;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-card .content {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #2b4c3f;
  font-size: 18px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.timeline .step {
  flex: 1 1 200px;
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
}

.testimonial {
  font-style: italic;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc6b8;
  font-size: 15px;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
}

.inline-link {
  color: #2b4c3f;
  font-weight: 600;
  border-bottom: 1px solid #2b4c3f;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  background: #2b4c3f;
  color: #f9f6f1;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.footer {
  background: #1f2326;
  color: #f9f6f1;
  padding: 36px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  background: #efe9df;
  border-radius: 999px;
  font-size: 12px;
}

.split-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.split-list .item {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

.legal {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hero-copy h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
