* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f21;
  background: #f6f2ee;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #f6f2ee;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 12px;
  color: #6a5d4e;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a:hover {
  color: #a14b22;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw 70px;
  align-items: center;
}

.hero .copy {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.hero .cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1d1f21;
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: #a14b22;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #1d1f21;
  color: #1d1f21;
}

.btn:hover {
  transform: translateY(-2px);
}

.image-frame {
  background: #e7ddd4;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 320px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 50px 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 300px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.accent {
  color: #a14b22;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  height: 140px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.price {
  font-weight: 600;
  color: #a14b22;
}

.highlight {
  background: #1d1f21;
  color: #fff;
  padding: 50px 6vw;
}

.highlight .card {
  background: #2d2f33;
  color: #fff;
}

.testimonial {
  border-left: 3px solid #a14b22;
  padding-left: 14px;
  font-style: italic;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.form-section {
  background: #fff;
  padding: 50px 6vw;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7bdb4;
  font-size: 14px;
}

.footer {
  margin-top: auto;
  background: #1d1f21;
  color: #fff;
  padding: 30px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
}

.footer a:hover {
  color: #f2b49c;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 320px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  font-size: 13px;
  color: #5c5147;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-col .col {
  flex: 1 1 260px;
}

.meta-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: inset 0 0 0 1px #e0d5cb;
}

.section-divider {
  height: 1px;
  background: #d6c8bc;
  margin: 16px 0;
}
