* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f7f4f0;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 22px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background-color: #f0ebe5;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: #1f1f1f;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom: 1px solid #1f1f1f;
}

.ad-label {
  font-size: 0.85rem;
  background-color: #1f1f1f;
  color: #f7f4f0;
  padding: 6px 10px;
  border-radius: 16px;
}

.main {
  flex: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 64px 6%;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.intro-title {
  font-size: 2.6rem;
  line-height: 1.15;
}

.lead {
  font-size: 1.1rem;
  color: #3a3735;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background-color: #1f1f1f;
  color: #f7f4f0;
  text-decoration: none;
  border-radius: 26px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.btn.outline {
  background-color: transparent;
  color: #1f1f1f;
  border: 1px solid #1f1f1f;
}

.btn:hover {
  opacity: 0.85;
}

.image-frame {
  background-color: #ddd4cb;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-note {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6f6a65;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.service-card h3 {
  font-size: 1.2rem;
}

.price {
  font-weight: 600;
  color: #3e352f;
}

.service-card a {
  text-decoration: none;
  color: #1f1f1f;
  font-weight: 600;
}

.inline-link {
  color: #1f1f1f;
  font-weight: 600;
  text-decoration: underline;
}

.testimonial {
  background-color: #fff3e2;
  padding: 22px;
  border-radius: 16px;
}

.form-panel {
  background-color: #ffffff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.form-panel label {
  font-size: 0.9rem;
  color: #4a4744;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc6bc;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-panel button {
  align-self: flex-start;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  align-self: flex-end;
  margin: 20px 6% 0 auto;
  background-color: #fff3e2;
  padding: 12px 18px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.site-footer {
  padding: 32px 6%;
  background-color: #1f1f1f;
  color: #f7f4f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #f7f4f0;
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-content {
  font-size: 0.98rem;
  color: #353230;
}

.contact-block {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.two-column-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 780px) {
  .intro-title {
    font-size: 2rem;
  }

  .sticky-cta {
    position: static;
    margin: 0 6% 30px;
  }
}
