* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1d;
  background: #f7f6f3;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.brand-tagline {
  font-size: 0.95rem;
  color: #525252;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: #1d1d1d;
  color: #f7f6f3;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 20px;
}

.split-section.light {
  background: #ffffff;
}

.split-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual {
  position: relative;
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accent-bg {
  background: #f0ece4;
  padding: 20px;
  border-radius: 24px;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7d5c42;
}

h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.8rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.3rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: #1d1d1d;
  color: #f7f6f3;
}

.btn.secondary {
  background: #7d5c42;
  color: #ffffff;
}

.btn.ghost {
  border-color: #1d1d1d;
  color: #1d1d1d;
  background: transparent;
}

.text-link {
  color: #7d5c42;
  font-weight: 600;
}

.inline-cta {
  font-size: 0.95rem;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  font-size: 2rem;
  font-weight: 700;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

.card-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: #7d5c42;
}

.quote {
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote span {
  color: #7d5c42;
  font-weight: 600;
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.steps li {
  padding-left: 24px;
  position: relative;
}

.steps li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7d5c42;
  font-weight: 700;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.service-form input,
.service-form select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d0cdc8;
  font-size: 1rem;
  font-family: inherit;
}

.info-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer {
  padding: 32px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #1d1d1d;
  color: #f7f6f3;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-note {
  font-size: 0.9rem;
  color: #c8c8c8;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #7d5c42;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.bg-photo {
  background-image: url("https://images.unsplash.com/photo-1518791841217-8f162f1e1131?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.bg-photo .split-text {
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  border-radius: 16px;
}

.page-hero {
  padding: 56px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
}

.page-hero .hero-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-list .service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 20px 80px;
}

.legal-content h2 {
  margin-top: 12px;
}

.thanks-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 80px;
  }

  .split-section {
    flex-direction: row;
    align-items: center;
    padding: 64px 80px;
  }

  .split-section:nth-child(even) {
    flex-direction: row-reverse;
  }

  .split-text,
  .split-visual {
    flex: 1;
  }

  .stat-row {
    flex-direction: row;
    gap: 32px;
  }

  .image-stack {
    flex-direction: row;
  }

  .page-hero {
    padding: 64px 80px 40px;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .page-hero .hero-text,
  .page-hero .hero-media {
    flex: 1;
  }

  .legal-content {
    padding: 56px 120px 120px;
  }

  .site-footer {
    padding: 40px 80px 100px;
  }
}
