* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1f2328;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 28px 6vw 12px;
}

.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand-tagline {
  font-size: 13px;
  color: #5a6068;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  color: #6b4e3d;
  background-color: #f0e2d8;
  padding: 6px 10px;
  border-radius: 12px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 26px 6vw 48px;
  position: relative;
}

.hero-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  padding: 28px;
  background-color: #efe9e4;
  border-radius: 24px;
  transform: translateX(18px);
}

.hero-text h1 {
  font-size: 38px;
  margin: 0 0 16px;
}

.hero-text p {
  margin: 0 0 20px;
}

.hero-media {
  flex: 1 1 320px;
  border-radius: 30px;
  overflow: hidden;
  background-color: #d9d0c7;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 18px;
  background-color: #1f2328;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  gap: 8px;
}

.btn-outline {
  background-color: transparent;
  color: #1f2328;
  border: 2px solid #1f2328;
}

.btn-soft {
  background-color: #e3d6cb;
  color: #1f2328;
}

.section {
  padding: 48px 6vw;
  position: relative;
}

.section-title {
  font-size: 28px;
  margin: 0 0 18px;
}

.section-lead {
  max-width: 680px;
  margin: 0 0 20px;
  color: #4a5057;
}

.offset-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(31, 35, 40, 0.08);
}

.offset-card.shift-up {
  transform: translateY(-18px);
}

.offset-card.shift-down {
  transform: translateY(16px);
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background-color: #d6cdc2;
  margin-bottom: 16px;
}

.image-frame img {
  width: 100%;
  height: 220px;
}

.services-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background-color: #ffffff;
}

.service-row .price {
  font-weight: 700;
  font-size: 18px;
  color: #1f2328;
}

.service-image {
  flex: 0 0 180px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #d8cfc6;
}

.service-image img {
  width: 180px;
  height: 140px;
}

.service-content {
  flex: 1 1 280px;
}

.service-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  background-color: #e9e0d7;
  border-radius: 28px;
  padding: 28px;
}

.split-panel {
  flex: 1 1 280px;
}

.split-panel h3 {
  margin-top: 0;
}

.quote-card {
  background-color: #1f2328;
  color: #ffffff;
  padding: 20px;
  border-radius: 20px;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(31, 35, 40, 0.08);
}

.form-panel label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c4be;
  margin-bottom: 14px;
  font-size: 14px;
  background-color: #fbfaf9;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.form-aside {
  flex: 1 1 240px;
  padding: 12px 18px;
}

.form-aside ul {
  padding-left: 18px;
  margin: 0;
}

.cta-inline {
  color: #6b4e3d;
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  padding: 36px 6vw 40px;
  background-color: #1f2328;
  color: #ffffff;
}

.footer a {
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
}

.footer small {
  color: #d7d3cc;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 360px;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(31, 35, 40, 0.18);
  display: none;
  z-index: 20;
}

.banner p {
  margin: 0 0 12px;
  font-size: 13px;
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 12px 18px;
  border-radius: 24px;
  background-color: #6b4e3d;
  color: #ffffff;
  border: none;
  cursor: pointer;
  z-index: 15;
}

.stack-note {
  font-size: 13px;
  color: #5a6068;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.column {
  flex: 1 1 280px;
}

.contact-card {
  background-color: #ffffff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 12px 22px rgba(31, 35, 40, 0.08);
}

.list-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.note-bar {
  padding: 16px 20px;
  border-radius: 18px;
  background-color: #f2e8de;
}

.image-tile {
  background-color: #d6cdc2;
  border-radius: 18px;
  overflow: hidden;
}

.image-tile img {
  width: 100%;
  height: 220px;
}

@media (max-width: 900px) {
  .hero-text {
    transform: none;
  }

  .offset-card.shift-up,
  .offset-card.shift-down {
    transform: none;
  }

  .sticky-cta {
    left: auto;
    right: 18px;
  }
}
