* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f24;
  background: #f6f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #d9d5cc;
  background: #f6f5f2;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  padding: 48px 5vw 36px;
  background: linear-gradient(120deg, #f7efe5 0%, #eef2f7 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 260px;
  height: 260px;
  background: #f0caa7;
  opacity: 0.35;
  border-radius: 50%;
}

.section {
  padding: 42px 5vw;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #1f232b;
  color: #f7f7f7;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content h2 {
  margin-top: 0;
  font-size: 1.8rem;
}

.split-content p {
  margin-bottom: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #1f1f24;
  background: #1f1f24;
  color: #ffffff;
}

.btn.outline {
  background: transparent;
  color: inherit;
}

.btn.light {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e6dfd4;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(31, 31, 36, 0.08);
  gap: 12px;
}

.service-card img {
  border-radius: 14px;
  height: 140px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.quote {
  padding: 24px;
  border-left: 4px solid #f0caa7;
  background: #f9f3ea;
  border-radius: 16px;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(31, 31, 36, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc9bf;
  font-family: inherit;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(31, 31, 36, 0.2);
}

.footer {
  padding: 32px 5vw;
  background: #1f1f24;
  color: #f6f5f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(31, 31, 36, 0.2);
  display: none;
  width: min(320px, 90vw);
  z-index: 20;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.sidebar-note {
  border: 1px dashed #cfc9bf;
  padding: 14px;
  border-radius: 12px;
  background: #fbfaf7;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(31, 31, 36, 0.18);
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split > * {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    width: calc(50% - 8px);
  }
}
