* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b2024;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 24px 0 12px;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b5f64;
  max-width: 220px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 56px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.media {
  flex: 1 1 0;
  background-color: #dfe6ee;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: #7c5f3f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1b2024;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #32383d;
}

.btn.secondary {
  background: #e5d6c2;
  color: #1b2024;
}

.btn.secondary:hover {
  background: #d6c4ac;
}

.inline-link {
  text-decoration: underline;
}

.section-muted {
  background: #f0ede7;
}

.section-dark {
  background: #1b2024;
  color: #f7f6f2;
}

.section-accent {
  background: #e7f0f2;
}

.section-photo {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.overlay {
  background: rgba(27, 32, 36, 0.6);
  padding: 48px 0;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  align-items: center;
}

.card .media {
  min-height: 140px;
  flex: 0 0 180px;
}

.card .panel {
  gap: 8px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.form-shell {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9cdd2;
  font-size: 1rem;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer {
  margin-top: auto;
  padding: 32px 0 48px;
  background: #111418;
  color: #f7f6f2;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #e5d6c2;
  color: #1b2024;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.note {
  font-size: 0.92rem;
  color: #5b5f64;
}

@media (max-width: 900px) {
  .split,
  .split.reverse,
  .card {
    flex-direction: column;
  }

  .card .media {
    width: 100%;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
