* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f8f7f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 5vw 10px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: #5e4f44;
  background: #efe8df;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 70px 8vw 60px;
  color: #f7f4f0;
  background: #3c2d2a;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16, 9, 8, 0.78), rgba(16, 9, 8, 0.25));
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.hero-bg.index {
  background-image: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1400&q=80");
  background-color: #3c2d2a;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  background: #f5d2c0;
  color: #3c2d2a;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #f7f4f0;
  border-color: #f5d2c0;
}

.btn:focus,
.btn:hover {
  background: #f0bfa7;
}

.section {
  padding: 56px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #ffffff;
}

.section.soft {
  background: #efe8df;
}

.image-panel {
  position: relative;
  color: #f7f4f0;
  background-color: #3c2d2a;
  overflow: hidden;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1522337660859-02fbefca4702?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.image-panel > * {
  position: relative;
  z-index: 1;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 680px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.story-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(22, 16, 13, 0.08);
}

.story-card img {
  border-radius: 16px;
}

.image-frame {
  background: #e9d4c7;
  padding: 12px;
  border-radius: 18px;
}

.image-frame img {
  border-radius: 14px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f5d2c0;
  font-size: 0.9rem;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 180px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  border-left: 4px solid #f0bfa7;
}

.image-card {
  background: #f5d2c0;
  padding: 14px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-card img {
  border-radius: 14px;
  background: #e5c3b3;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.service-card.is-selected {
  border-color: #c78f77;
}

.service-card img {
  border-radius: 14px;
  background: #f2d6c6;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3c2d2a;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(28, 18, 15, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc6bd;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: #8f5b45;
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  padding: 36px 8vw 80px;
  background: #1f1513;
  color: #f7f4f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d9c9bf;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #3c2d2a;
  color: #f7f4f0;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
  box-shadow: 0 10px 24px rgba(24, 17, 14, 0.35);
}

.sticky-cta .btn {
  background: #f5d2c0;
  color: #3c2d2a;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.simple-hero {
  padding: 52px 8vw 36px;
  background: #efe8df;
}

.simple-hero h1 {
  margin: 0 0 10px;
}

.content-block {
  max-width: 820px;
}
