* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f1f24;
  background-color: #f7f4ef;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  padding: 24px 6vw 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  background: #1f1f24;
  color: #f7f4ef;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  border: 1px solid #1f1f24;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  background: #1f1f24;
  color: #f7f4ef;
  transition: transform 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: #1f1f24;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

.image-frame {
  background-color: #e6dfd5;
  padding: 12px;
  border-radius: 24px;
  max-width: 520px;
  transform: translateX(6%);
}

.image-frame img {
  border-radius: 18px;
  height: 360px;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: #efe9df;
}

.section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(31, 31, 36, 0.08);
  transform: translateX(-4%);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(31, 31, 36, 0.06);
}

.service-card img {
  height: 180px;
  border-radius: 14px;
}

.price {
  font-weight: 700;
}

.floating-panel {
  background: #1f1f24;
  color: #f7f4ef;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateX(6%);
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 28px rgba(31, 31, 36, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4cec5;
  font-size: 1rem;
  font-family: inherit;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
}

.inline-link {
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 60px;
  background: #1f1f24;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.legal {
  font-size: 0.85rem;
  opacity: 0.85;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #c45b3c;
  color: #f7f4ef;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 36px rgba(31, 31, 36, 0.2);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 1px solid #1f1f24;
  padding: 8px 14px;
  border-radius: 999px;
  background: #1f1f24;
  color: #f7f4ef;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1f1f24;
}

.page-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.content-block {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon {
  width: 42px;
  height: 42px;
  background: #c45b3c;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

@media (min-width: 900px) {
  .hero-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .contact-grid {
    flex-direction: row;
  }
}
