* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1d20;
  background-color: #f5f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 6vw;
  background-color: #f5f4f1;
  border-bottom: 1px solid #e2e0da;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5d5f66;
  background-color: #ebe7df;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 70vh;
  padding: 9vh 6vw 8vh;
  color: #fefefe;
  background-color: #212127;
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 20, 0.55);
}

.hero-content {
  position: relative;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.6rem, 3vw + 1.6rem, 4.2rem);
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 24px;
  font-size: 1.1rem;
}

.button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #f7c948;
  color: #1a1a1a;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.button.secondary {
  background-color: #fefefe;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background-color: #ffffff;
}

.section.muted {
  background-color: #ece9e2;
}

.section.visual-band {
  color: #fefefe;
  background-color: #1f2025;
  background-image: url("https://images.unsplash.com/photo-1470225620780-dba8ba36b745?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.section.visual-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 22, 0.6);
}

.section.visual-band .visual-content {
  position: relative;
  max-width: 640px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.offset-block {
  background-color: #ffffff;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-20px);
}

.image-frame {
  background-color: #d7d2c8;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d3d0c9;
  font-size: 1rem;
  font-family: inherit;
}

.form-wrap button {
  align-self: flex-start;
}

.floating-panel {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  transform: translateX(24px);
}

.quote {
  font-style: italic;
  padding: 18px 20px;
  background-color: #f0ece5;
  border-radius: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.footer {
  background-color: #1c1d20;
  color: #f5f4f1;
  padding: 48px 6vw;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d2cfc6;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #f0ece5;
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .hero {
    min-height: 60vh;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .floating-panel {
    transform: none;
  }
}
