* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a34;
  background: #f5f2ee;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  display: block;
  object-fit: cover;
  background-color: #d9d2cb;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #f5f2ee;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.8rem;
  color: #6b7076;
}

.nav-toggle {
  background: none;
  border: 1px solid #1f2a34;
  padding: 8px 12px;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-collapsed {
  display: none;
}

.hero {
  padding: 40px 6vw 20px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.section {
  padding: 40px 6vw;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #1f2a34;
  color: #f3f5f7;
}

.section h2,
.section h3,
.hero h1 {
  margin-top: 0;
}

.tagline {
  font-size: 1.1rem;
  color: #4d5963;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  padding: 12px 18px;
  border: none;
  background: #1f2a34;
  color: #fff;
  cursor: pointer;
}

.btn.secondary {
  background: #d3c7bb;
  color: #1f2a34;
}

.inline-link {
  text-decoration: underline;
  cursor: pointer;
}

.media-frame {
  background: #d9d2cb;
  border-radius: 18px;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid #e1d7cf;
  background: #faf8f5;
  border-radius: 16px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 600;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e1d7cf;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: #4d5963;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc6be;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  background: #11181f;
  color: #d9dde2;
  padding: 28px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #d9dde2;
  text-decoration: none;
}

.legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #3d5160;
  color: #fff;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #e1d7cf;
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e1d7cf;
  background: #ffffff;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e7ded6;
  font-size: 0.85rem;
  color: #1f2a34;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial {
  background: #f1ece6;
  padding: 14px 18px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
  }

  nav.active {
    display: flex;
  }
}
