* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background-color: #f6f4f1;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-header {
  background-color: #f6f4f1;
  padding: 22px 6%;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 18px;
}

.nav-links a:hover {
  background-color: #e6e0d8;
}

.ad-label {
  background-color: #1f2933;
  color: #f6f4f1;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.section {
  padding: 40px 6%;
}

.hero {
  color: #f6f4f1;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 16, 18, 0.85), rgba(11, 16, 18, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 540px;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #dfe7ec;
}

.hero-title {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  font-size: 16px;
  margin: 0;
  color: #e6e0d8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #ffcb77;
  color: #1f2933;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #f5b43f;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #1f2933;
  color: #1f2933;
}

.btn-outline:hover {
  background-color: #1f2933;
  color: #f6f4f1;
}

.text-link {
  text-decoration: underline;
}

.text-link:hover {
  color: #d27f2f;
}

.split-section {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.section-title {
  font-size: 28px;
  margin: 0 0 12px;
}

.section-subtitle {
  font-size: 16px;
  margin: 0 0 16px;
  color: #52616b;
}

.img-frame {
  background-color: #d9d2c7;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.spaced-top {
  margin-top: 20px;
}


.card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 240px;
  min-width: 220px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background-color: #d9d2c7;
}

.price-tag {
  font-weight: 700;
  color: #a8521f;
}

.bg-path {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
  position: relative;
}

.bg-path::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 21, 23, 0.65);
}

.bg-path > * {
  position: relative;
  z-index: 1;
}

.form-shell {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid select,
.form-grid input,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c2b9;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  background-color: #1f2933;
  color: #f6f4f1;
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta a {
  display: inline-flex;
  padding: 12px 18px;
  background-color: #1f2933;
  color: #f6f4f1;
  border-radius: 999px;
  font-size: 14px;
}

.sticky-cta a:hover {
  background-color: #3a4b57;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  display: none;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 12;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.accent-panel {
  background-color: #fdf0da;
  border-radius: 20px;
  padding: 22px;
}

.list-plain {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice {
  font-size: 13px;
  color: #dfe7ec;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .site-header {
    padding: 16px 6%;
  }
}
