* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #2c1f1a;
  background-color: #fbf7f2;
  line-height: 1.6;
}

a {
  color: #5a2f1e;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-nav {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: #7a5a4a;
  border: 1px solid #d9c6ba;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #fff6ef;
}

.hero {
  padding: 40px 0 70px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 0;
}

.hero-copy p {
  margin: 0;
  color: #50342a;
}

.btn {
  border: none;
  background-color: #6d3b2b;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background-color: #f3e4da;
  color: #4b2b20;
}

.btn.ghost {
  background-color: transparent;
  border: 1px solid #6d3b2b;
  color: #6d3b2b;
}

.hero-image,
.img-wrap,
.card-image {
  background-color: #e6d5cb;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background-color: #f4e9df;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.inline-card {
  background-color: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background-color: #fff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #3c241c;
}

.form-wrap {
  background-color: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d8c7bd;
  font-size: 15px;
  font-family: inherit;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highlight-box {
  background-color: #2b1a14;
  color: #fff;
  padding: 28px;
  border-radius: 16px;
}

.footer {
  padding: 50px 0;
  background-color: #2a1b16;
  color: #f7ede6;
}

.footer a {
  color: #f7ede6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #e8d8cd;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  display: flex;
  justify-content: center;
  padding: 12px;
  z-index: 2;
}

.sticky-cta button {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  width: min(320px, 92%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 0;
}

.list-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.list-columns > div {
  flex: 1 1 250px;
}
