* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1d1f;
  background-color: #f7f6f2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  padding: 22px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #f3f1ec;
  border-bottom: 1px solid #ddd7cd;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  background: #e6e1d6;
  padding: 6px 10px;
  border-radius: 20px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 6%;
  gap: 40px;
  background: #efe9dd;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1 1 320px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #c9c0b2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  padding: 12px 20px;
  border-radius: 28px;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.primary-btn {
  background: #1c1d1f;
  color: #f7f6f2;
}

.secondary-btn {
  background: #f0b429;
  color: #1c1d1f;
}

.ghost-btn {
  background: transparent;
  border: 1px solid #1c1d1f;
  color: #1c1d1f;
}

.section {
  padding: 56px 6%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.split-media {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d6d0c4;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  background-color: #d9d4c8;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-card {
  flex: 1 1 240px;
  border: 1px solid #d6d0c4;
  border-radius: 18px;
  padding: 18px;
  background: #faf9f6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card .price {
  font-size: 1.3rem;
  font-weight: 700;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #1c1d1f;
  color: #f7f6f2;
  padding: 14px 18px;
  border-radius: 16px;
  display: inline-flex;
  gap: 10px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #f1ede3;
  padding: 24px;
  border-radius: 18px;
}

.form-fields {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c7c1b5;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: #4a4c50;
}

.section-dark {
  background: #1f2429;
  color: #f7f6f2;
}

.heat-backdrop {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f6f2;
  position: relative;
}

.heat-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
}

.heat-backdrop .section-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  padding: 40px 6%;
  background: #e8e2d6;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-block {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #ddd7cd;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #d6d0c4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  border-radius: 16px;
  padding: 18px;
  max-width: 520px;
  width: calc(100% - 32px);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  flex: 1 1 160px;
}

.content-divider {
  height: 1px;
  background: #d6d0c4;
  width: 100%;
}

.headline {
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 0;
}

.subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.small-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
}

.address-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #ddd7cd;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  font-style: italic;
  background: #fff;
  border-left: 4px solid #f0b429;
  padding: 14px 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.banner-note {
  font-size: 0.85rem;
  opacity: 0.75;
}

.hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 6%;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
