* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: #fff7ef;
}

.brand {
  font-size: 22px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 4px 8px;
  border: 1px solid #c7b9a7;
  border-radius: 999px;
  background: #fff0e0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 6% 40px;
  background: #f0efe9;
}

.hero-wrap {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 38px;
  line-height: 1.2;
}

.hero-card {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(31, 35, 40, 0.08);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f2328;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.btn.secondary {
  background: #f4d7b5;
  color: #1f2328;
}

.section {
  padding: 48px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.light {
  background: #fff;
}

.section.accent {
  background: #f9efe4;
}

.section-title {
  font-size: 28px;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 280px;
}

.story-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(31, 35, 40, 0.05);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
}

.service-card img {
  height: 180px;
}

.service-body {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: #7b3f00;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff7ef;
  border: 1px solid #e5d6c6;
  font-size: 13px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.08);
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 220px;
}

.field input,
.field select,
.field textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8c9b7;
  font-size: 14px;
}

.footer {
  margin-top: auto;
  padding: 32px 6%;
  background: #1f2328;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #f4d7b5;
  color: #1f2328;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(31, 35, 40, 0.2);
  font-weight: 600;
}

.image-frame {
  background: #e7dccd;
  border-radius: 18px;
  overflow: hidden;
}

.banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 340px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(31, 35, 40, 0.2);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 20;
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-hero {
  padding: 48px 6%;
  background: #f0efe9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-content {
  padding: 36px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note {
  background: #fff7ef;
  border-radius: 12px;
  padding: 16px;
}

@media (max-width: 860px) {
  .hero-title {
    font-size: 32px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
