* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #111414;
  color: #f7f3ee;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  color: #f5d77a;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
}

.cta-link {
  margin-top: 10px;
  padding: 10px 12px;
  background: #f5d77a;
  color: #111414;
  text-align: center;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
}

.sidebar small {
  font-size: 12px;
  color: #c9c2b9;
}

.content {
  flex: 1;
  background: #f6f4f1;
}

.section {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero {
  min-height: 420px;
  color: #f7f3ee;
  background-image: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero .overlay {
  background: rgba(17, 20, 20, 0.6);
  padding: 56px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.hero p {
  max-width: 520px;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: #f5d77a;
  color: #111414;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.alt {
  background: #f7f3ee;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split .col {
  flex: 1;
  min-width: 240px;
}

.media {
  background: #ded6cd;
  border-radius: 18px;
  overflow: hidden;
}

.h-160 {
  height: 160px;
}

.h-280 {
  height: 280px;
}

.h-300 {
  height: 300px;
}

.h-320 {
  height: 320px;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card .price {
  font-weight: 700;
}

.layered {
  background: #efe7dd;
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.layered .layer-content {
  position: relative;
}

.quote {
  font-style: italic;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

.form-wrap {
  background: #111414;
  color: #f7f3ee;
  border-radius: 22px;
  padding: 28px;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap label {
  font-size: 14px;
}

.form-wrap select,
.form-wrap input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d2c9;
  font-size: 15px;
}

.form-wrap .button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #111414;
  color: #f7f3ee;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.sticky-cta button {
  background: #f5d77a;
  border-radius: 999px;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.legal {
  max-width: 760px;
  line-height: 1.7;
}

.contact-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  max-width: 420px;
}

.footer {
  background: #111414;
  color: #f7f3ee;
  padding: 26px 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.footer a {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 10px;
  border: none;
  padding: 8px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #111414;
  color: #f7f3ee;
}

.cookie-actions .reject {
  background: #e7dfd6;
  color: #111414;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .section {
    padding: 36px 24px;
  }

  .hero .overlay {
    padding: 36px 24px;
  }
}
