* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1e1f22;
  background: #f7f5f2;
  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;
}

.site-header {
  padding: 24px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: #d36a35;
}

.hero {
  padding: 16px 6vw 40px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content,
.split-visual {
  flex: 1;
}

.split-visual {
  position: relative;
}

.hero-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(24, 24, 24, 0.12);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #7c5f52;
}

.headline {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  margin: 8px 0 12px;
}

.subhead {
  font-size: 1.05rem;
  color: #4b4a48;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #d36a35;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: #2e3a3f;
}

.btn.ghost {
  background: transparent;
  color: #2e3a3f;
  border: 2px solid #2e3a3f;
}

.btn:hover {
  transform: translateY(-2px);
}

.inline-link {
  color: #d36a35;
  font-weight: 600;
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background: #efe9e1;
}

.section.dark {
  background: #2e3a3f;
  color: #fefcf9;
}

.section.texture {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='420' height='260' viewBox='0 0 420 260'><rect width='420' height='260' fill='%23f7f5f2'/><path d='M0 60h420v30H0z' fill='%23efe0d2' opacity='0.6'/><circle cx='70' cy='170' r='48' fill='%23e9d6c3' opacity='0.7'/></svg>");
  background-size: cover;
}

.section h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  margin-bottom: 12px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: #d36a35;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2d8c5;
  color: #6d3d26;
  font-size: 0.85rem;
}

.testimonial {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border-left: 4px solid #d36a35;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f7f5f2;
  padding: 12px;
  border-radius: 12px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c2ba;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.site-footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #1e1f22;
  color: #fefcf9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.18);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight-box {
  background: #f2d8c5;
  padding: 18px;
  border-radius: 14px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-stack img {
  border-radius: 14px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
  }

  .media-stack {
    flex-direction: row;
  }

  .media-stack img {
    width: 33%;
  }
}
