* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1f23;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: #f7f4ef;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #1e1f23;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1e1f23;
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.section {
  padding: 70px 6%;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: #6c6361;
  margin-bottom: 10px;
}

.headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 14px;
  line-height: 1.15;
}

.lead {
  font-size: 1.1rem;
  margin: 0 0 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1e1f23;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: #1e1f23;
  color: #fff;
}

.btn.ghost {
  background: transparent;
}

.layer-card {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.badge-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.badge {
  background: #efe6dc;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.quote {
  background: #1e1f23;
  color: #fff;
  padding: 26px;
  border-radius: 18px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.price-item span {
  font-weight: 600;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.service-card img {
  border-radius: 14px;
  margin-bottom: 12px;
  height: 140px;
  width: 100%;
  object-fit: cover;
}

.form-wrap {
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d2cd;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 40px 6%;
  background: #1e1f23;
  color: #fdfbf7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 18px 6%;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.section.alt {
  background: #fff;
}

.section.deep {
  background: #efe6dc;
}

.stacked-note {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border-left: 4px solid #1e1f23;
}

.mini-list {
  margin: 0;
  padding-left: 20px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .two-column {
    flex-direction: row;
  }
}

.hero-image {
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
