* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1d1d1d;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1d1d1d;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e6e2dc;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.9rem;
  color: #5a4a3b;
  background: #f1ebe4;
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

main {
  flex: 1;
}

.section {
  padding: 70px 6%;
}

.section-light {
  background: #ffffff;
}

.section-accent {
  background: #efe7dd;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #f0e7db;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid #1d1d1d;
  background: #1d1d1d;
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: #1d1d1d;
}

.image-frame {
  background: #d9d1c7;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: stretch;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlights {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.highlight-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  flex: 1 1 220px;
  border: 1px solid #e8e2da;
}

.highlight-card h3 {
  margin-bottom: 10px;
}

.services-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e6dfd6;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: #2f2a26;
}

.testimonial {
  padding: 22px;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #98795c;
}

.form-wrap {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e6dfd6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cfc5b9;
  font-size: 1rem;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1d1d1d;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

footer {
  background: #1d1d1d;
  color: #f7f5f2;
  padding: 40px 6%;
}

footer a {
  color: #f7f5f2;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-columns > div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #d9d1c7;
  border-radius: 12px;
  padding: 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.status-message {
  font-size: 0.95rem;
  color: #3c332b;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.two-column-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.two-column-list div {
  flex: 1 1 220px;
}

.simple-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
