*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1e1f24;
  background: #f7f4f0;
  line-height: 1.6;
}

a {
  color: #1b4d89;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #f1ece6;
  border-bottom: 1px solid #dfd6cc;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4d3b;
  max-width: 220px;
  text-align: right;
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #232125;
  color: #f9f7f4;
}

.section.dark a {
  color: #f4c95d;
}

.section.bg-road {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.bg-road::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 22, 27, 0.65);
}

.section.bg-road > * {
  position: relative;
}

.section.bg-quiet {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.bg-quiet::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(35, 30, 24, 0.62);
}

.section.bg-quiet > * {
  position: relative;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 24px;
}

.section-lead {
  font-size: 1.1rem;
  max-width: 680px;
}

.asym-row {
  display: flex;
  gap: 40px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-content {
  flex: 1;
}

.asym-visual {
  flex: 1;
}

.image-frame {
  background-color: #d8d0c6;
  padding: 16px;
  border-radius: 18px;
}

.image-frame.secondary {
  background-color: #bfc7c7;
}

.img-cover {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.offset-panel {
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(27, 21, 10, 0.08);
  position: relative;
  top: 18px;
}

.split-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split-list .list-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e6ded5;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e3dbd2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-tag {
  font-weight: 700;
  color: #2b5b2f;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.button {
  border: none;
  background: #1b4d89;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.secondary {
  background: #f4c95d;
  color: #2b1f0e;
}

.button.ghost {
  background: transparent;
  color: #1b4d89;
  border: 1px solid #1b4d89;
}

.inline-cta {
  font-weight: 600;
}

.story-panel {
  background: #efe7de;
  padding: 24px;
  border-radius: 16px;
  border-left: 5px solid #c08c4a;
}

.testimonial {
  margin: 16px 0;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e6ded5;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #e7ded4;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-grid label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1c6bb;
  font-size: 1rem;
}

.form-field {
  flex: 1 1 220px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.service-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f6f1ec;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e1d7cd;
}

.toggle-panel {
  display: none;
  margin-top: 16px;
  padding: 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e6ded5;
}

.footer {
  padding: 40px 6vw;
  background: #1d1b1f;
  color: #f7f4f0;
  margin-top: auto;
}

.footer a {
  color: #f4c95d;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-box {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d6cfc7;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1b4d89;
  padding: 12px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  z-index: 20;
}

.sticky-cta button {
  background: #f4c95d;
  color: #2b1f0e;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 6vw;
  background: #ffffff;
  border-top: 1px solid #e7ded4;
  display: none;
  z-index: 30;
}

.cookie-content {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.simple-list {
  padding-left: 18px;
}

.meta-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.meta-label {
  font-weight: 600;
  min-width: 180px;
}

@media (max-width: 960px) {
  .asym-row,
  .asym-row.reverse {
    flex-direction: column;
  }

  .ad-label {
    max-width: none;
    text-align: left;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
