* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f23;
  background-color: #f5f1ea;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-tagline {
  font-size: 0.9rem;
  color: #4e5157;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #6b4a2b;
  border: 1px solid #c5a17b;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #f1dfc9;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2b2e34;
  color: #fdf9f3;
  padding: 96px 0 120px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 22, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #d87b2d;
  color: #fff;
  font-weight: 600;
  max-width: max-content;
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2f343d;
  color: #f7f3ed;
}

.section-bg .panel {
  background-color: rgba(28, 30, 35, 0.8);
}

.layout-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split-left {
  flex: 1 1 58%;
}

.split-right {
  flex: 1 1 34%;
}

.panel {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 22px 40px rgba(26, 27, 31, 0.12);
}

.offset-panel {
  margin-top: -48px;
  margin-left: auto;
  max-width: 520px;
}

.image-wrap {
  background-color: #d8d4cf;
  border-radius: 18px;
  overflow: hidden;
}

.img-cover {
  object-fit: cover;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background-color: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 230px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #b25610;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.quote {
  flex: 1 1 260px;
  background-color: #f7eee4;
  border-radius: 16px;
  padding: 20px;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #fff;
  padding: 26px;
  border-radius: 18px;
}

.form-card label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c5bf;
  font-size: 1rem;
}

.form-card button {
  border: none;
  cursor: pointer;
}

.inline-cta {
  color: #b25610;
  font-weight: 600;
}

.cta-sticky {
  position: fixed;
  right: 20px;
  bottom: 24px;
  padding: 12px 20px;
  background-color: #1f2b38;
  color: #fff;
  border-radius: 999px;
  z-index: 3;
}

.footer {
  margin-top: auto;
  padding: 48px 0;
  background-color: #1e2126;
  color: #f1ede7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.footer small {
  color: #c3bdb4;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(26, 27, 31, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 4;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background-color: #d87b2d;
  color: #fff;
}

.cookie-reject {
  background-color: #e6e0d7;
  color: #1d1f23;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.legal-page section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 860px) {
  .hero {
    padding: 72px 0 96px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .offset-panel {
    margin-top: 24px;
  }

  .cta-sticky {
    right: 14px;
    bottom: 18px;
  }
}
