* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1d;
  background: #f7f4f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 8vw;
  background: #f0ece8;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 64px 8vw;
  gap: 24px;
  background: #161616;
  color: #f7f4f2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f7f4f2;
  color: #161616;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: #f7f4f2;
  border-color: rgba(247, 244, 242, 0.5);
}

.button.dark {
  background: #161616;
  color: #f7f4f2;
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #efe7e0;
}

.section.dark {
  background: #1f1f1f;
  color: #f7f4f2;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(24, 24, 24, 0.08);
}

.card.dark {
  background: #2c2c2c;
  color: #f7f4f2;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid currentColor;
  align-self: flex-start;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(20, 20, 20, 0.08);
}

.service-price {
  font-weight: 700;
  font-size: 18px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(15, 15, 15, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1c7be;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  padding: 40px 8vw 80px;
  background: #161616;
  color: #f7f4f2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #161616;
  color: #f7f4f2;
  padding: 12px 16px;
  border-radius: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 14px 30px rgba(10, 10, 10, 0.2);
  z-index: 10;
}

.sticky-cta .button {
  padding: 8px 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f7f4f2;
  border-top: 1px solid #d6cdc5;
  padding: 18px 8vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(10, 10, 10, 0.15);
}

.note {
  font-size: 13px;
  color: #6f655b;
}

.muted {
  color: #6e6861;
}

@media (min-width: 900px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content,
  .hero-cta {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .card-row {
    flex-direction: row;
  }

  .columns {
    flex-direction: row;
    align-items: flex-start;
  }

  .columns > * {
    flex: 1;
  }
}
