* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1d1e20;
  background: #f8f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: #f4f1ec;
  border-bottom: 1px solid #e2ded8;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding: 4px 0;
}

.ad-label {
  font-size: 0.85rem;
  color: #5c5f66;
  max-width: 200px;
  text-align: right;
}

.section {
  padding: 70px 6%;
}

.section.alt {
  background: #f0ede7;
}

.section.bg-photo {
  background-image: url("https://images.unsplash.com/photo-1504196606672-aef5c9cefc92?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #f5f3ef;
}

.section.bg-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 26, 28, 0.6);
}

.section.bg-photo .content,
.section.bg-photo .visual {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 360px;
  min-width: 280px;
}

.split .visual {
  flex: 1 1 360px;
  min-width: 280px;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  color: #3f4248;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  background: #1d1e20;
  color: #fff;
}

.btn.secondary {
  background: transparent;
  border-color: #1d1e20;
  color: #1d1e20;
}

.btn.accent {
  background: #3c5c73;
}

.link-inline {
  text-decoration: underline;
  color: #3c5c73;
}

.image-wrap {
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  background-color: #d7d2c9;
  box-shadow: 0 18px 40px rgba(27, 29, 32, 0.12);
}

.image-wrap.tall {
  min-height: 420px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ebe5dd;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.quote {
  padding: 16px 18px;
  background: #fff;
  border-left: 3px solid #3c5c73;
  font-style: italic;
  margin-top: 18px;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e5e0d9;
  display: flex;
  gap: 16px;
}

.service-card .card-media {
  flex: 0 0 140px;
  border-radius: 12px;
  overflow: hidden;
  background: #dcd6ce;
}

.service-card .card-content {
  flex: 1;
}

.price-tag {
  font-weight: 700;
  color: #3c5c73;
  margin-top: 6px;
}

.form-panel {
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid #e5e0d9;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfc9c1;
  font-size: 1rem;
}

.form-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.form-grid .field {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  background: #1d1e20;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.footer {
  padding: 40px 6% 60px;
  background: #1f2023;
  color: #f5f3ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  font-size: 0.95rem;
}

.footer small {
  color: #c8c4be;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: none;
  gap: 18px;
  border: 1px solid #e3ded6;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-title {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

.legal-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e7e1d9;
}

.notice {
  background: #f3efe8;
  border-radius: 16px;
  padding: 16px;
  margin-top: 16px;
}

.bg-graphite {
  background-color: #c5c0b8;
}

.bg-slate {
  background-color: #cfd6dc;
}

.bg-sand {
  background-color: #dad2c6;
}

.bg-mist {
  background-color: #d9dfe4;
}
