* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f6f2ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  object-fit: cover;
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 15, 15, 0.08);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-brand span {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-ad {
  font-size: 0.8rem;
  color: #5a4e45;
  background: #f0e7de;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-top: 28px;
}

.hero-text {
  flex: 1;
  background: #fff8f2;
  padding: 36px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.hero-media {
  flex: 1;
  border-radius: 26px;
  overflow: hidden;
  background: #d8ccc1;
  min-height: 320px;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #403a34;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #2b2a28;
  color: #fff;
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid #2b2a28;
  color: #2b2a28;
}

.split {
  display: flex;
  gap: 28px;
  margin: 48px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
}

.split-text {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  background: #e6dbd2;
  border-radius: 24px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 14px;
  background: #efe5dc;
  border-radius: 999px;
  font-size: 0.9rem;
}

.feature-band {
  display: flex;
  gap: 20px;
  background: #2f2d2a;
  color: #f7f2ec;
  padding: 26px;
  border-radius: 22px;
}

.feature-band div {
  flex: 1;
}

.overlay-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  position: relative;
  top: -28px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-img {
  background: #d9cfc5;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: #2b2a28;
}

.form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-size: 0.9rem;
  color: #4a4540;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6cdc4;
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  margin: 32px auto 0;
  display: flex;
  justify-content: center;
}

.inline-link {
  text-decoration: underline;
  color: #2b2a28;
}

.footer {
  margin-top: 48px;
  padding: 32px 24px;
  background: #1f1d1b;
  color: #f0e8df;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.legal-note {
  font-size: 0.85rem;
  color: #d8d0c8;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.cookie-banner p {
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.simple-section {
  margin: 40px 0;
  padding: 28px;
  background: #ffffff;
  border-radius: 24px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #f6eee6;
  border-radius: 20px;
  padding: 20px;
}

.page-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .feature-band {
    flex-direction: column;
  }
}
