* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1f1f;
  background: #f8f5f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  background: #f8f5f1;
  border-bottom: 1px solid #e6ddd2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom: 2px solid #b65a2e;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 8% 120px;
  background: #2d2116;
  color: #fdf8f2;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.hero-content {
  position: relative;
  max-width: 650px;
  z-index: 1;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 520px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: #d77a42;
  color: #fffaf3;
  border-radius: 999px;
  font-weight: 600;
  margin-top: 26px;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid #c3a07d;
  border-radius: 999px;
  margin-top: 16px;
  color: #3d2b1b;
  background: #fffdf9;
  font-weight: 600;
}

.section {
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-light {
  background: #f8f5f1;
}

.section-contrast {
  background: #efe6da;
}

.section-dark {
  background: #2e2117;
  color: #f9f3ec;
}

.section-accent {
  background: #fff7ee;
}

.section-row {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section-row.split {
  flex-direction: column;
}

.section-row img {
  border-radius: 18px;
}

.tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9b6c4a;
  font-weight: 700;
}

.callout {
  padding: 24px;
  background: #fffaf3;
  border-left: 4px solid #d77a42;
  font-style: italic;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fffdf8;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(30, 20, 10, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e5d2c0;
}

.price-item span {
  font-weight: 700;
  color: #b35930;
}

.inline-cta {
  color: #b35930;
  font-weight: 600;
  text-decoration: underline;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(39, 24, 12, 0.1);
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9c6b4;
  font-size: 1rem;
}

.lead-form button {
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  background: #b35930;
  color: #fff9f2;
  font-weight: 700;
  cursor: pointer;
}

.footer {
  padding: 40px 8%;
  background: #1c140e;
  color: #f8f0e6;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #d77a42;
  color: #fffaf3;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d2116;
  color: #f8f0e6;
  padding: 18px 6%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #d77a42;
  color: #fffaf3;
}

.cookie-reject {
  background: transparent;
  border: 1px solid #f8f0e6;
  color: #f8f0e6;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #ead8c7;
}

.small-print {
  font-size: 0.85rem;
  color: #6c5848;
}

@media (min-width: 900px) {
  .section-row.split {
    flex-direction: row;
    align-items: center;
  }

  .section-row.split.reverse {
    flex-direction: row-reverse;
  }

  .card-list {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .price-list {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }

  .lead-form {
    max-width: 520px;
  }

  .contact-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
