*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f24;
  background: #f6f3ee;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-ad {
  background: #0f0f13;
  color: #f7f2ea;
  font-size: 0.85rem;
  padding: 0.55rem 1.5rem;
  text-align: center;
  letter-spacing: 0.4px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.5rem;
  background: #f6f3ee;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.4px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.ad-badge {
  padding: 0.3rem 0.7rem;
  background: #d8c8b4;
  color: #231f1b;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.site-nav {
  display: flex;
  gap: 1.1rem;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 2.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 15%;
  width: 45%;
  height: 65%;
  background: #e6dbcf;
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 1;
  max-width: 520px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-cta {
  margin-top: 2rem;
}

.button {
  padding: 0.85rem 1.6rem;
  border: none;
  background: #1f1f24;
  color: #f6f3ee;
  font-size: 0.95rem;
  cursor: pointer;
}

.button.secondary {
  background: #d8c8b4;
  color: #1f1f24;
}

.inline-link {
  font-weight: 600;
  border-bottom: 2px solid #1f1f24;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.image-frame {
  background: #e0d3c2;
  padding: 0.8rem;
  display: inline-flex;
}

.image-frame img {
  width: 100%;
  height: auto;
}

.section {
  padding: 3.5rem 2.5rem;
}

.section-bg-1 {
  background-color: #2b2420;
  background-image: url("https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f3ee;
}

.section-bg-2 {
  background-color: #efe6da;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f1f24;
}

.section.narrow {
  max-width: 960px;
  margin: 0 auto;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
}

.split .media-block {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.offset-card {
  background: #fdfbf7;
  padding: 2rem;
  border-left: 6px solid #1f1f24;
  box-shadow: -18px 18px 0 #e6dbcf;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.highlight-band {
  background: #1f1f24;
  color: #f6f3ee;
}

.highlight-band .button {
  background: #f6f3ee;
  color: #1f1f24;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.service-card {
  flex: 1 1 260px;
  background: #fdfbf7;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1px solid #ded2c4;
}

.service-card h3 {
  margin: 0;
}

.price {
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial {
  background: #e6dbcf;
  padding: 1.4rem;
  font-style: italic;
}

.form-wrap {
  background: #fdfbf7;
  padding: 2rem;
  border: 1px solid #ded2c4;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid #bdb1a3;
  font-size: 0.95rem;
  background: #fff;
}

.footer {
  background: #0f0f13;
  color: #f6f3ee;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #f6f3ee;
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: #fdfbf7;
  border: 1px solid #ded2c4;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 280px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-actions .button {
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1f1f24;
  color: #f6f3ee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.6rem;
  gap: 1rem;
  z-index: 10;
}

.sticky-cta .button {
  background: #f6f3ee;
  color: #1f1f24;
}

.page-spacer {
  height: 4rem;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  padding: 2.8rem 2.5rem;
  background: #efe6da;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.info-card {
  flex: 1 1 260px;
  padding: 1.4rem;
  background: #fdfbf7;
  border-left: 6px solid #d8c8b4;
}

.list-tight {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-left: 1rem;
}

.hidden {
  display: none;
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero::after {
    display: none;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
