* {
  box-sizing: border-box;
}

:root {
  color: #141414;
  background: #f7f5f2;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  background: #f7f5f2;
  color: #141414;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: #1d1d1d;
  color: #f7f5f2;
  border-radius: 999px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 56px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.75rem;
  color: #6d6258;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 0;
}

.lead {
  font-size: 1.05rem;
  color: #2d2a27;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1d1d1d;
  color: #f7f5f2;
  border: 1px solid #1d1d1d;
  font-weight: 600;
}

.button--ghost {
  background: transparent;
  color: #1d1d1d;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe9e1;
  font-size: 0.85rem;
}

.image-frame {
  background: #e7e0d8;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.image-frame--card {
  min-height: 160px;
  border-radius: 14px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card img {
  border-radius: 12px;
  height: 140px;
}

.price {
  font-weight: 700;
}

.section-bg {
  background: #1d1d1d;
  color: #f7f5f2;
  border-radius: 32px;
  margin: 40px auto;
  width: min(1200px, 95%);
}

.section-bg .split {
  padding: 48px;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.testimonial {
  background: #efe9e1;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7d1c8;
  font-size: 1rem;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1d1d1d;
  color: #f7f5f2;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.site-footer {
  padding: 40px 0 60px;
  font-size: 0.9rem;
  color: #3b3732;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner.visible {
  display: flex;
}

.muted {
  color: #6d6258;
}

.section-compact .split {
  padding: 32px 0;
}

.notice {
  background: #f1ede8;
  padding: 12px 16px;
  border-radius: 12px;
}

.section-bg--focus {
  background-image: linear-gradient(120deg, rgba(29, 29, 29, 0.86), rgba(29, 29, 29, 0.9)),
    url("https://images.unsplash.com/photo-1688380692117-63178554d76d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
