* {
  box-sizing: border-box;
}

:root {
  --charcoal: #1f1f1c;
  --clay: #a6643a;
  --sand: #f4efe6;
  --ash: #3a3b36;
  --olive: #6a704f;
  --smoke: #ece6db;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 6vw;
  background: var(--white);
  border-bottom: 1px solid #e2ddd2;
}

.topbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--ash);
}

.hero {
  position: relative;
  padding: 120px 6vw 90px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
  z-index: 0;
}

.hero-content {
  position: relative;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1;
}

.hero-title {
  font-size: 2.6rem;
  margin: 0;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.primary {
  background: var(--clay);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.button.ghost {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

.section {
  padding: 80px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.dark {
  background: var(--charcoal);
  color: var(--white);
}

.section.light {
  background: var(--white);
}

.section.bg-olive {
  background: var(--olive);
  color: var(--white);
}

.section.bg-smoke {
  background: var(--smoke);
}

.section.bg-fire {
  position: relative;
  color: var(--white);
}

.section.bg-fire::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1506784365847-bbad939e9335?w=1400&q=80");
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  z-index: 0;
}

.section.bg-fire > * {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  background: #d9d0c3;
  padding: 10px;
  border-radius: 14px;
}

.image-frame img {
  width: 100%;
  height: 340px;
  border-radius: 10px;
}

.story-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-image {
  background: #d9d0c3;
  padding: 8px;
  border-radius: 12px;
}

.card-image img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
}

.price-tag {
  font-weight: 700;
  color: var(--clay);
}

.quote {
  font-style: italic;
  margin: 0;
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-item {
  flex: 1 1 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px;
}

.form-panel {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 540px;
}

.form-panel label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-panel select,
.form-panel input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d4cdbf;
  font-size: 1rem;
}

.form-panel button {
  border: none;
  cursor: pointer;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--clay);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.footer {
  margin-top: auto;
  background: var(--charcoal);
  color: var(--white);
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d4cdbf;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--clay);
  color: var(--white);
}

.cookie-reject {
  background: var(--smoke);
  color: var(--charcoal);
}

.page-hero {
  background: var(--white);
  padding: 70px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-hero img {
  width: 100%;
  height: 320px;
  border-radius: 16px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-block li {
  padding: 12px 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #e2ddd2;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 720px) {
  .hero {
    padding: 90px 6vw 70px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
