* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background: #f7f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: #1f2328;
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

.split-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.split-nav .brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.split-nav .nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.floating-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1f2328;
  color: #f7f3ef;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  margin-top: 12px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: #efe7df;
  border-radius: 24px;
  position: relative;
}

.hero-text::after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: 20px;
  width: 120px;
  height: 120px;
  background: #d7c7b6;
  border-radius: 22px;
  z-index: -1;
}

.hero-image {
  flex: 1 1 420px;
  min-height: 320px;
  border-radius: 32px;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.45), transparent);
  border-radius: 32px;
}

.hero-image p {
  position: relative;
  margin: 0;
  font-size: 18px;
  max-width: 320px;
}

.section {
  margin: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #f0ece8;
  padding: 40px;
  border-radius: 30px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.08);
  position: relative;
}

.offset-card.is-shifted {
  margin-top: 28px;
  background: #f8f1e8;
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.image-row img {
  flex: 1 1 180px;
  min-height: 160px;
  object-fit: cover;
}

.callout {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 28px;
  border-radius: 22px;
  background: #1f2328;
  color: #f7f3ef;
}

.callout a {
  color: #f7f3ef;
  text-decoration: underline;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.step {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  border-left: 4px solid #c2a989;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card .price {
  font-size: 22px;
  font-weight: 600;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #1f2328;
  color: #f7f3ef;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid #1f2328;
  border-radius: 999px;
  font-weight: 600;
  background: transparent;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d7c7b6;
  font-size: 15px;
  font-family: inherit;
}

.form-side {
  flex: 1 1 260px;
  padding: 24px;
  border-radius: 22px;
  background: #efe7df;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin-left: auto;
  margin-right: 0;
  width: fit-content;
  z-index: 3;
}

.banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #1f2328;
  color: #f7f3ef;
  border-radius: 16px;
  padding: 16px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 5;
  flex-wrap: wrap;
}

.banner.show {
  display: flex;
}

.banner button {
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
}

.banner .accept {
  background: #f7f3ef;
  color: #1f2328;
}

.banner .reject {
  background: transparent;
  color: #f7f3ef;
  border: 1px solid #f7f3ef;
}

footer {
  border-top: 1px solid #d7c7b6;
  padding-top: 32px;
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.column {
  flex: 1 1 240px;
}

.note-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(31, 35, 40, 0.08);
}

@media (max-width: 720px) {
  .split-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-text::after {
    display: none;
  }

  .hero-image {
    min-height: 240px;
  }
}
