* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1e1b1b;
  background: #f6f2ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 12px;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1e1b1b;
}

.hero {
  position: relative;
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 60px rgba(14, 8, 6, 0.25);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16, 12, 10, 0.75), rgba(16, 12, 10, 0.2));
}

.hero-media img {
  height: 340px;
  width: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  gap: 16px;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.1;
}

.hero-content p {
  margin: 0;
  max-width: 560px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #e7442e;
  color: #fff;
  font-weight: 600;
  border: none;
}

.cta-button.alt {
  background: #1e1b1b;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #1e1b1b;
  color: #f9f4f0;
}

.section-offset {
  margin: 0 0 0 4vw;
  border-radius: 32px 0 0 32px;
}

.section-offset-right {
  margin: 0 4vw 0 0;
  border-radius: 0 32px 32px 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row .panel {
  flex: 1;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(16, 12, 10, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #292221;
  color: #f3ece7;
}

.card img {
  border-radius: 18px;
  height: 160px;
  object-fit: cover;
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background: #fdfbf9;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e6ddd7;
}

.service-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #e7442e;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 20px 40px rgba(14, 8, 6, 0.18);
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d7cdc6;
  font-size: 1rem;
  width: 100%;
}

.form-shell button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #e7442e;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1e1b1b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 20;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.footer {
  padding: 40px 6vw 60px;
  background: #121010;
  color: #f3ece7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f3ece7;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(16, 12, 10, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #e7442e;
  color: #fff;
}

.cookie-actions .reject {
  background: #d7cdc6;
  color: #1e1b1b;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1e1b1b;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(14, 8, 6, 0.12);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack img {
  border-radius: 26px;
  box-shadow: 0 20px 40px rgba(14, 8, 6, 0.2);
}

.highlight {
  font-size: 1.1rem;
  font-weight: 600;
}

.list-inline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note-box {
  border-left: 4px solid #e7442e;
  padding-left: 16px;
}

@media (min-width: 780px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split-row {
    flex-direction: row;
    align-items: stretch;
  }

  .card-row {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 calc(50% - 18px);
  }

  .image-stack {
    flex-direction: row;
  }
}
