* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1c1c1c;
  background-color: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.75rem;
  background-color: #efe9e2;
  width: 280px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.9rem;
  line-height: 1.3;
  color: #6b4f3d;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.cta-primary {
  background-color: #1c1c1c;
  color: #f6f4f1;
}

.cta-secondary {
  background-color: #f6f4f1;
  color: #1c1c1c;
  border-color: #1c1c1c;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2.5rem 3rem 4rem;
  flex: 1;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero {
  display: flex;
  gap: 2rem;
  background-color: #dcd0c4;
  padding: 2rem;
  border-radius: 28px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.hero-image {
  flex: 1;
  background-color: #c9b8a7;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.quote-band {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #1c1c1c;
  color: #f6f4f1;
  padding: 2rem;
  border-radius: 20px;
}

.quote-band p {
  margin: 0;
  font-size: 1.1rem;
}

.split-row {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.split-text {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split-image {
  flex: 1;
  background-color: #e2dbd1;
  border-radius: 20px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  flex: 1 1 240px;
  min-width: 240px;
}

.service-media {
  background-color: #ede6df;
  border-radius: 16px;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 160px;
}

.service-price {
  font-weight: 700;
  color: #6b4f3d;
}

.story-block {
  display: flex;
  gap: 2rem;
  align-items: center;
  background-color: #efe9e2;
  padding: 2rem;
  border-radius: 24px;
}

.story-image {
  flex: 1;
  background-color: #d7c8b8;
  border-radius: 20px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 240px;
}

.story-text {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 1.25rem;
}

.sticky-cta {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
  background-color: #efe9e2;
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-panel {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #cfc7bc;
  font-family: inherit;
  font-size: 1rem;
  background-color: #fdfbf8;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
  color: #4a3a30;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-actions button {
  flex: 1;
}

.is-hidden {
  display: none;
}

.inline-image {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 20px;
  background-color: #e8dfd6;
}

.inline-image figure {
  margin: 0;
  flex: 1;
  background-color: #d5c7b7;
  border-radius: 18px;
  overflow: hidden;
}

.inline-image img {
  width: 100%;
  height: 200px;
}

.inline-text {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-title {
  margin: 0 0 1rem;
  font-size: 2rem;
}

.legal-section {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
}

.hero-alt {
  background-color: #1c1c1c;
  color: #f6f4f1;
  padding: 2rem;
  border-radius: 22px;
}

.hero-alt p {
  margin: 0;
}

.bg-silence {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3b3b3b;
  background-blend-mode: multiply;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 2rem;
  }

  .hero,
  .split-row,
  .story-block,
  .inline-image {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
