* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1c1b18;
  background-color: #f6f2ec;
  line-height: 1.6;
}

a {
  color: #1c1b18;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-note {
  background-color: #2f2b27;
  color: #f6f2ec;
  padding: 10px 24px;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background-color: #f6f2ec;
  border-bottom: 1px solid #ddd4c8;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 13px;
  color: #5c554f;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 999px;
  background-color: #e9e1d6;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 64px 24px 40px;
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-content {
  flex: 1 1 320px;
  padding: 24px;
  background-color: #fdfbf8;
  border: 1px solid #ddd4c8;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

.hero-visual {
  flex: 1 1 380px;
  min-height: 340px;
  background-color: #d6cbbd;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.hero-visual::after {
  content: "";
  position: absolute;
  bottom: -24px;
  right: 16px;
  width: 120px;
  height: 120px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.75);
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background-color: #1c1b18;
  color: #f6f2ec;
  font-size: 14px;
  cursor: pointer;
}

.btn-light {
  background-color: #e9e1d6;
  color: #1c1b18;
}

.section {
  padding: 64px 24px;
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.section-card {
  flex: 1 1 300px;
  padding: 28px;
  background-color: #fdfbf8;
  border: 1px solid #ddd4c8;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
}

.image-frame {
  flex: 1 1 320px;
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d6cbbd;
}

.offset-block {
  margin-left: auto;
  max-width: 760px;
}

.accent-band {
  background-color: #efe6db;
  position: relative;
}

.accent-band::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 12%;
  width: 140px;
  height: 140px;
  background-color: #cdbfb2;
  border-radius: 28px;
  z-index: 0;
}

.accent-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ddd4c8;
  background-color: #fdfbf8;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.highlight {
  background-color: #1c1b18;
  color: #f6f2ec;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 18px;
  background-color: #ffffff;
  border: 1px solid #ddd4c8;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfc7bb;
  font-size: 14px;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #1c1b18;
  color: #f6f2ec;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 8;
}

.sticky-cta button {
  background-color: #f6f2ec;
  color: #1c1b18;
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  padding: 32px 24px;
  background-color: #2f2b27;
  color: #f6f2ec;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #f6f2ec;
}

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 320px;
  background-color: #ffffff;
  border: 1px solid #ddd4c8;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  z-index: 9;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 48px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-hero .image-frame {
  min-height: 220px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 24px 60px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 220px;
  background-color: #fdfbf8;
  border: 1px solid #ddd4c8;
  padding: 20px;
  border-radius: 16px;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #e7ddcf;
  padding: 60px 24px;
  color: #1c1b18;
}

.background-panel .section-card {
  background-color: rgba(253, 251, 248, 0.92);
}

.policy-content {
  max-width: 820px;
}

@media (max-width: 860px) {
  .hero-content {
    margin-top: 0;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
