* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1b1b;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 0.85rem;
  background: #f1e6dd;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-color: #2b2424;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(25, 18, 18, 0.88), rgba(25, 18, 18, 0.35));
}

.hero-inner {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 64px 0;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  margin: 0;
  max-width: 680px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0;
}

.section {
  padding: 70px 0;
}

.section-light {
  background: #fff;
}

.section-tone {
  background: #efe7df;
}

.section-dark {
  background: #1d1a1a;
  color: #f9f4f0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
}

.split .media-block {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #d8cbbf;
  border-radius: 22px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered .background-image {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-color: #cdbdb2;
}

.layered .background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layered .layered-content {
  position: relative;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(24, 19, 19, 0.08);
}

.card-image {
  background-color: #d8cbbf;
  border-radius: 14px;
  overflow: hidden;
  height: 180px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .price {
  font-weight: 600;
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f1b1b;
  font-weight: 600;
  background: #f8efe6;
  cursor: pointer;
}

.button.dark {
  background: #1f1b1b;
  color: #fff;
  border-color: #1f1b1b;
}

.button:hover,
.inline-link:hover {
  transform: translateY(-1px);
  transition: transform 0.2s ease;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
}

.sticky-cta button {
  box-shadow: 0 12px 28px rgba(24, 19, 19, 0.2);
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(24, 19, 19, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5c8be;
  font-size: 1rem;
  font-family: inherit;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.meta-item {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
}

.testimonial {
  font-style: italic;
  padding: 14px 18px;
  border-left: 3px solid #b08b73;
  background: #fff;
  border-radius: 12px;
}

.footer {
  margin-top: auto;
  padding: 32px 0 50px;
  background: #171414;
  color: #f5eee7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 720px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(24, 19, 19, 0.2);
  display: none;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-table .row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
}

.notice {
  background: #f6eee5;
  border-radius: 14px;
  padding: 16px 18px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-inner {
    min-height: 60vh;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
