* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1c19;
  --muted: #5f5a55;
  --sand: #f6f1ea;
  --clay: #e7dccf;
  --moss: #30473f;
  --linen: #fbf8f3;
  --accent: #c17c4b;
  --accent-dark: #874d27;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--linen);
  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;
}

.sidebar {
  background: var(--sand);
  padding: 28px 20px 22px;
  border-bottom: 1px solid #ded6cd;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.sidebar p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 0.95rem;
}

.nav-list {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-list a {
  font-weight: 500;
  color: var(--ink);
}

.nav-list a:hover {
  color: var(--accent-dark);
}

.sidebar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 0.95rem;
  margin-top: 10px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 30px 18px 90px;
}

.section {
  padding: 32px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(20, 14, 10, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.soft {
  background: var(--sand);
  box-shadow: none;
}

.section.dark {
  background: var(--moss);
  color: #f7f3ee;
}

.section.dark a {
  color: #f7f3ee;
}

.section-layered {
  background: linear-gradient(120deg, var(--clay), #f2e7da);
  position: relative;
  overflow: hidden;
}

.section-layered::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.section-title {
  font-size: 1.8rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-image {
  border-radius: 22px;
  overflow: hidden;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.pill-list li {
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid #e2d7cb;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step-card {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border-left: 4px solid var(--accent);
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery figure {
  background: #fff;
  padding: 12px;
  border-radius: 20px;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid #ece2d8;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #eadfd4;
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6ccc2;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 10;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 24px 18px 60px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 14px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 86px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 14px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--ink);
  color: #fff;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e7dccf;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.inline-image {
  border-radius: 18px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    border-bottom: none;
    border-right: 1px solid #ded6cd;
    min-height: 100vh;
  }

  .content {
    padding: 46px 50px 90px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .image-row {
    flex-direction: row;
  }

  .gallery {
    flex-direction: row;
  }

  .gallery figure {
    flex: 1;
  }

  .service-cards {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .info-card {
    flex: 1;
  }
}
