* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2326;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #f7f4f0;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: #e7e1da;
}

.hero {
  padding: 32px 6vw 60px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 56px 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: column;
}

.split .copy,
.split .visual {
  flex: 1;
}

.split .copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #8a6d5a;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}

.btn-primary {
  background: #1f2326;
  color: #f7f4f0;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #1f2326;
}

.highlight {
  background: #efe8e0;
  border-radius: 24px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 25px rgba(22, 21, 20, 0.08);
}

.price {
  font-weight: 700;
  color: #725640;
}

.inline-link {
  font-weight: 600;
  color: #7d4b2c;
}

.quote {
  padding: 18px;
  border-left: 3px solid #7d4b2c;
  background: #fff8f1;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 24px rgba(22, 21, 20, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfc7bf;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1f2326;
  color: #f7f4f0;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 50;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 48px;
  background: #ece5dc;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(22, 21, 20, 0.12);
  max-width: 320px;
  z-index: 60;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}

.cookie-accept {
  background: #1f2326;
  color: #f7f4f0;
}

.cookie-reject {
  background: #e7e1da;
  color: #1f2326;
}

.page-header {
  padding: 24px 6vw 0;
}

.page-header h1 {
  font-size: 30px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal {
  padding: 32px 6vw 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.services-grid .card {
  flex-direction: row;
  align-items: center;
  gap: 18px;
}

.services-grid .card img {
  width: 120px;
  height: 90px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .cards {
    flex-direction: row;
  }

  .two-col {
    flex-direction: row;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .services-grid .card {
    flex: 1 1 calc(50% - 12px);
  }
}
