* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: #1d1c19;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1d1c19;
}

.hero {
  padding: 32px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: #fff5e6;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.12);
  position: relative;
  z-index: 2;
}

.hero-image {
  border-radius: 30px;
  overflow: hidden;
  transform: translateX(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-image img {
  height: 320px;
  width: 100%;
  object-fit: cover;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1d1c19;
  background: #1d1c19;
  color: #f7f4ef;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #1d1c19;
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #1d1c19;
  color: #f7f4ef;
}

.section .section-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.section .section-text {
  max-width: 680px;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #f1efe9;
  padding: 22px;
  border-radius: 22px;
  transform: translateX(8px);
}

.offset-block.dark {
  background: rgba(255, 255, 255, 0.08);
}

.media-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: #fdfaf2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.media-card img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  background: #fff;
}

.service-card input {
  margin-right: 8px;
}

.service-card strong {
  font-size: 1.05rem;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  background: #f9f7f2;
}

.inline-cta {
  font-weight: 700;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

.split-band {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-band .floating {
  background: #fff5e6;
  padding: 20px;
  border-radius: 18px;
  transform: translateX(-6px);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-style: italic;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #ffcf80;
  color: #1d1c19;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  z-index: 5;
}

.site-footer {
  padding: 32px 6vw 40px;
  background: #1d1c19;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #1d1c19;
  color: #f7f4ef;
  padding: 16px;
  border-radius: 14px;
  max-width: 300px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #ffcf80;
}

.cookie-actions .reject {
  background: #f7f4ef;
}

.page-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.content-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 768px) {
  .hero-split {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .hero-image {
    flex: 1;
    transform: translateY(20px);
  }

  .media-row {
    flex-direction: row;
  }

  .media-card {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 220px;
  }

  .split-band {
    flex-direction: row;
    align-items: center;
  }

  .split-band .floating {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
  }

  .two-column > * {
    flex: 1;
  }
}
