* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1b3a57;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: #f3efe8;
  gap: 16px;
}

.topbar .brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4b3f;
  background: #e8e0d5;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px 6vw 20px;
  align-items: center;
  background: #fff;
  position: relative;
}

.hero-text {
  flex: 1 1 360px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 0 0 16px;
}

.hero-text p {
  margin: 0 0 20px;
}

.hero-media {
  flex: 1 1 380px;
  min-width: 280px;
  background: #ddd3c8;
  padding: 16px;
  position: relative;
  top: 18px;
}

.hero-media img {
  width: 100%;
  height: 380px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #1b3a57;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #e7d8c6;
  color: #3d2f24;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid #1b3a57;
}

.section {
  padding: 48px 6vw;
  position: relative;
}

.section.alt {
  background: #fff;
}

.asym-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-block {
  flex: 1 1 320px;
  min-width: 260px;
}

.asym-media {
  flex: 1 1 300px;
  background: #d7d0c7;
  padding: 12px;
  position: relative;
  top: -18px;
}

.asym-media img {
  width: 100%;
  height: 280px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(27, 27, 27, 0.08);
  display: flex;
  gap: 16px;
  align-items: center;
}

.card img {
  width: 120px;
  height: 90px;
  border-radius: 12px;
  background: #d8cec3;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: #fdfbf8;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #eee2d5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background: #e2d7cc;
}

.price {
  font-weight: 700;
  color: #1b3a57;
}

.testimonial {
  background: #f7f1e8;
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 12px;
}

.form-section {
  background: #fff;
  padding: 40px 6vw 60px;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8cfc4;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.footer {
  margin-top: auto;
  background: #1f2e3b;
  color: #f3efe8;
  padding: 32px 6vw;
}

.footer a {
  color: #f3efe8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d8cfc4;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 20;
}

.sticky-cta button {
  box-shadow: 0 12px 24px rgba(27, 27, 27, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(27, 27, 27, 0.18);
  padding: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 30;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 260px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.info-panel {
  background: #fdfbf7;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #eadfd3;
}

.side-note {
  font-size: 0.95rem;
  color: #5a4b3f;
}

.bg-panel {
  background: #e2d7cc;
  padding: 22px;
  border-radius: 18px;
  position: relative;
}

.bg-panel img {
  width: 100%;
  height: 220px;
  border-radius: 14px;
}

@media (max-width: 720px) {
  .hero {
    padding-top: 32px;
  }

  .hero-media {
    top: 0;
  }

  .asym-media {
    top: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
