*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f1a19;
  background: #f8f3f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
  align-items: stretch;
}

.sidebar {
  width: 250px;
  padding: 32px 24px;
  background: #f1e6e2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 500;
}

.nav a {
  padding: 6px 0;
}

.nav a:hover {
  color: #9a4b45;
}

.sidebar-note {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  font-size: 14px;
  color: #534240;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

header,
section {
  padding: 64px 8vw;
}

section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #fff4f1;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-visual {
  flex: 1;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 18px;
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  padding: 14px 22px;
  border-radius: 999px;
  background: #1f1a19;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.button.alt {
  background: #fff;
  color: #1f1a19;
  border: 1px solid #1f1a19;
}

.button:hover {
  transform: translateY(-2px);
}

.split {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.split .panel {
  flex: 1;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight {
  background: #1f1a19;
  color: #fff;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
}

.service-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.service-info {
  flex: 1;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #9a4b45;
}

.badge {
  display: inline-flex;
  background: #f1d5cf;
  color: #6a3a35;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.process {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.quote {
  flex: 1;
  min-width: 220px;
  background: #fef8f6;
  border-radius: 18px;
  padding: 22px;
  font-style: italic;
}

.gallery {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.gallery-item {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
}

.form-wrapper {
  background: #fff;
  padding: 32px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6c9c5;
  font-size: 16px;
}

.sticky-cta {
  align-self: flex-start;
  position: sticky;
  top: 18px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}

.banner {
  background: linear-gradient(130deg, #f1d5cf 0%, #fff 100%);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer {
  background: #1f1a19;
  color: #f8f3f0;
  padding: 40px 8vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #1f1a19;
  color: #fff;
}

.cookie-actions .reject {
  background: #f1e6e2;
  color: #1f1a19;
}

.page-hero {
  background: #fff4f1;
}

.page-hero h1 {
  margin: 0 0 12px;
}

.contact-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.policy {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero,
  .split {
    flex-direction: column;
  }
}
