* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #111216;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site {
  display: flex;
  min-height: 100vh;
}

.side-nav {
  width: 260px;
  background: #131417;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav-links a {
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
}

.side-cta {
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #f0b429;
  color: #1c1b19;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn.secondary {
  background: #f6f4f1;
  color: #111216;
  border: 1px solid rgba(17, 18, 22, 0.2);
}

.btn.ghost {
  background: transparent;
  color: #f7f4ef;
  border: 1px solid rgba(247, 244, 239, 0.4);
}

.content {
  flex: 1;
  padding: 40px 5vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  line-height: 1.1;
}

.hero-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-image {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #e6e1d8;
  padding: 12px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.08);
}

.section.dark {
  background: #1b1c20;
  color: #f7f4ef;
}

.section.textured {
  background-image: url("texture.svg");
  background-size: cover;
  background-position: center;
}

.section.split {
  flex-direction: row;
  flex-wrap: wrap;
}

.section.split .split-text,
.section.split .split-media {
  flex: 1 1 260px;
}

.section.split .split-media img {
  border-radius: 20px;
  border: 1px solid rgba(17, 18, 22, 0.1);
}

.stat-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1 1 160px;
  padding: 20px;
  border-radius: 20px;
  background: #f7f4ef;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(17, 18, 22, 0.1);
  background: #fefefe;
}

.service-card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.service-card .meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(17, 18, 22, 0.7);
}

.gallery-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.gallery-card {
  flex: 1 1 220px;
  background: #111216;
  color: #f7f4ef;
  padding: 18px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-card img {
  border-radius: 14px;
  background: #f6f4f1;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-step span {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0b429;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.quote {
  font-style: italic;
  border-left: 4px solid #f0b429;
  padding-left: 16px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(17, 18, 22, 0.2);
  font-size: 1rem;
  background: #ffffff;
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-cta {
  color: #be7d0d;
  font-weight: 600;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  padding: 16px;
  background: #f6f4f1;
  border-radius: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #111216;
  color: #f7f4ef;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(17, 18, 22, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.policy-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #f7f4ef;
  padding: 20px;
  border-radius: 18px;
}

.page-title {
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: #1b1c20;
  color: #f7f4ef;
  font-size: 0.8rem;
}

.map-placeholder {
  background: #d7d1c6;
  border-radius: 20px;
  padding: 24px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(17, 18, 22, 0.7);
}

@media (max-width: 960px) {
  .site {
    flex-direction: column;
  }

  .side-nav {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .side-cta {
    width: 100%;
  }

  .content {
    padding: 32px 6vw 80px;
  }
}

@media (max-width: 720px) {
  .hero-grid {
    flex-direction: column;
  }

  .section.split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
