* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1d1b;
  background: #f7f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 8%;
  background: #efe7de;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 18px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid #a08c7f;
  border-radius: 999px;
  background: #fff7f0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 8% 80px;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-color: #b49d8b;
  background-size: cover;
  background-position: center;
  color: #fdfbf9;
  position: relative;
  min-height: 70vh;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 29, 27, 0.55);
}

.hero-content {
  position: relative;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f1d1b;
  background: #fef4e8;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fef4e8;
  color: #fef4e8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  background: #b66a4a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #fff7f0;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #ffffff;
  border: 1px solid #e2d7cd;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  background: #eadfd5;
  border-radius: 18px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  background: #eadfd5;
}

.inline-image {
  width: 100%;
  max-width: 520px;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  background: #eadfd5;
}

.bg-panel {
  padding: 50px;
  border-radius: 24px;
  color: #fff;
  background-color: #8e7a6a;
  background-size: cover;
  background-position: center;
}

.bg-panel.one {
  background-image: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?w=1400&q=80");
}

.bg-panel.two {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80");
}

.testimonial {
  background: #f1e5db;
  padding: 18px;
  border-radius: 16px;
  font-style: italic;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid #d9c9be;
}

.service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-button {
  padding: 12px 16px;
  border: 1px solid #a08c7f;
  border-radius: 12px;
  background: #fff;
  font-weight: 600;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #e2d7cd;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea,
button {
  font: inherit;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbb8aa;
  background: #fff;
}

button {
  cursor: pointer;
  background: #1f1d1b;
  color: #fff;
  font-weight: 600;
}

.note {
  font-size: 14px;
  color: #5a5048;
}

.footer {
  background: #1f1d1b;
  color: #f8f2ec;
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff7f0;
  border-top: 1px solid #d7c6b9;
  padding: 16px 8%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.is-hidden {
  display: none;
}

.simple-hero {
  padding: 80px 8% 40px;
  background: #f3e8df;
}

.simple-hero h1 {
  margin: 0 0 12px;
  font-size: 34px;
}

.content {
  padding: 40px 8% 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
