*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1b1c1f;
  background: #f7f5f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 6vw 12px;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.8px;
}

.nav-list a {
  padding: 6px 10px;
  border-radius: 16px;
  background: #f0e6d7;
}

.hero {
  position: relative;
  padding: 24px 6vw 80px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text {
  max-width: 560px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-card {
  align-self: flex-start;
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(20, 24, 32, 0.08);
  margin-left: 8vw;
  max-width: 420px;
}

.hero-image {
  position: relative;
  margin-top: -40px;
  margin-left: auto;
  width: min(520px, 85vw);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(27, 28, 31, 0.2);
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section--tint {
  background: #efe7da;
}

.section--dark {
  background: #1b1c1f;
  color: #f7f5f0;
}

.section--accent {
  background: #dbe9f4;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row.offset {
  margin-left: 8vw;
}

.asym-row.right {
  align-items: flex-end;
}

.asym-row.right .panel {
  max-width: 520px;
}

.panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(20, 24, 32, 0.08);
}

.panel--soft {
  background: #f7f5f0;
  box-shadow: none;
  border: 1px solid #e0d7c8;
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-stack img {
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 22px rgba(20, 24, 32, 0.08);
}

.card img {
  width: 64px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1b1c1f;
  color: #f7f5f0;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.btn.outline {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.cta-inline {
  font-weight: 700;
  border-bottom: 2px solid currentColor;
  display: inline-flex;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  position: relative;
}

.split-panel::after {
  content: "";
  position: absolute;
  top: 18px;
  right: -18px;
  width: 120px;
  height: 120px;
  background: #ffd89a;
  border-radius: 24px;
  z-index: -1;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.form-block {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  border: 1px solid #ded3c2;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-option input {
  accent-color: #1b1c1f;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ded3c2;
  font: inherit;
  background: #fdfbf8;
}

footer {
  padding: 48px 6vw 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffd89a;
  color: #1b1c1f;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(20, 24, 32, 0.2);
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(20, 24, 32, 0.18);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 40px 6vw 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meta-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.meta-grid .panel {
  margin-left: 6vw;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 768px) {
  .nav-shell {
    align-items: center;
  }

  .nav-list {
    flex-direction: row;
  }

  .hero-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-card {
    margin-left: 0;
    margin-top: 40px;
  }

  .section {
    padding: 90px 8vw;
  }

  .asym-row {
    flex-direction: row;
    align-items: center;
  }

  .asym-row.offset {
    margin-left: 0;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 220px;
  }

  .meta-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .meta-grid .panel {
    flex: 1 1 260px;
    margin-left: 0;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid .panel {
    flex: 1 1 260px;
  }
}
