* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f8f6f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #2b5c5a;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #efe7de;
  padding: 14px 0;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: #6a4e3c;
  background: #f9efe6;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 56px 0 24px;
  position: relative;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(30, 30, 30, 0.08);
}

.hero-background {
  background-image: url("https://images.unsplash.com/photo-1517841905240-472988babdf9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  min-height: 320px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  background-color: #d6cfc6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #2b5c5a;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: #f2c8a7;
  color: #38261b;
}

.section {
  padding: 0 0 24px;
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(30, 30, 30, 0.06);
}

.panel-soft {
  background: #f0efe9;
}

.story-background {
  background-image: url("https://images.unsplash.com/photo-1517423440428-a5a00ad493e8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d7cdc4;
  border-radius: 24px;
  padding: 28px;
  color: #ffffff;
}

.image-card {
  flex: 1 1 300px;
  border-radius: 18px;
  overflow: hidden;
  background: #e1d6cc;
  min-height: 260px;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  flex: 1 1 200px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #efe7de;
}

.testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border-left: 4px solid #f2c8a7;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 32px rgba(30, 30, 30, 0.06);
}

.service-image {
  border-radius: 14px;
  overflow: hidden;
  background: #e2d9cf;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #2b5c5a;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 22px 45px rgba(30, 30, 30, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd2c8;
  font-size: 15px;
  background: #fbfaf9;
}

.form-status {
  font-size: 14px;
  color: #8a3f32;
}

.cta-band {
  background: #2b5c5a;
  color: #ffffff;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-band a.btn {
  background: #ffffff;
  color: #2b5c5a;
}

.footer {
  margin-top: 40px;
  padding: 32px 0 64px;
  background: #efe7de;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #f2c8a7;
  padding: 10px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 36px rgba(20, 20, 20, 0.2);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.page-hero {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(30, 30, 30, 0.08);
}

.inline-image {
  border-radius: 18px;
  overflow: hidden;
  background: #e1d6cc;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-box {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(30, 30, 30, 0.06);
}

.notes {
  font-size: 13px;
  color: #5f5a55;
}
