* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1b1a;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

[hidden] {
    display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 0;
  gap: 32px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: lowercase;
}

.brand-tagline {
  font-size: 0.95rem;
  max-width: 240px;
  color: #5b5550;
}

.nav-stack {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.nav-stack a {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #d1c7bc;
  background: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-stack a:hover {
  background: #efe8e1;
  transform: translateY(-2px);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #ffffff;
}

.section.deep {
  background: #1f2321;
  color: #f4f1ec;
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.split-asym {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-asym.reverse {
  flex-direction: column-reverse;
}

.split-asym .text-block {
  flex: 1;
}

.split-asym .media-block {
  flex: 1;
  align-self: flex-start;
}

.floating-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.floating-card.deep {
  background: #2a2f2b;
  color: #f4f1ec;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-button {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #1f2321;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cta-button.light {
  background: #efe8e1;
  color: #1c1b1a;
  border: 1px solid #d1c7bc;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #7b4b2a;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: #efe8e1;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.quote-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-card {
  background: #fff;
  padding: 20px 22px;
  border-left: 4px solid #7b4b2a;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e3d9cd;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #7b4b2a;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e3d9cd;
}

.form-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-step.hidden {
  display: none;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc3b7;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  background: #1c1b1a;
  color: #f4f1ec;
  padding: 32px 6vw;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #7b4b2a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 40;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #d1c7bc;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #1f2321;
  color: #fff;
}

.cookie-reject {
  background: #efe8e1;
  color: #1c1b1a;
  border: 1px solid #d1c7bc;
}

.legal-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 56px 6vw;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e3d9cd;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .split-asym,
  .split-asym.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split-asym.reverse {
    flex-direction: row-reverse;
  }

  .quote-row {
    flex-direction: row;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .form-shell {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-step {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
