* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1c1a;
  background-color: #f6f2ee;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  background-color: #efe7df;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  background-color: #1e1c1a;
  color: #fff7f0;
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom: 1px solid #1e1c1a;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 40px;
}

.section {
  padding: 34px 52px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.narrow {
  max-width: 920px;
}

.hero {
  color: #fef9f5;
  min-height: 360px;
  justify-content: center;
  background-color: #2a2420;
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-hero-index {
  background-image: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?w=1400&q=80");
}

.bg-services-hero {
  background-image: url("https://images.unsplash.com/photo-1463100099107-aa0980c362e6?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 20, 18, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background-color: #1e1c1a;
  color: #fff7f0;
  border: none;
  padding: 12px 18px;
  border-radius: 24px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  background-color: #36302c;
}

.btn-ghost {
  background-color: transparent;
  border: 1px solid #fff7f0;
  color: #fff7f0;
}

.btn-ghost:hover {
  background-color: rgba(255, 247, 240, 0.15);
}

.split {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.media-frame {
  background-color: #dcd2c8;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background-color: #fffaf6;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 240px;
  min-width: 220px;
}

.card .price {
  font-weight: 700;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.layered {
  background-color: #f3ece4;
  border-radius: 28px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonials {
  color: #fff7f0;
  background-color: #2a2420;
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-testimonials {
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1400&q=80");
}

.testimonials::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 20, 18, 0.55);
}

.testimonials-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap {
  background-color: #fffaf6;
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
}

.form-wrap label {
  font-size: 13px;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6cbbf;
  font-size: 14px;
  background-color: #fff;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background-color: #1e1c1a;
  color: #fff7f0;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer {
  padding: 24px 52px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: #5f5954;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #fffaf6;
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  flex: 1;
}

.muted {
  color: #7a726b;
}

.legal-hero {
  background-color: #ebe2d9;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-hero img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    width: 100%;
  }

  .split {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
