* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color: #1e2226;
  background-color: #f6f2ee;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

body {
  line-height: 1.6;
  background-color: #f6f2ee;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1e2226;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0;
  background-color: #f6f2ee;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.ad-label {
  font-size: 0.85rem;
  background-color: #1e2226;
  color: #fff;
  padding: 6px 10px;
  border-radius: 12px;
  text-align: center;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 0 90px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 19, 24, 0.5);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(640px, 90%);
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background-color: #f2b875;
  color: #1e2226;
  font-weight: 600;
  cursor: pointer;
}

.outline-button {
  background-color: transparent;
  border: 1px solid #1e2226;
  color: #1e2226;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: #fff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background-color: #e6ded7;
  padding: 12px;
  border-radius: 20px;
}

.offset {
  margin-left: 6%;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background-color: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.card .media {
  background-color: #efe7df;
  border-radius: 16px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.layered {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 27, 0.6);
}

.layered-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(720px, 94%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
}

.form-wrap {
  background-color: #fff;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c5bdb6;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.muted {
  color: #5a5f66;
}

.footer {
  background-color: #1e2226;
  color: #fff;
  padding: 50px 0;
}

.footer a {
  color: #fff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  background-color: #1e2226;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #fff;
  color: #1e2226;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  cursor: pointer;
  border-radius: 12px;
  border: none;
  padding: 8px 10px;
  font-weight: 600;
}

.cookie-accept {
  background-color: #1e2226;
  color: #fff;
}

.cookie-reject {
  background-color: #efe7df;
}

.page-hero {
  padding: 80px 0 50px;
}

.page-hero .media {
  background-color: #e6ded7;
  padding: 12px;
  border-radius: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.highlight {
  background-color: #fff4e3;
  padding: 18px;
  border-radius: 16px;
}

@media (max-width: 860px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .offset {
    margin-left: 0;
  }
}
