* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1c1d1f;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7%;
  background: #fff;
  border-bottom: 1px solid #e4e1dc;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #efe7dd;
  color: #6b3f2a;
  white-space: nowrap;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 70vh;
  background: #fcfbf8;
}

.hero-text,
.hero-media {
  flex: 1 1 50%;
  padding: 60px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid #1c1d1f;
  background: #1c1d1f;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #1c1d1f;
}

.btn:focus,
.btn:hover {
  background: #37383b;
  color: #fff;
}

.btn.secondary:focus,
.btn.secondary:hover {
  background: #1c1d1f;
  color: #fff;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-top: 1px solid #ece7e0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 50%;
  padding: 52px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.section-title {
  font-size: 1.8rem;
  line-height: 1.2;
}

.muted {
  color: #5d5f63;
}

.inline-link {
  border-bottom: 1px solid #1c1d1f;
  padding-bottom: 2px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.card {
  flex: 1 1 200px;
  background: #f4efe9;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-radius: 10px;
  background: #f8f5f1;
}

.service-item span {
  font-weight: 600;
}

.form-section {
  background: #fff7ee;
}

.form-wrapper {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c9c3ba;
  background: #fff;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.media {
  background: #d9d2c8;
  border-radius: 16px;
  overflow: hidden;
}

.media.tall {
  min-height: 360px;
}

.media.short {
  min-height: 240px;
}

.footer {
  margin-top: auto;
  padding: 32px 7% 40px;
  background: #1c1d1f;
  color: #f4f1ec;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d6d0c9;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1c1d1f;
  color: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 100;
}

.sticky-cta button {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #cfc9c0;
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 120;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  background: #fdfbf8;
}

.page-hero .hero-text,
.page-hero .hero-media {
  padding: 44px 7%;
}

.simple-section {
  padding: 44px 7%;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 240px;
  padding: 18px;
  background: #f6f1eb;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .hero-text,
  .hero-media,
  .split-text,
  .split-media {
    flex: 1 1 100%;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
