* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f5f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  overflow: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 28px 8vw 10px;
  background: #f5f3ef;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand span {
  font-size: 12px;
  color: #7a6d5d;
}

.brand strong {
  font-size: 22px;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: #1c1c1c;
}

.hero-asym {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 60px 8vw 80px;
  gap: 32px;
  background: #f5f3ef;
}

.hero-asym::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -120px;
  width: 60%;
  height: 70%;
  background: #d6cdbf;
  transform: rotate(-2deg);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 17px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary,
.btn-outline {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 2px solid #1c1c1c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #1c1c1c;
  color: #f5f3ef;
}

.btn-outline {
  background: transparent;
  color: #1c1c1c;
}

.hero-image {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  max-width: 520px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  max-width: 640px;
}

.offset-panel {
  background: #1c1c1c;
  color: #f5f3ef;
  padding: 26px;
  border-radius: 16px;
  transform: translateX(18px);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split .col {
  flex: 1;
}

.split.reverse {
  flex-direction: column-reverse;
}

.mini-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mini-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.mini-card img {
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 16px;
}

.tag {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: #7a6d5d;
  margin-bottom: 8px;
}

.services-band {
  background: #ebe5db;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 18px;
}

.service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-price {
  font-weight: 600;
}

.flow-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flow-step {
  background: #ffffff;
  padding: 16px 20px;
  border-left: 4px solid #1c1c1c;
}

.overlap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.overlap img {
  border-radius: 18px;
}

.overlap .overlay-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  margin-top: -40px;
  margin-left: 20px;
  width: fit-content;
}

.quote {
  font-style: italic;
}

.cta-panel {
  background: #1c1c1c;
  color: #f5f3ef;
  padding: 36px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-panel a {
  color: #f5f3ef;
  text-decoration: underline;
}

.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-size: 14px;
  color: #5b5146;
}

.form-card input,
.form-card select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c7bcae;
  font-size: 15px;
  background: #faf8f4;
}

.form-helper {
  font-size: 13px;
  color: #6f6255;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
}

.sticky-cta a {
  background: #e07c35;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(224, 124, 53, 0.4);
}

.footer {
  padding: 50px 8vw 70px;
  background: #1c1c1c;
  color: #f5f3ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #1c1c1c;
  color: #f5f3ef;
}

.cookie-reject {
  background: #e8e2d8;
  color: #1c1c1c;
}

.page-title {
  padding: 40px 8vw 10px;
  font-size: clamp(30px, 4vw, 44px);
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.policy {
  max-width: 820px;
}

@media (min-width: 768px) {
  .hero-asym {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split,
  .split.reverse {
    flex-direction: row;
  }

  .mini-grid {
    flex-direction: row;
  }

  .flow-row {
    flex-direction: row;
  }

  .flow-step {
    flex: 1;
  }
}
