* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f7f4f0;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  background-color: #1f1f1f;
  color: #f7f4f0;
  padding: 12px 6%;
}

.top-bar nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background-color: #f2b44c;
  color: #1f1f1f;
  padding: 4px 8px;
  border-radius: 12px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 120px 6% 100px;
  position: relative;
  color: #f7f4f0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 22, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  background-color: #f2b44c;
  color: #1f1f1f;
  padding: 12px 18px;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background-color: transparent;
  border: 1px solid #f2b44c;
  color: #f2b44c;
}

.section {
  padding: 80px 6%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  background-color: #f7f4f0;
}

.section.alt {
  background-color: #efe8de;
}

.section.dark {
  background-color: #1f1f1f;
  color: #f7f4f0;
}

.section.texture-bg {
  background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #f7f4f0;
}

.section.texture-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.6);
}

.section.texture-bg > * {
  position: relative;
  z-index: 1;
}

.section.split {
  flex-direction: row;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.section.split .text-block,
.section.split .media-block {
  flex: 1 1 320px;
}

.media-block {
  background-color: #d8d1c6;
  padding: 10px;
  border-radius: 18px;
}

.media-block img {
  width: 100%;
  height: 380px;
  border-radius: 14px;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}

.storyline strong {
  font-weight: 700;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  align-self: flex-start;
}

.card-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.card .card-media {
  background-color: #e3d8cc;
  border-radius: 14px;
  overflow: hidden;
}

.card .card-media img {
  width: 100%;
  height: 180px;
}

.quote-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border-left: 4px solid #f2b44c;
}

.pricing-grid {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e0d6c9;
}

.price-card h4 {
  font-size: 18px;
}

.price-tag {
  font-size: 22px;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c0b6;
  font-size: 14px;
  background-color: #fff;
}

.form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background-color: #1f1f1f;
  color: #f7f4f0;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 13px;
  opacity: 0.9;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background-color: rgba(31, 31, 31, 0.95);
  color: #f7f4f0;
  padding: 16px 6%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.sticky-cta a.btn {
  display: inline-block;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.legal-page {
  padding: 70px 6%;
  max-width: 880px;
}

.legal-page h1 {
  margin-bottom: 18px;
  font-size: 32px;
}

.legal-page h2 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 20px;
}

.contact-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e0d6c9;
}
