* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 5%;
  background: #f7f4ef;
  border-bottom: 1px solid #e3ded5;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-ad-label {
  font-size: 0.85rem;
  color: #5a4b3e;
  background: #efe8dc;
  padding: 6px 12px;
  border-radius: 20px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 5% 80px;
  background: #f2ece2;
  position: relative;
}

.hero-visual {
  min-height: 320px;
  background-color: #d5c7b3;
  background-image: url("https://images.unsplash.com/photo-1464146072230-91cabc968266?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.hero-copy {
  max-width: 620px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 30px;
  background: #1e1e1e;
  color: #f7f4ef;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.button:focus,
.button:active {
  transform: scale(0.98);
}

.button.secondary {
  background: #c26732;
}

.section {
  padding: 70px 5%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.dark {
  background: #1f1b17;
  color: #f7f4ef;
}

.section.light {
  background: #fffaf3;
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.asym-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
}

.panel.dark {
  background: #2f2620;
  color: #f7f4ef;
}

.panel-image {
  flex: 1 1 320px;
  background: #d5c7b3;
  border-radius: 22px;
  overflow: hidden;
}

.panel-image img {
  width: 100%;
  height: 100%;
}

.service-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-image {
  background: #d5c7b3;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #c26732;
}

.story-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.story-block {
  flex: 1 1 280px;
  background: #efe8dc;
  padding: 22px;
  border-radius: 18px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #fff3e1;
  border-radius: 20px;
  padding: 24px;
  flex: 0 0 260px;
  align-self: flex-start;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8bfb1;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  background: #1f1b17;
  color: #f7f4ef;
  padding: 40px 5%;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d7cbbd;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f1b17;
  color: #f7f4ef;
  padding: 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 280px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.split-section {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack img {
  border-radius: 16px;
}

.page-title {
  font-size: 2.4rem;
  margin: 0;
}

.contact-card {
  background: #fff3e1;
  padding: 22px;
  border-radius: 18px;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
